Class: Aws::NetworkSecurityManager::Types::AccountReference

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#account_idString

The AWS account ID.

Returns:

  • (String)


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

#emailString

The email address associated with the account.

Returns:

  • (String)


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

#nameString

The display name of the account.

Returns:

  • (String)


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