Class CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty
Inherited Members
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
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
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
Remarks
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; }