Show / Hide Table of Contents

Class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty

Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.

Inheritance
object
CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty
Implements
CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty : CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
Syntax (vb)
Public Class CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty Implements CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.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.AWS.FSx;

             var s3AccessPointOpenZFSConfigurationProperty = new S3AccessPointOpenZFSConfigurationProperty {
                 FileSystemIdentity = new OpenZFSFileSystemIdentityProperty {
                     PosixUser = new OpenZFSPosixFileSystemUserProperty {
                         Gid = 123,
                         Uid = 123,

                         // the properties below are optional
                         SecondaryGids = new [] { new FileSystemGIDProperty {
                             Gid = 123
                         } }
                     },
                     Type = "type"
                 },
                 VolumeId = "volumeId"
             };

Synopsis

Constructors

S3AccessPointOpenZFSConfigurationProperty()

Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.

Properties

FileSystemIdentity

The file system identity used to authorize file access requests made using the S3 access point.

VolumeId

The ID of the FSx for OpenZFS volume that the S3 access point is attached to.

Constructors

S3AccessPointOpenZFSConfigurationProperty()

Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.

public S3AccessPointOpenZFSConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.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.AWS.FSx;

             var s3AccessPointOpenZFSConfigurationProperty = new S3AccessPointOpenZFSConfigurationProperty {
                 FileSystemIdentity = new OpenZFSFileSystemIdentityProperty {
                     PosixUser = new OpenZFSPosixFileSystemUserProperty {
                         Gid = 123,
                         Uid = 123,

                         // the properties below are optional
                         SecondaryGids = new [] { new FileSystemGIDProperty {
                             Gid = 123
                         } }
                     },
                     Type = "type"
                 },
                 VolumeId = "volumeId"
             };

Properties

FileSystemIdentity

The file system identity used to authorize file access requests made using the S3 access point.

public object FileSystemIdentity { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html#cfn-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration-filesystemidentity

Type union: either IResolvable or CfnS3AccessPointAttachment.IOpenZFSFileSystemIdentityProperty

VolumeId

The ID of the FSx for OpenZFS volume that the S3 access point is attached to.

public string VolumeId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html#cfn-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration-volumeid

Implements

CfnS3AccessPointAttachment.IS3AccessPointOpenZFSConfigurationProperty
Back to top Generated by DocFX