interface CfnClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DSQL.Mixins.CfnClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdsql/mixins#CfnClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.dsql.mixins.CfnClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_dsql.mixins.CfnClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_dsql » mixins » CfnClusterMixinProps |
Properties for CfnClusterPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dsql_mixins } from '@aws-cdk/mixins-preview/aws-dsql';
const cfnClusterMixinProps: dsql_mixins.CfnClusterMixinProps = {
deletionProtectionEnabled: false,
kmsEncryptionKey: 'kmsEncryptionKey',
multiRegionProperties: {
clusters: ['clusters'],
witnessRegion: 'witnessRegion',
},
policyDocument: 'policyDocument',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | boolean | IResolvable | Whether deletion protection is enabled on this cluster. |
| kms | string | The KMS key that encrypts data on the cluster. |
| multi | IResolvable | Multi | Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings. |
| policy | string | A resource-based policy document in JSON format. |
| tags? | Cfn[] | A map of key and value pairs this cluster is tagged with. |
deletionProtectionEnabled?
Type:
boolean | IResolvable
(optional)
Whether deletion protection is enabled on this cluster.
kmsEncryptionKey?
Type:
string
(optional)
The KMS key that encrypts data on the cluster.
multiRegionProperties?
Type:
IResolvable | Multi
(optional)
Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings.
policyDocument?
Type:
string
(optional)
A resource-based policy document in JSON format.
Length constraints: Minimum length of 1. Maximum length of 20480 characters (approximately 20KB).
tags?
Type:
Cfn[]
(optional)
A map of key and value pairs this cluster is tagged with.

.NET
Go
Java
Python
TypeScript