Interface CfnFileSystem.ClientConfigurationsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFileSystem.ClientConfigurationsProperty.Jsii$Proxy
Enclosing class:
CfnFileSystem

@Stability(Stable) public static interface CfnFileSystem.ClientConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
Specifies who can mount an OpenZFS file system and the options available while mounting the 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.*;
 ClientConfigurationsProperty clientConfigurationsProperty = ClientConfigurationsProperty.builder()
         .clients("clients")
         .options(List.of("options"))
         .build();
 

See Also: