Interface CfnClusterProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:05.206Z") @Stability(Stable) public interface CfnClusterProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCluster.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dax.*;
 Object tags;
 CfnClusterProps cfnClusterProps = CfnClusterProps.builder()
         .iamRoleArn("iamRoleArn")
         .nodeType("nodeType")
         .replicationFactor(123)
         // the properties below are optional
         .availabilityZones(List.of("availabilityZones"))
         .clusterEndpointEncryptionType("clusterEndpointEncryptionType")
         .clusterName("clusterName")
         .description("description")
         .notificationTopicArn("notificationTopicArn")
         .parameterGroupName("parameterGroupName")
         .preferredMaintenanceWindow("preferredMaintenanceWindow")
         .securityGroupIds(List.of("securityGroupIds"))
         .sseSpecification(SSESpecificationProperty.builder()
                 .sseEnabled(false)
                 .build())
         .subnetGroupName("subnetGroupName")
         .tags(tags)
         .build();
 

See Also: