Class: Aws::FSx::Types::OntapFileSystemIdentity

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#typeString

Specifies the FSx for ONTAP user identity type. Valid values are UNIX and WINDOWS.

Returns:

  • (String)


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_userTypes::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_userTypes::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