Interface CfnVolumePropsMixin.NfsExportsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVolumePropsMixin.NfsExportsProperty.Jsii$Proxy
- Enclosing class:
CfnVolumePropsMixin
@Stability(Stable)
public static interface CfnVolumePropsMixin.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.cfnpropertymixins.services.fsx.*;
NfsExportsProperty nfsExportsProperty = NfsExportsProperty.builder()
.clientConfigurations(List.of(ClientConfigurationsProperty.builder()
.clients("clients")
.options(List.of("options"))
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVolumePropsMixin.NfsExportsPropertystatic final classAn implementation forCfnVolumePropsMixin.NfsExportsProperty -
Method Summary
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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnVolumePropsMixin.ClientConfigurationsProperty>- See Also:
-
builder
-