Class: Aws::Account::Types::AlternateContact
- Inherits:
-
Struct
- Object
- Struct
- Aws::Account::Types::AlternateContact
- Includes:
- Structure
- Defined in:
- 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
-
#alternate_contact_type ⇒ String
The type of alternate contact.
-
#email_address ⇒ String
The email address associated with this alternate contact.
-
#name ⇒ String
The name associated with this alternate contact.
-
#phone_number ⇒ String
The phone number associated with this alternate contact.
-
#title ⇒ String
The title associated with this alternate contact.
Instance Attribute Details
#alternate_contact_type ⇒ String
The type of alternate contact.
112 113 114 115 116 117 118 119 120 |
# File '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_address ⇒ String
The email address associated with this alternate contact.
112 113 114 115 116 117 118 119 120 |
# File '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 |
#name ⇒ String
The name associated with this alternate contact.
112 113 114 115 116 117 118 119 120 |
# File '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_number ⇒ String
The phone number associated with this alternate contact.
112 113 114 115 116 117 118 119 120 |
# File '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 |
#title ⇒ String
The title associated with this alternate contact.
112 113 114 115 116 117 118 119 120 |
# File '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 |