Class: Aws::Organizations::Types::ListAccountsForParentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::ListAccountsForParentResponse
- Defined in:
- gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accounts ⇒ Array<Types::Account>
A list of the accounts in the specified root or OU.
-
#next_token ⇒ String
If present, indicates that more output is available than is included in the current response.
Instance Attribute Details
#accounts ⇒ Array<Types::Account>
A list of the accounts in the specified root or OU.
2726 2727 2728 2729 2730 2731 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2726 class ListAccountsForParentResponse < Struct.new( :accounts, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If present, indicates that more output is available than is included
in the current response. Use this value in the NextToken
request
parameter in a subsequent call to the operation to get the next part
of the output. You should repeat this until the NextToken
response
element comes back as null
.
2726 2727 2728 2729 2730 2731 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2726 class ListAccountsForParentResponse < Struct.new( :accounts, :next_token) SENSITIVE = [] include Aws::Structure end |