Interface CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty.Jsii$Proxy
- Enclosing class:
CfnS3AccessPointAttachment
@Stability(Stable)
public static interface CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty
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.*;
OntapFileSystemIdentityProperty ontapFileSystemIdentityProperty = OntapFileSystemIdentityProperty.builder()
.type("type")
// the properties below are optional
.unixUser(OntapUnixFileSystemUserProperty.builder()
.name("name")
.build())
.windowsUser(OntapWindowsFileSystemUserProperty.builder()
.name("name")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnS3AccessPointAttachment.OntapFileSystemIdentityProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getType()Specifies the FSx for ONTAP user identity type, accepts either UNIX or WINDOWS.default ObjectReturns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapUnixFileSystemUserPropertydefault ObjectReturns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapWindowsFileSystemUserPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
Specifies the FSx for ONTAP user identity type, accepts either UNIX or WINDOWS.- See Also:
-
getUnixUser
Returns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapUnixFileSystemUserProperty- See Also:
-
getWindowsUser
Returns union: eitherIResolvableorCfnS3AccessPointAttachment.OntapWindowsFileSystemUserProperty- See Also:
-
builder
@Stability(Stable) static CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty.Builder builder()
-