CfnReplicationSetPropsMixin
- class aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnReplicationSetPropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::SSMIncidents::ReplicationSetresource specifies a set of AWS Regions that Incident Manager data is replicated to and the AWS Key Management Service ( AWS key used to encrypt the data.- See:
- CloudformationResource:
AWS::SSMIncidents::ReplicationSet
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_ssmincidents import mixins as ssmincidents_mixins cfn_replication_set_props_mixin = ssmincidents_mixins.CfnReplicationSetPropsMixin(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" )] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::SSMIncidents::ReplicationSet.- Parameters:
props (
Union[CfnReplicationSetMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['deletionProtected', 'regions', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
RegionConfigurationProperty
- class CfnReplicationSetPropsMixin.RegionConfigurationProperty(*, sse_kms_key_id=None)
Bases:
objectThe
RegionConfigurationproperty specifies the Region and AWS Key Management Service key to add to the replication set.- Parameters:
sse_kms_key_id (
Optional[str]) – The AWS Key Management Service key ID to use to encrypt your 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 region_configuration_property = ssmincidents_mixins.CfnReplicationSetPropsMixin.RegionConfigurationProperty( sse_kms_key_id="sseKmsKeyId" )
Attributes
- sse_kms_key_id
The AWS Key Management Service key ID to use to encrypt your replication set.
ReplicationRegionProperty
- class CfnReplicationSetPropsMixin.ReplicationRegionProperty(*, region_configuration=None, region_name=None)
Bases:
objectThe
ReplicationRegionproperty type specifies the Region and AWS Key Management Service key to add to the replication set.- Parameters:
region_configuration (
Union[IResolvable,RegionConfigurationProperty,Dict[str,Any],None]) – Specifies the Region configuration.region_name (
Optional[str]) – Specifies the region name 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 replication_region_property = ssmincidents_mixins.CfnReplicationSetPropsMixin.ReplicationRegionProperty( region_configuration=ssmincidents_mixins.CfnReplicationSetPropsMixin.RegionConfigurationProperty( sse_kms_key_id="sseKmsKeyId" ), region_name="regionName" )
Attributes
- region_configuration
Specifies the Region configuration.
- region_name
Specifies the region name to add to the replication set.