Show / Hide Table of Contents

Class CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty

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

Inheritance
object
CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty
Implements
CfnS3AccessPointAttachment.IS3AccessPointOntapConfigurationProperty
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.S3AccessPointOntapConfigurationProperty : CfnS3AccessPointAttachment.IS3AccessPointOntapConfigurationProperty
Syntax (vb)
Public Class CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty Implements CfnS3AccessPointAttachment.IS3AccessPointOntapConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointontapconfiguration.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 s3AccessPointOntapConfigurationProperty = new S3AccessPointOntapConfigurationProperty {
                 FileSystemIdentity = new OntapFileSystemIdentityProperty {
                     Type = "type",

                     // the properties below are optional
                     UnixUser = new OntapUnixFileSystemUserProperty {
                         Name = "name"
                     },
                     WindowsUser = new OntapWindowsFileSystemUserProperty {
                         Name = "name"
                     }
                 },
                 VolumeId = "volumeId"
             };

Synopsis

Constructors

S3AccessPointOntapConfigurationProperty()

Describes the FSx for ONTAP 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 ONTAP volume that the S3 access point is attached to.

Constructors

S3AccessPointOntapConfigurationProperty()

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

public S3AccessPointOntapConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointontapconfiguration.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 s3AccessPointOntapConfigurationProperty = new S3AccessPointOntapConfigurationProperty {
                 FileSystemIdentity = new OntapFileSystemIdentityProperty {
                     Type = "type",

                     // the properties below are optional
                     UnixUser = new OntapUnixFileSystemUserProperty {
                         Name = "name"
                     },
                     WindowsUser = new OntapWindowsFileSystemUserProperty {
                         Name = "name"
                     }
                 },
                 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-s3accesspointontapconfiguration.html#cfn-fsx-s3accesspointattachment-s3accesspointontapconfiguration-filesystemidentity

Type union: either IResolvable or CfnS3AccessPointAttachment.IOntapFileSystemIdentityProperty

VolumeId

The ID of the FSx for ONTAP 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-s3accesspointontapconfiguration.html#cfn-fsx-s3accesspointattachment-s3accesspointontapconfiguration-volumeid

Implements

CfnS3AccessPointAttachment.IS3AccessPointOntapConfigurationProperty
Back to top Generated by DocFX