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
Describes the S3 access point configuration of the S3 access point attachment.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnS3AccessPointAttachment.S3AccessPointPropertystatic final classAn implementation forCfnS3AccessPointAttachment.S3AccessPointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlias
The S3 access point's alias.- See Also:
-
getPolicy
The S3 access point's policy.- See Also:
-
getResourceArn
The S3 access point's ARN.- See Also:
-
getVpcConfiguration
The S3 access point's virtual private cloud (VPC) configuration.Returns union: either
IResolvableorCfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty- See Also:
-
builder
-