Package org.cdk8s.plus25
Interface NfsVolumeOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NfsVolumeOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.372Z") @Stability(Stable) public interface NfsVolumeOptions extends software.amazon.jsii.JsiiSerializable
Options for the NFS based volume.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classNfsVolumeOptions.BuilderA builder forNfsVolumeOptionsstatic classNfsVolumeOptions.Jsii$ProxyAn implementation forNfsVolumeOptions
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static NfsVolumeOptions.Builderbuilder()StringgetPath()Path that is exported by the NFS server.default BooleangetReadOnly()If set to true, will force the NFS export to be mounted with read-only permissions.StringgetServer()Server is the hostname or IP address of the NFS server.
-
-
-
Method Detail
-
getPath
@Stability(Stable) @NotNull String getPath()
Path that is exported by the NFS server.
-
getServer
@Stability(Stable) @NotNull String getServer()
Server is the hostname or IP address of the NFS server.
-
getReadOnly
@Stability(Stable) @Nullable default Boolean getReadOnly()
If set to true, will force the NFS export to be mounted with read-only permissions.Default: - false
-
builder
@Stability(Stable) static NfsVolumeOptions.Builder builder()
- Returns:
- a
NfsVolumeOptions.BuilderofNfsVolumeOptions
-
-