interface CfnAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EFS.Mixins.CfnAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsefs/mixins#CfnAccessPointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.efs.mixins.CfnAccessPointMixinProps |
Python | aws_cdk.mixins_preview.aws_efs.mixins.CfnAccessPointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_efs » mixins » CfnAccessPointMixinProps |
Properties for CfnAccessPointPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as efs_mixins } from '@aws-cdk/mixins-preview/aws-efs';
const cfnAccessPointMixinProps: efs_mixins.CfnAccessPointMixinProps = {
accessPointTags: [{
key: 'key',
value: 'value',
}],
clientToken: 'clientToken',
fileSystemId: 'fileSystemId',
posixUser: {
gid: 'gid',
secondaryGids: ['secondaryGids'],
uid: 'uid',
},
rootDirectory: {
creationInfo: {
ownerGid: 'ownerGid',
ownerUid: 'ownerUid',
permissions: 'permissions',
},
path: 'path',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | Access[] | An array of key-value pairs to apply to this resource. |
| client | string | The opaque string specified in the request to ensure idempotent creation. |
| file | string | The ID of the EFS file system that the access point applies to. |
| posix | IResolvable | Posix | The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point. |
| root | IResolvable | Root | The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point. |
accessPointTags?
Type:
Access[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
clientToken?
Type:
string
(optional)
The opaque string specified in the request to ensure idempotent creation.
fileSystemId?
Type:
string
(optional)
The ID of the EFS file system that the access point applies to.
Accepts only the ID format for input when specifying a file system, for example fs-0123456789abcedf2 .
posixUser?
Type:
IResolvable | Posix
(optional)
The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.
rootDirectory?
Type:
IResolvable | Root
(optional)
The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.

.NET
Go
Java
Python
TypeScript