Interface CfnS3AccessPointAttachment.S3AccessPointProperty

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

@Stability(Stable) public static interface CfnS3AccessPointAttachment.S3AccessPointProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 Object policy;
 S3AccessPointProperty s3AccessPointProperty = S3AccessPointProperty.builder()
         .alias("alias")
         .policy(policy)
         .resourceArn("resourceArn")
         .vpcConfiguration(S3AccessPointVpcConfigurationProperty.builder()
                 .vpcId("vpcId")
                 .build())
         .build();
 

See Also: