Class: Aws::AuditManager::Types::AWSAccount
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::AWSAccount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
The wrapper of Amazon Web Services account details, such as account ID or email address.
Constant Summary collapse
- SENSITIVE =
[:email_address]
Instance Attribute Summary collapse
-
#email_address ⇒ String
The email address that’s associated with the Amazon Web Services account.
-
#id ⇒ String
The identifier for the Amazon Web Services account.
-
#name ⇒ String
The name of the Amazon Web Services account.
Instance Attribute Details
#email_address ⇒ String
The email address that’s associated with the Amazon Web Services account.
31 32 33 34 35 36 37 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 31 class AWSAccount < Struct.new( :id, :email_address, :name) SENSITIVE = [:email_address] include Aws::Structure end |
#id ⇒ String
The identifier for the Amazon Web Services account.
31 32 33 34 35 36 37 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 31 class AWSAccount < Struct.new( :id, :email_address, :name) SENSITIVE = [:email_address] include Aws::Structure end |
#name ⇒ String
The name of the Amazon Web Services account.
31 32 33 34 35 36 37 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 31 class AWSAccount < Struct.new( :id, :email_address, :name) SENSITIVE = [:email_address] include Aws::Structure end |