interface CfnClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudHSM.CfnClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudhsm#CfnClusterMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudhsm.CfnClusterMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudhsm.CfnClusterMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudhsm » CfnClusterMixinProps |
Properties for CfnClusterPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudhsm-cluster.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudhsm as cloudhsm } from '@aws-cdk/cfn-property-mixins';
const cfnClusterMixinProps: cloudhsm.CfnClusterMixinProps = {
backupRetentionPolicy: {
type: 'type',
value: 'value',
},
hsmType: 'hsmType',
mode: 'mode',
networkType: 'networkType',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | IResolvable | Backup | A policy that defines how the service retains backups. |
| hsm | string | The type of HSM to use in the cluster. |
| mode? | string | The mode to use in the cluster. |
| network | string | The NetworkType to create a cluster with. |
| subnet | string[] | The identifiers (IDs) of the subnets where the cluster is created. |
| tags? | Tags[] | Tags to apply to the CloudHSM cluster. |
backupRetentionPolicy?
Type:
IResolvable | Backup
(optional)
A policy that defines how the service retains backups.
hsmType?
Type:
string
(optional)
The type of HSM to use in the cluster.
mode?
Type:
string
(optional)
The mode to use in the cluster.
networkType?
Type:
string
(optional)
The NetworkType to create a cluster with.
subnetIds?
Type:
string[]
(optional)
The identifiers (IDs) of the subnets where the cluster is created.
You must specify at least one subnet.
tags?
Type:
Tags[]
(optional)
Tags to apply to the CloudHSM cluster.

.NET
Go
Java
Python
TypeScript