Interface CfnS3AccessPointAttachmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:15.179Z")
@Stability(Stable)
public interface CfnS3AccessPointAttachmentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnS3AccessPointAttachment
.
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; CfnS3AccessPointAttachmentProps cfnS3AccessPointAttachmentProps = CfnS3AccessPointAttachmentProps.builder() .name("name") .openZfsConfiguration(S3AccessPointOpenZFSConfigurationProperty.builder() .fileSystemIdentity(OpenZFSFileSystemIdentityProperty.builder() .posixUser(OpenZFSPosixFileSystemUserProperty.builder() .gid(123) .uid(123) // the properties below are optional .secondaryGids(List.of(FileSystemGIDProperty.builder() .gid(123) .build())) .build()) .type("type") .build()) .volumeId("volumeId") .build()) .type("type") // the properties below are optional .s3AccessPoint(S3AccessPointProperty.builder() .alias("alias") .policy(policy) .resourceArn("resourceArn") .vpcConfiguration(S3AccessPointVpcConfigurationProperty.builder() .vpcId("vpcId") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnS3AccessPointAttachmentProps
static final class
An implementation forCfnS3AccessPointAttachmentProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getName()
The name of the S3 access point attachment;The OpenZFSConfiguration of the S3 access point attachment.default Object
The S3 access point configuration of the S3 access point attachment.getType()
The type of Amazon FSx volume that the S3 access point is attached to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the S3 access point attachment;also used for the name of the S3 access point.
- See Also:
-
getOpenZfsConfiguration
The OpenZFSConfiguration of the S3 access point attachment.- See Also:
-
getType
The type of Amazon FSx volume that the S3 access point is attached to.- See Also:
-
getS3AccessPoint
The S3 access point configuration of the S3 access point attachment.- See Also:
-
builder
-