Interface CfnVolume.NfsExportsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVolume.NfsExportsProperty.Jsii$Proxy
- Enclosing class:
- CfnVolume
@Stability(Stable)
public static interface CfnVolume.NfsExportsProperty
extends software.amazon.jsii.JsiiSerializable
The configuration object for mounting a Network File System (NFS) file system.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.fsx.*;
NfsExportsProperty nfsExportsProperty = NfsExportsProperty.builder()
.clientConfigurations(List.of(ClientConfigurationsProperty.builder()
.clients("clients")
.options(List.of("options"))
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVolume.NfsExportsPropertystatic final classAn implementation forCfnVolume.NfsExportsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of configuration objects that contain the client and options for mounting the OpenZFS file system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientConfigurations
A list of configuration objects that contain the client and options for mounting the OpenZFS file system. -
builder
-