Interface HostVolumeProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HostVolumeProperties.Builder,HostVolumeProperties>,SdkBuilder<HostVolumeProperties.Builder,HostVolumeProperties>,SdkPojo
- Enclosing class:
- HostVolumeProperties
public static interface HostVolumeProperties.Builder extends SdkPojo, CopyableBuilder<HostVolumeProperties.Builder,HostVolumeProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostVolumeProperties.BuildersourcePath(String sourcePath)When thehostparameter is used, specify asourcePathto declare the path on the host container instance that's presented to the container.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
sourcePath
HostVolumeProperties.Builder sourcePath(String sourcePath)
When the
hostparameter is used, specify asourcePathto declare the path on the host container instance that's presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If thehostparameter contains asourcePathfile location, then the data volume persists at the specified location on the host container instance until you delete it manually. If thesourcePathvalue doesn't exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.If you're using the Fargate launch type, the
sourcePathparameter is not supported.- Parameters:
sourcePath- When thehostparameter is used, specify asourcePathto declare the path on the host container instance that's presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If thehostparameter contains asourcePathfile location, then the data volume persists at the specified location on the host container instance until you delete it manually. If thesourcePathvalue doesn't exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.If you're using the Fargate launch type, the
sourcePathparameter is not supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-