Show / Hide Table of Contents

Class CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty

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()

Properties

FileSystemIdentity
VolumeId

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

Constructors

S3AccessPointOntapConfigurationProperty()

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

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