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)


290
291
292
293
294
295
296
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 290

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)


290
291
292
293
294
295
296
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 290

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>)


290
291
292
293
294
295
296
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 290

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