Interface CfnLocationFSxONTAPProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLocationFSxONTAPProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:14.309Z") @Stability(Stable) public interface CfnLocationFSxONTAPProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLocationFSxONTAP.

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.datasync.*;
 CfnLocationFSxONTAPProps cfnLocationFSxONTAPProps = CfnLocationFSxONTAPProps.builder()
         .securityGroupArns(List.of("securityGroupArns"))
         .storageVirtualMachineArn("storageVirtualMachineArn")
         // the properties below are optional
         .protocol(ProtocolProperty.builder()
                 .nfs(NFSProperty.builder()
                         .mountOptions(NfsMountOptionsProperty.builder()
                                 .version("version")
                                 .build())
                         .build())
                 .smb(SMBProperty.builder()
                         .mountOptions(SmbMountOptionsProperty.builder()
                                 .version("version")
                                 .build())
                         .password("password")
                         .user("user")
                         // the properties below are optional
                         .domain("domain")
                         .build())
                 .build())
         .subdirectory("subdirectory")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: