public class EbsVolumeCustomizers
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
EbsVolumeCustomizers.WithExistingSnapshot
Location customizer that:
configures the AWS availability zone
obtains a new EBS volume from the specified snapshot in the given availability zone
attaches the new volume to the newly-provisioned EC2 instance
mounts the filesystem under the requested path
|
static class |
EbsVolumeCustomizers.WithExistingVolume
Location customizer that:
configures the AWS availability zone
attaches the specified (existing) volume to the newly-provisioned EC2 instance
mounts the filesystem under the requested path
|
static class |
EbsVolumeCustomizers.WithNewVolume
Location customizer that:
configures the AWS availability zone
creates a new EBS volume of the requested size in the given availability zone
attaches the new volume to the newly-provisioned EC2 instance
formats the new volume with the requested filesystem
mounts the filesystem under the requested path
|