Class: Aws::Finspace::Types::SuperuserParameters

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-finspace/types.rb

Overview

Configuration information for the superuser.

Constant Summary collapse

SENSITIVE =
[:email_address]

Instance Attribute Summary collapse

Instance Attribute Details

#email_addressString

The email address of the superuser.

Returns:

  • (String)


4660
4661
4662
4663
4664
4665
4666
# File 'lib/aws-sdk-finspace/types.rb', line 4660

class SuperuserParameters < Struct.new(
  :email_address,
  :first_name,
  :last_name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end

#first_nameString

The first name of the superuser.

Returns:

  • (String)


4660
4661
4662
4663
4664
4665
4666
# File 'lib/aws-sdk-finspace/types.rb', line 4660

class SuperuserParameters < Struct.new(
  :email_address,
  :first_name,
  :last_name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end

#last_nameString

The last name of the superuser.

Returns:

  • (String)


4660
4661
4662
4663
4664
4665
4666
# File 'lib/aws-sdk-finspace/types.rb', line 4660

class SuperuserParameters < Struct.new(
  :email_address,
  :first_name,
  :last_name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end