Class: Aws::BillingConductor::Types::AccountGrouping

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-billingconductor/types.rb

Overview

The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated billing family.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_associateBoolean

Specifies if this billing group will automatically associate newly added Amazon Web Services accounts that join your consolidated billing family.

Returns:

  • (Boolean)


79
80
81
82
83
84
85
# File 'lib/aws-sdk-billingconductor/types.rb', line 79

class AccountGrouping < Struct.new(
  :linked_account_ids,
  :auto_associate,
  :responsibility_transfer_arn)
  SENSITIVE = []
  include Aws::Structure
end

#linked_account_idsArray<String>

The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.

Returns:

  • (Array<String>)


79
80
81
82
83
84
85
# File 'lib/aws-sdk-billingconductor/types.rb', line 79

class AccountGrouping < Struct.new(
  :linked_account_ids,
  :auto_associate,
  :responsibility_transfer_arn)
  SENSITIVE = []
  include Aws::Structure
end

#responsibility_transfer_arnString

The Amazon Resource Name (ARN) that identifies the transfer relationship owned by the Bill Transfer account (caller account). When specified, the PrimaryAccountId is no longer required.

Returns:

  • (String)


79
80
81
82
83
84
85
# File 'lib/aws-sdk-billingconductor/types.rb', line 79

class AccountGrouping < Struct.new(
  :linked_account_ids,
  :auto_associate,
  :responsibility_transfer_arn)
  SENSITIVE = []
  include Aws::Structure
end