Class: Aws::Detective::Types::Account
- Inherits:
-
Struct
- Object
- Struct
- Aws::Detective::Types::Account
- Defined in:
- gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb
Overview
Note:
When making an API call, you may pass Account data as a hash:
{
account_id: "AccountId", # required
email_address: "EmailAddress", # required
}
An Amazon Web Services account that is the administrator account of or a member of a behavior graph.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account identifier of the Amazon Web Services account.
-
#email_address ⇒ String
The Amazon Web Services account root user email address for the Amazon Web Services account.
Instance Attribute Details
#account_id ⇒ String
The account identifier of the Amazon Web Services account.
57 58 59 60 61 62 |
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 57 class Account < Struct.new( :account_id, :email_address) SENSITIVE = [] include Aws::Structure end |
#email_address ⇒ String
The Amazon Web Services account root user email address for the Amazon Web Services account.
57 58 59 60 61 62 |
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 57 class Account < Struct.new( :account_id, :email_address) SENSITIVE = [] include Aws::Structure end |