CfnGlobalClusterMixinProps
- class aws_cdk.cfn_property_mixins.aws_neptune.CfnGlobalClusterMixinProps(*, deletion_protection=None, engine=None, engine_version=None, global_cluster_identifier=None, source_db_cluster_identifier=None, storage_encrypted=None, tags=None)
Bases:
objectProperties for CfnGlobalClusterPropsMixin.
- Parameters:
deletion_protection (
Union[bool,IResolvable,None]) – Whether deletion protection is enabled.engine (
Optional[str]) – The name of the database engine.engine_version (
Optional[str]) – The version number of the database engine.global_cluster_identifier (
Optional[str]) – The cluster identifier of the global database cluster.source_db_cluster_identifier (
Optional[str]) – The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database.storage_encrypted (
Union[bool,IResolvable,None]) – Whether the global database cluster is storage encrypted.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- 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_neptune as neptune cfn_global_cluster_mixin_props = neptune.CfnGlobalClusterMixinProps( deletion_protection=False, engine="engine", engine_version="engineVersion", global_cluster_identifier="globalClusterIdentifier", source_db_cluster_identifier="sourceDbClusterIdentifier", storage_encrypted=False, tags=[CfnTag( key="key", value="value" )] )
Attributes
- deletion_protection
Whether deletion protection is enabled.
- engine
The name of the database engine.
- engine_version
The version number of the database engine.
- global_cluster_identifier
The cluster identifier of the global database cluster.
- source_db_cluster_identifier
The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database.
- storage_encrypted
Whether the global database cluster is storage encrypted.
- tags
An array of key-value pairs to apply to this resource.