Interface CfnService.ServiceManagedEBSVolumeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.ServiceManagedEBSVolumeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.ServiceManagedEBSVolumeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.ecs.*;
ServiceManagedEBSVolumeConfigurationProperty serviceManagedEBSVolumeConfigurationProperty = ServiceManagedEBSVolumeConfigurationProperty.builder()
.roleArn("roleArn")
// the properties below are optional
.encrypted(false)
.filesystemType("filesystemType")
.iops(123)
.kmsKeyId("kmsKeyId")
.sizeInGiB(123)
.snapshotId("snapshotId")
.tagSpecifications(List.of(EBSTagSpecificationProperty.builder()
.resourceType("resourceType")
// the properties below are optional
.propagateTags("propagateTags")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build()))
.throughput(123)
.volumeType("volumeType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ServiceManagedEBSVolumeConfigurationPropertystatic final classAn implementation forCfnService.ServiceManagedEBSVolumeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
- See Also:
-
getEncrypted
- See Also:
-
getFilesystemType
- See Also:
-
getIops
- See Also:
-
getKmsKeyId
- See Also:
-
getSizeInGiB
- See Also:
-
getSnapshotId
- See Also:
-
getTagSpecifications
- See Also:
-
getThroughput
- See Also:
-
getVolumeType
- See Also:
-
builder
-