Package org.cdk8s.plus20
Interface PathMapping
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PathMapping.Jsii$Proxy
@Generated(value="jsii-pacmak/1.59.0 (build eb02c92)", date="2022-05-18T23:19:48.633Z") @Stability(Stable) public interface PathMapping extends software.amazon.jsii.JsiiSerializable
Maps a string key to a path within a volume.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPathMapping.BuilderA builder forPathMappingstatic classPathMapping.Jsii$ProxyAn implementation forPathMapping
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static PathMapping.Builderbuilder()default NumbergetMode()Optional: mode bits to use on this file, must be a value between 0 and 0777.StringgetPath()The relative path of the file to map the key to.
-
-
-
Method Detail
-
getPath
@Stability(Stable) @NotNull String getPath()
The relative path of the file to map the key to.May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.
-
getMode
@Stability(Stable) @Nullable default Number getMode()
Optional: mode bits to use on this file, must be a value between 0 and 0777.If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
-
builder
@Stability(Stable) static PathMapping.Builder builder()
- Returns:
- a
PathMapping.BuilderofPathMapping
-
-