Interface CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnS3AccessPointAttachment
@Stability(Stable)
public static interface CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.fsx.*;
S3AccessPointOntapConfigurationProperty s3AccessPointOntapConfigurationProperty = S3AccessPointOntapConfigurationProperty.builder()
.fileSystemIdentity(OntapFileSystemIdentityProperty.builder()
.type("type")
// the properties below are optional
.unixUser(OntapUnixFileSystemUserProperty.builder()
.name("name")
.build())
.windowsUser(OntapWindowsFileSystemUserProperty.builder()
.name("name")
.build())
.build())
.volumeId("volumeId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapFileSystemIdentityPropertyThe ID of the FSx for ONTAP volume that the S3 access point is attached to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileSystemIdentity
Returns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapFileSystemIdentityProperty- See Also:
-
getVolumeId
The ID of the FSx for ONTAP volume that the S3 access point is attached to.- See Also:
-
builder
@Stability(Stable) static CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty.Builder builder()
-