Class: Aws::DataZone::Types::AccountInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

The account information within an account pool.

Constant Summary collapse

SENSITIVE =
[:aws_account_name]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_account_idString

The account ID.

Returns:

  • (String)


295
296
297
298
299
300
301
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 295

class AccountInfo < Struct.new(
  :aws_account_id,
  :aws_account_name,
  :supported_regions)
  SENSITIVE = [:aws_account_name]
  include Aws::Structure
end

#aws_account_nameString

The account name.

Returns:

  • (String)


295
296
297
298
299
300
301
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 295

class AccountInfo < Struct.new(
  :aws_account_id,
  :aws_account_name,
  :supported_regions)
  SENSITIVE = [:aws_account_name]
  include Aws::Structure
end

#supported_regionsArray<String>

The regions supported for an account within an account pool.

Returns:

  • (Array<String>)


295
296
297
298
299
300
301
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 295

class AccountInfo < Struct.new(
  :aws_account_id,
  :aws_account_name,
  :supported_regions)
  SENSITIVE = [:aws_account_name]
  include Aws::Structure
end