Class: Aws::FSx::Types::OntapFileSystemIdentity
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::OntapFileSystemIdentity
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point. The identity can be either a UNIX user or a Windows user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
Specifies the FSx for ONTAP user identity type.
-
#unix_user ⇒ Types::OntapUnixFileSystemUser
Specifies the UNIX user identity for file system operations.
-
#windows_user ⇒ Types::OntapWindowsFileSystemUser
Specifies the Windows user identity for file system operations.
Instance Attribute Details
#type ⇒ String
Specifies the FSx for ONTAP user identity type. Valid values are
UNIX and WINDOWS.
7497 7498 7499 7500 7501 7502 7503 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7497 class OntapFileSystemIdentity < Struct.new( :type, :unix_user, :windows_user) SENSITIVE = [] include Aws::Structure end |
#unix_user ⇒ Types::OntapUnixFileSystemUser
Specifies the UNIX user identity for file system operations.
7497 7498 7499 7500 7501 7502 7503 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7497 class OntapFileSystemIdentity < Struct.new( :type, :unix_user, :windows_user) SENSITIVE = [] include Aws::Structure end |
#windows_user ⇒ Types::OntapWindowsFileSystemUser
Specifies the Windows user identity for file system operations.
7497 7498 7499 7500 7501 7502 7503 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7497 class OntapFileSystemIdentity < Struct.new( :type, :unix_user, :windows_user) SENSITIVE = [] include Aws::Structure end |