public static interface CfnContainerRecipe.InstanceBlockDeviceMappingProperty
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.imagebuilder.*; InstanceBlockDeviceMappingProperty instanceBlockDeviceMappingProperty = InstanceBlockDeviceMappingProperty.builder() .deviceName("deviceName") .ebs(EbsInstanceBlockDeviceSpecificationProperty.builder() .deleteOnTermination(false) .encrypted(false) .iops(123) .kmsKeyId("kmsKeyId") .snapshotId("snapshotId") .throughput(123) .volumeSize(123) .volumeType("volumeType") .build()) .noDevice("noDevice") .virtualName("virtualName") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnContainerRecipe.InstanceBlockDeviceMappingProperty.Builder
A builder for
CfnContainerRecipe.InstanceBlockDeviceMappingProperty |
static class |
CfnContainerRecipe.InstanceBlockDeviceMappingProperty.Jsii$Proxy
An implementation for
CfnContainerRecipe.InstanceBlockDeviceMappingProperty |
Modifier and Type | Method and Description |
---|---|
static CfnContainerRecipe.InstanceBlockDeviceMappingProperty.Builder |
builder() |
default java.lang.String |
getDeviceName()
The device to which these mappings apply.
|
default java.lang.Object |
getEbs()
Use to manage Amazon EBS-specific configuration for this mapping.
|
default java.lang.String |
getNoDevice()
Use to remove a mapping from the base image.
|
default java.lang.String |
getVirtualName()
Use to manage instance ephemeral devices.
|
default java.lang.String getDeviceName()
default java.lang.Object getEbs()
default java.lang.String getNoDevice()
default java.lang.String getVirtualName()