Interface ContainerMountPoint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContainerMountPoint.Builder,ContainerMountPoint>,SdkBuilder<ContainerMountPoint.Builder,ContainerMountPoint>,SdkPojo
- Enclosing class:
- ContainerMountPoint
public static interface ContainerMountPoint.Builder extends SdkPojo, CopyableBuilder<ContainerMountPoint.Builder,ContainerMountPoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerMountPoint.BuilderaccessLevel(String accessLevel)The type of access for the container.ContainerMountPoint.BuilderaccessLevel(ContainerMountPointAccessLevel accessLevel)The type of access for the container.ContainerMountPoint.BuildercontainerPath(String containerPath)The mount path on the container.ContainerMountPoint.BuilderinstancePath(String instancePath)The path to the source file or directory.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
instancePath
ContainerMountPoint.Builder instancePath(String instancePath)
The path to the source file or directory.
- Parameters:
instancePath- The path to the source file or directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerPath
ContainerMountPoint.Builder containerPath(String containerPath)
The mount path on the container. If this property isn't set, the instance path is used.
- Parameters:
containerPath- The mount path on the container. If this property isn't set, the instance path is used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessLevel
ContainerMountPoint.Builder accessLevel(String accessLevel)
The type of access for the container.
- Parameters:
accessLevel- The type of access for the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerMountPointAccessLevel,ContainerMountPointAccessLevel
-
accessLevel
ContainerMountPoint.Builder accessLevel(ContainerMountPointAccessLevel accessLevel)
The type of access for the container.
- Parameters:
accessLevel- The type of access for the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerMountPointAccessLevel,ContainerMountPointAccessLevel
-
-