Interface CfnClusterPropsMixin.ClusterConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.ClusterConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.ClusterConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The execute command and managed storage configuration for the cluster.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
ClusterConfigurationProperty clusterConfigurationProperty = ClusterConfigurationProperty.builder()
.executeCommandConfiguration(ExecuteCommandConfigurationProperty.builder()
.kmsKeyId("kmsKeyId")
.logConfiguration(ExecuteCommandLogConfigurationProperty.builder()
.cloudWatchEncryptionEnabled(false)
.cloudWatchLogGroupName("cloudWatchLogGroupName")
.s3BucketName("s3BucketName")
.s3EncryptionEnabled(false)
.s3KeyPrefix("s3KeyPrefix")
.build())
.logging("logging")
.build())
.managedStorageConfiguration(ManagedStorageConfigurationProperty.builder()
.fargateEphemeralStorageKmsKeyId("fargateEphemeralStorageKmsKeyId")
.kmsKeyId("kmsKeyId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.ClusterConfigurationPropertystatic final classAn implementation forCfnClusterPropsMixin.ClusterConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecuteCommandConfiguration
The details of the execute command configuration.Returns union: either
IResolvableorCfnClusterPropsMixin.ExecuteCommandConfigurationProperty- See Also:
-
getManagedStorageConfiguration
The details of the managed storage configuration.Returns union: either
IResolvableorCfnClusterPropsMixin.ManagedStorageConfigurationProperty- See Also:
-
builder
-