Interface CfnEnvironment.StorageConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironment.StorageConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnEnvironment
@Stability(Stable)
public static interface CfnEnvironment.StorageConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Defines the storage configuration for a runtime environment.
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.m2.*;
StorageConfigurationProperty storageConfigurationProperty = StorageConfigurationProperty.builder()
.efs(EfsStorageConfigurationProperty.builder()
.fileSystemId("fileSystemId")
.mountPoint("mountPoint")
.build())
.fsx(FsxStorageConfigurationProperty.builder()
.fileSystemId("fileSystemId")
.mountPoint("mountPoint")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironment.StorageConfigurationPropertystatic final classAn implementation forCfnEnvironment.StorageConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfs
Defines the storage configuration for an Amazon EFS file system. -
getFsx
Defines the storage configuration for an Amazon FSx file system. -
builder
-