Class CfnAccessPointMixinProps
Properties for CfnAccessPointPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Files
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAccessPointMixinProps : ICfnAccessPointMixinProps
Syntax (vb)
Public Class CfnAccessPointMixinProps Implements ICfnAccessPointMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.S3Files;
var cfnAccessPointMixinProps = new CfnAccessPointMixinProps {
ClientToken = "clientToken",
FileSystemId = "fileSystemId",
PosixUser = new PosixUserProperty {
Gid = "gid",
SecondaryGids = new [] { "secondaryGids" },
Uid = "uid"
},
RootDirectory = new RootDirectoryProperty {
CreationPermissions = new CreationPermissionsProperty {
OwnerGid = "ownerGid",
OwnerUid = "ownerUid",
Permissions = "permissions"
},
Path = "path"
},
Tags = new [] { new AccessPointTagProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnAccessPointMixinProps() | Properties for CfnAccessPointPropsMixin. |
Properties
| ClientToken | (optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation. |
| FileSystemId | The ID of the S3 Files file system that the access point provides access to. |
| PosixUser | Properties for CfnAccessPointPropsMixin. |
| RootDirectory | Properties for CfnAccessPointPropsMixin. |
| Tags | Properties for CfnAccessPointPropsMixin. |
Constructors
CfnAccessPointMixinProps()
Properties for CfnAccessPointPropsMixin.
public CfnAccessPointMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.S3Files;
var cfnAccessPointMixinProps = new CfnAccessPointMixinProps {
ClientToken = "clientToken",
FileSystemId = "fileSystemId",
PosixUser = new PosixUserProperty {
Gid = "gid",
SecondaryGids = new [] { "secondaryGids" },
Uid = "uid"
},
RootDirectory = new RootDirectoryProperty {
CreationPermissions = new CreationPermissionsProperty {
OwnerGid = "ownerGid",
OwnerUid = "ownerUid",
Permissions = "permissions"
},
Path = "path"
},
Tags = new [] { new AccessPointTagProperty {
Key = "key",
Value = "value"
} }
};
Properties
ClientToken
(optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.
public string? ClientToken { get; set; }
Property Value
Remarks
FileSystemId
The ID of the S3 Files file system that the access point provides access to.
public string? FileSystemId { get; set; }
Property Value
Remarks
PosixUser
Properties for CfnAccessPointPropsMixin.
public object? PosixUser { get; set; }
Property Value
Remarks
RootDirectory
Properties for CfnAccessPointPropsMixin.
public object? RootDirectory { get; set; }
Property Value
Remarks
Tags
Properties for CfnAccessPointPropsMixin.
public CfnAccessPointPropsMixin.IAccessPointTagProperty[]? Tags { get; set; }