Class: Aws::Account::Types::AlternateContact

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-account/lib/aws-sdk-account/types.rb

Overview

A structure that contains the details of an alternate contact associated with an Amazon Web Services account

Constant Summary collapse

SENSITIVE =
[:email_address, :name, :phone_number, :title]

Instance Attribute Summary collapse

Instance Attribute Details

#alternate_contact_typeString

The type of alternate contact.

Returns:

  • (String)


112
113
114
115
116
117
118
119
120
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 112

class AlternateContact < Struct.new(
  :alternate_contact_type,
  :email_address,
  :name,
  :phone_number,
  :title)
  SENSITIVE = [:email_address, :name, :phone_number, :title]
  include Aws::Structure
end

#email_addressString

The email address associated with this alternate contact.

Returns:

  • (String)


112
113
114
115
116
117
118
119
120
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 112

class AlternateContact < Struct.new(
  :alternate_contact_type,
  :email_address,
  :name,
  :phone_number,
  :title)
  SENSITIVE = [:email_address, :name, :phone_number, :title]
  include Aws::Structure
end

#nameString

The name associated with this alternate contact.

Returns:

  • (String)


112
113
114
115
116
117
118
119
120
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 112

class AlternateContact < Struct.new(
  :alternate_contact_type,
  :email_address,
  :name,
  :phone_number,
  :title)
  SENSITIVE = [:email_address, :name, :phone_number, :title]
  include Aws::Structure
end

#phone_numberString

The phone number associated with this alternate contact.

Returns:

  • (String)


112
113
114
115
116
117
118
119
120
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 112

class AlternateContact < Struct.new(
  :alternate_contact_type,
  :email_address,
  :name,
  :phone_number,
  :title)
  SENSITIVE = [:email_address, :name, :phone_number, :title]
  include Aws::Structure
end

#titleString

The title associated with this alternate contact.

Returns:

  • (String)


112
113
114
115
116
117
118
119
120
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 112

class AlternateContact < Struct.new(
  :alternate_contact_type,
  :email_address,
  :name,
  :phone_number,
  :title)
  SENSITIVE = [:email_address, :name, :phone_number, :title]
  include Aws::Structure
end