Class | Description |
---|---|
AbstractEbsVolumeCustomizer | |
EbsVolumeCustomizers |
Customization hooks to ensure that any EC2 instances provisioned via a corresponding jclouds location become associated
with an EBS volume (either an existing volume, specified by ID, or newly created).
|
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
|
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
|
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
|