Interface CfnAccessPointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.705Z")
@Stability(Stable)
public interface CfnAccessPointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAccessPointPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.s3files.*;
CfnAccessPointMixinProps cfnAccessPointMixinProps = CfnAccessPointMixinProps.builder()
.clientToken("clientToken")
.fileSystemId("fileSystemId")
.posixUser(PosixUserProperty.builder()
.gid("gid")
.secondaryGids(List.of("secondaryGids"))
.uid("uid")
.build())
.rootDirectory(RootDirectoryProperty.builder()
.creationPermissions(CreationPermissionsProperty.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build())
.path("path")
.build())
.tags(List.of(AccessPointTagProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPointMixinPropsstatic final classAn implementation forCfnAccessPointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.default StringThe ID of the S3 Files file system that the access point provides access to.default ObjectReturns union: eitherIResolvableorCfnAccessPointPropsMixin.PosixUserPropertydefault ObjectReturns union: eitherIResolvableorCfnAccessPointPropsMixin.RootDirectoryPropertygetTags()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientToken
(optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.- See Also:
-
getFileSystemId
The ID of the S3 Files file system that the access point provides access to.- See Also:
-
getPosixUser
Returns union: eitherIResolvableorCfnAccessPointPropsMixin.PosixUserProperty- See Also:
-
getRootDirectory
Returns union: eitherIResolvableorCfnAccessPointPropsMixin.RootDirectoryProperty- See Also:
-
getTags
@Stability(Stable) @Nullable default List<CfnAccessPointPropsMixin.AccessPointTagProperty> getTags()- See Also:
-
builder
- Returns:
- a
CfnAccessPointMixinProps.BuilderofCfnAccessPointMixinProps
-