CfnSnapshotScheduleMixinProps
- class aws_cdk.cfn_property_mixins.aws_redshift.CfnSnapshotScheduleMixinProps(*, schedule_definitions=None, schedule_description=None, schedule_identifier=None, tags=None)
Bases:
objectProperties for CfnSnapshotSchedulePropsMixin.
- Parameters:
schedule_definitions (
Optional[Sequence[str]]) – The definition of the snapshot schedule. The definition is made up of schedule expressions, for example “cron(30 12 *)” or “rate(12 hours)”.schedule_description (
Optional[str]) – The description of the snapshot schedule.schedule_identifier (
Optional[str]) – A unique identifier for the snapshot schedule. Only alphanumeric characters are allowed.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An optional set of tags for the snapshot schedule.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_redshift as redshift cfn_snapshot_schedule_mixin_props = redshift.CfnSnapshotScheduleMixinProps( schedule_definitions=["scheduleDefinitions"], schedule_description="scheduleDescription", schedule_identifier="scheduleIdentifier", tags=[CfnTag( key="key", value="value" )] )
Attributes
- schedule_definitions
The definition of the snapshot schedule.
The definition is made up of schedule expressions, for example “cron(30 12 *)” or “rate(12 hours)”.
- schedule_description
The description of the snapshot schedule.
- schedule_identifier
A unique identifier for the snapshot schedule.
Only alphanumeric characters are allowed.
- tags
An optional set of tags for the snapshot schedule.