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-04T12:43:07.749Z")
@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 classA builder forCfnS3AccessPointAttachmentPropsstatic final classAn implementation forCfnS3AccessPointAttachmentProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The Name of the S3AccessPointAttachment.- See Also:
-
getOpenZfsConfiguration
- See Also:
-
getType
- See Also:
-
getS3AccessPoint
- See Also:
-
builder
-