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();