CfnReplicationSetMixinProps
- class aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnReplicationSetMixinProps(*, deletion_protected=None, regions=None, tags=None)
Bases:
objectProperties for CfnReplicationSetPropsMixin.
- Parameters:
deletion_protected (
Union[bool,IResolvable,None]) – Determines if the replication set deletion protection is enabled or not. If deletion protection is enabled, you can’t delete the last Region in the replication set.regions (
Union[IResolvable,Sequence[Union[IResolvable,ReplicationRegionProperty,Dict[str,Any]]],None]) – Specifies the Regions of the replication set.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags to add to the replication set.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ssmincidents import mixins as ssmincidents_mixins cfn_replication_set_mixin_props = ssmincidents_mixins.CfnReplicationSetMixinProps( deletion_protected=False, regions=[ssmincidents_mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty( region_configuration=ssmincidents_mixins.CfnReplicationSetPropsMixin.RegionConfigurationProperty( sse_kms_key_id="sseKmsKeyId" ), region_name="regionName" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- deletion_protected
Determines if the replication set deletion protection is enabled or not.
If deletion protection is enabled, you can’t delete the last Region in the replication set.
- regions
Specifies the Regions of the replication set.
- tags
A list of tags to add to the replication set.