CfnGlobalClusterPropsMixin
- class aws_cdk.mixins_preview.aws_rds.mixins.CfnGlobalClusterPropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::RDS::GlobalClusterresource creates or updates an Amazon Aurora global database spread across multiple AWS Regions.The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem.
You can create a global database that is initially empty, and then add a primary cluster and a secondary cluster to it.
For information about Aurora global databases, see Working with Amazon Aurora Global Databases in the Amazon Aurora User Guide .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html
- CloudformationResource:
AWS::RDS::GlobalCluster
- Mixin:
true
- 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.mixins_preview import mixins from aws_cdk.mixins_preview.aws_rds import mixins as rds_mixins cfn_global_cluster_props_mixin = rds_mixins.CfnGlobalClusterPropsMixin(rds_mixins.CfnGlobalClusterMixinProps( deletion_protection=False, engine="engine", engine_lifecycle_support="engineLifecycleSupport", engine_version="engineVersion", global_cluster_identifier="globalClusterIdentifier", source_db_cluster_identifier="sourceDbClusterIdentifier", storage_encrypted=False, tags=[CfnTag( key="key", value="value" )] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::RDS::GlobalCluster.- Parameters:
props (
Union[CfnGlobalClusterMixinProps,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 = ['deletionProtection', 'engine', 'engineLifecycleSupport', 'engineVersion', 'globalClusterIdentifier', 'sourceDbClusterIdentifier', 'storageEncrypted', '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
GlobalEndpointProperty
- class CfnGlobalClusterPropsMixin.GlobalEndpointProperty(*, address=None)
Bases:
objectThe writer endpoint for the new global database cluster.
This endpoint always points to the writer DB instance in the current primary cluster.
- Parameters:
address (
Optional[str]) – The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.- 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_rds import mixins as rds_mixins global_endpoint_property = rds_mixins.CfnGlobalClusterPropsMixin.GlobalEndpointProperty( address="address" )
Attributes
- address
The writer endpoint for the new global database cluster.
This endpoint always points to the writer DB instance in the current primary cluster.