interface CfnSnapshotScheduleProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnSnapshotScheduleProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnSnapshotScheduleProps |
Java | software.amazon.awscdk.services.redshift.CfnSnapshotScheduleProps |
Python | aws_cdk.aws_redshift.CfnSnapshotScheduleProps |
TypeScript | aws-cdk-lib » aws_redshift » CfnSnapshotScheduleProps |
Properties for defining a CfnSnapshotSchedule.
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-lib';
const cfnSnapshotScheduleProps: redshift.CfnSnapshotScheduleProps = {
scheduleDefinitions: ['scheduleDefinitions'],
scheduleIdentifier: 'scheduleIdentifier',
// the properties below are optional
scheduleDescription: 'scheduleDescription',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | string[] | The definition of the snapshot schedule. |
| schedule | string | A unique identifier for the snapshot schedule. |
| schedule | string | The description of the snapshot schedule. |
| tags? | Cfn[] | An optional set of tags for the snapshot schedule. |
scheduleDefinitions
Type:
string[]
The definition of the snapshot schedule.
The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".
scheduleIdentifier
Type:
string
A unique identifier for the snapshot schedule.
Only alphanumeric characters are allowed.
scheduleDescription?
Type:
string
(optional)
The description of the snapshot schedule.
tags?
Type:
Cfn[]
(optional)
An optional set of tags for the snapshot schedule.

.NET
Go
Java
Python
TypeScript