interface CfnAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnAccessPointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnAccessPointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnAccessPointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnAccessPointMixinProps |
Properties for CfnAccessPointPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3files as s3files } from '@aws-cdk/cfn-property-mixins';
const cfnAccessPointMixinProps: s3files.CfnAccessPointMixinProps = {
clientToken: 'clientToken',
fileSystemId: 'fileSystemId',
posixUser: {
gid: 'gid',
secondaryGids: ['secondaryGids'],
uid: 'uid',
},
rootDirectory: {
creationPermissions: {
ownerGid: 'ownerGid',
ownerUid: 'ownerUid',
permissions: 'permissions',
},
path: 'path',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | (optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation. |
| file | string | The ID of the S3 Files file system that the access point provides access to. |
| posix | IResolvable | Posix | |
| root | IResolvable | Root | |
| tags? | Access[] |
clientToken?
Type:
string
(optional)
(optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.
fileSystemId?
Type:
string
(optional)
The ID of the S3 Files file system that the access point provides access to.
posixUser?
Type:
IResolvable | Posix
(optional)
rootDirectory?
Type:
IResolvable | Root
(optional)
tags?
Type:
Access[]
(optional)

.NET
Go
Java
Python
TypeScript