Interface CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty

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

@Stability(Stable) public static interface CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty extends software.amazon.jsii.JsiiSerializable
Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.

The identity can be either a UNIX user or a Windows user.

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.*;
 OntapFileSystemIdentityProperty ontapFileSystemIdentityProperty = OntapFileSystemIdentityProperty.builder()
         .type("type")
         // the properties below are optional
         .unixUser(OntapUnixFileSystemUserProperty.builder()
                 .name("name")
                 .build())
         .windowsUser(OntapWindowsFileSystemUserProperty.builder()
                 .name("name")
                 .build())
         .build();
 

See Also: