Interface ManagedStorageConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ManagedStorageConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-10T21:56:50.928Z")
@Stability(Stable)
public interface ManagedStorageConfiguration
extends software.amazon.jsii.JsiiSerializable
Kms Keys for encryption ECS managed storage.
Example:
Key key; Cluster cluster = Cluster.Builder.create(this, "Cluster") .managedStorageConfiguration(ManagedStorageConfiguration.builder() .fargateEphemeralStorageKmsKey(key) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forManagedStorageConfiguration
static final class
An implementation forManagedStorageConfiguration
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFargateEphemeralStorageKmsKey
KMS Key used to encrypt ECS Fargate ephemeral Storage.The configured KMS Key's policy will be modified to allow ECS to use the Key to encrypt the ephemeral Storage for this cluster.
Default: No encryption will be applied
- See Also:
-
builder
-