Class: Aws::SecurityHub::Types::AccountDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AccountDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AccountDetails data as a hash:
{
account_id: "AccountId", # required
email: "NonEmptyString",
}
The details of an Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The ID of an Amazon Web Services account.
-
#email ⇒ String
The email of an Amazon Web Services account.
Instance Attribute Details
#account_id ⇒ String
The ID of an Amazon Web Services account.
113 114 115 116 117 118 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 113 class AccountDetails < Struct.new( :account_id, :email) SENSITIVE = [] include Aws::Structure end |
#email ⇒ String
The email of an Amazon Web Services account.
113 114 115 116 117 118 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 113 class AccountDetails < Struct.new( :account_id, :email) SENSITIVE = [] include Aws::Structure end |