Class: Aws::FMS::Types::ListMemberAccountsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListMemberAccountsRequest
- Defined in:
- gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Specifies the number of member account IDs that you want Firewall Manager to return for this request.
-
#next_token ⇒ String
If you specify a value for
MaxResults
and you have more account IDs than the number that you specify forMaxResults
, Firewall Manager returns aNextToken
value in the response that allows you to list another group of IDs.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the number of member account IDs that you want Firewall
Manager to return for this request. If you have more IDs than the
number that you specify for MaxResults
, the response includes a
NextToken
value that you can use to get another batch of member
account IDs.
2265 2266 2267 2268 2269 2270 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 2265 class ListMemberAccountsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If you specify a value for MaxResults
and you have more account
IDs than the number that you specify for MaxResults
, Firewall
Manager returns a NextToken
value in the response that allows you
to list another group of IDs. For the second and subsequent
ListMemberAccountsRequest
requests, specify the value of
NextToken
from the previous response to get information about
another batch of member account IDs.
2265 2266 2267 2268 2269 2270 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 2265 class ListMemberAccountsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |