interface SSESpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DAX.Mixins.CfnClusterPropsMixin.SSESpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdax/mixins#CfnClusterPropsMixin_SSESpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dax.mixins.CfnClusterPropsMixin.SSESpecificationProperty |
Python | aws_cdk.mixins_preview.aws_dax.mixins.CfnClusterPropsMixin.SSESpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dax » mixins » CfnClusterPropsMixin » SSESpecificationProperty |
Represents the settings used to enable server-side encryption.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dax_mixins } from '@aws-cdk/mixins-preview/aws-dax';
const sSESpecificationProperty: dax_mixins.CfnClusterPropsMixin.SSESpecificationProperty = {
sseEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| sse | boolean | IResolvable | Indicates whether server-side encryption is enabled (true) or disabled (false) on the cluster. |
sseEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether server-side encryption is enabled (true) or disabled (false) on the cluster.

.NET
Go
Java
Python
TypeScript