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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-billingconductor/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)


73
74
75
76
77
78
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 73

class AccountGrouping < Struct.new(
  :linked_account_ids,
  :auto_associate)
  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>)


73
74
75
76
77
78
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 73

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