Show / Hide Table of Contents

Class CfnAccessPointMixinProps

Properties for CfnAccessPointPropsMixin.

Inheritance
object
CfnAccessPointMixinProps
Implements
ICfnAccessPointMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html#cfn-s3files-accesspoint-clienttoken

FileSystemId

The ID of the S3 Files file system that the access point provides access to.

public string? FileSystemId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html#cfn-s3files-accesspoint-filesystemid

PosixUser

Properties for CfnAccessPointPropsMixin.

public object? PosixUser { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html#cfn-s3files-accesspoint-posixuser

Type union: either IResolvable or CfnAccessPointPropsMixin.IPosixUserProperty

RootDirectory

Properties for CfnAccessPointPropsMixin.

public object? RootDirectory { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html#cfn-s3files-accesspoint-rootdirectory

Type union: either IResolvable or CfnAccessPointPropsMixin.IRootDirectoryProperty

Tags

Properties for CfnAccessPointPropsMixin.

public CfnAccessPointPropsMixin.IAccessPointTagProperty[]? Tags { get; set; }
Property Value

IAccessPointTagProperty[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-accesspoint.html#cfn-s3files-accesspoint-tags

Implements

ICfnAccessPointMixinProps
Back to top Generated by DocFX