interface CfnSnapshotScheduleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnSnapshotScheduleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnSnapshotScheduleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnSnapshotScheduleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnSnapshotScheduleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » CfnSnapshotScheduleMixinProps |
Properties for CfnSnapshotSchedulePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const cfnSnapshotScheduleMixinProps: redshift.CfnSnapshotScheduleMixinProps = {
scheduleDefinitions: ['scheduleDefinitions'],
scheduleDescription: 'scheduleDescription',
scheduleIdentifier: 'scheduleIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | string[] | The definition of the snapshot schedule. |
| schedule | string | The description of the snapshot schedule. |
| schedule | string | A unique identifier for the snapshot schedule. |
| tags? | Cfn[] | An optional set of tags for the snapshot schedule. |
scheduleDefinitions?
Type:
string[]
(optional)
The definition of the snapshot schedule.
The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".
scheduleDescription?
Type:
string
(optional)
The description of the snapshot schedule.
scheduleIdentifier?
Type:
string
(optional)
A unique identifier for the snapshot schedule.
Only alphanumeric characters are allowed.
tags?
Type:
Cfn[]
(optional)
An optional set of tags for the snapshot schedule.

.NET
Go
Java
Python
TypeScript