Interface DockerVolumeConfiguration.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<DockerVolumeConfiguration.Builder,,- DockerVolumeConfiguration> - SdkBuilder<DockerVolumeConfiguration.Builder,,- DockerVolumeConfiguration> - SdkPojo
- Enclosing class:
- DockerVolumeConfiguration
- 
Method SummaryModifier and TypeMethodDescriptionautoprovision(Boolean autoprovision) If this value istrue, the Docker volume is created if it doesn't already exist.The Docker volume driver to use.driverOpts(Map<String, String> driverOpts) A map of Docker driver-specific options passed through.Custom metadata to add to your Docker volume.The scope for the Docker volume that determines its lifecycle.The scope for the Docker volume that determines its lifecycle.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
scopeThe scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a taskare automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped assharedpersist after the task stops.- Parameters:
- scope- The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a- taskare automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as- sharedpersist after the task stops.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
scopeThe scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a taskare automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped assharedpersist after the task stops.- Parameters:
- scope- The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a- taskare automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as- sharedpersist after the task stops.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
autoprovisionIf this value is true, the Docker volume is created if it doesn't already exist.This field is only used if the scopeisshared.- Parameters:
- autoprovision- If this value is- true, the Docker volume is created if it doesn't already exist.- This field is only used if the - scopeis- shared.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
driverThe Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement. If the driver was installed using the Docker plugin CLI, use docker plugin lsto retrieve the driver name from your container instance. If the driver was installed using another method, use Docker plugin discovery to retrieve the driver name. This parameter maps toDriverin the docker container create command and thexxdriveroption to docker volume create.- Parameters:
- driver- The Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement. If the driver was installed using the Docker plugin CLI, use- docker plugin lsto retrieve the driver name from your container instance. If the driver was installed using another method, use Docker plugin discovery to retrieve the driver name. This parameter maps to- Driverin the docker container create command and the- xxdriveroption to docker volume create.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
driverOptsA map of Docker driver-specific options passed through. This parameter maps to DriverOptsin the docker create-volume command and thexxoptoption to docker volume create.- Parameters:
- driverOpts- A map of Docker driver-specific options passed through. This parameter maps to- DriverOptsin the docker create-volume command and the- xxoptoption to docker volume create.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
labelsCustom metadata to add to your Docker volume. This parameter maps to Labelsin the docker container create command and thexxlabeloption to docker volume create.- Parameters:
- labels- Custom metadata to add to your Docker volume. This parameter maps to- Labelsin the docker container create command and the- xxlabeloption to docker volume create.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
-