Class: Aws::NetworkSecurityManager::Types::AccountReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkSecurityManager::Types::AccountReference
- Defined in:
- gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb
Overview
A reference to an AWS account, with optional display metadata.
Constant Summary collapse
- SENSITIVE =
[:name, :email]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The AWS account ID.
-
#email ⇒ String
The email address associated with the account.
-
#name ⇒ String
The display name of the account.
Instance Attribute Details
#account_id ⇒ String
The AWS account ID.
79 80 81 82 83 84 85 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 79 class AccountReference < Struct.new( :account_id, :name, :email) SENSITIVE = [:name, :email] include Aws::Structure end |
#email ⇒ String
The email address associated with the account.
79 80 81 82 83 84 85 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 79 class AccountReference < Struct.new( :account_id, :name, :email) SENSITIVE = [:name, :email] include Aws::Structure end |
#name ⇒ String
The display name of the account.
79 80 81 82 83 84 85 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 79 class AccountReference < Struct.new( :account_id, :name, :email) SENSITIVE = [:name, :email] include Aws::Structure end |