Class: Aws::Organizations::Types::ListAccountsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::ListAccountsResponse
- 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 objects in the organization.
-
#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 objects in the organization.
The Status parameter in the API response will be retired on
September 9, 2026. Although both the account State and account
Status parameters are currently available in the Organizations
APIs (DescribeAccount, ListAccounts, ListAccountsForParent),
we recommend that you update your scripts or other code to use the
State parameter instead of Status before September 9, 2026.
3106 3107 3108 3109 3110 3111 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 3106 class ListAccountsResponse < 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.
3106 3107 3108 3109 3110 3111 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 3106 class ListAccountsResponse < Struct.new( :accounts, :next_token) SENSITIVE = [] include Aws::Structure end |