Class: Aws::Detective::Types::ListMembersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Detective::Types::ListMembersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-detective/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#graph_arn ⇒ String
The ARN of the behavior graph for which to retrieve the list of member accounts.
-
#max_results ⇒ Integer
The maximum number of member accounts to include in the response.
-
#next_token ⇒ String
For requests to retrieve the next page of member account results, the pagination token that was returned with the previous page of results.
Instance Attribute Details
#graph_arn ⇒ String
The ARN of the behavior graph for which to retrieve the list of member accounts.
1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/aws-sdk-detective/types.rb', line 1129 class ListMembersRequest < Struct.new( :graph_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of member accounts to include in the response. The total must be less than the overall limit on the number of results to return, which is currently 200.
1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/aws-sdk-detective/types.rb', line 1129 class ListMembersRequest < Struct.new( :graph_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
For requests to retrieve the next page of member account results, the pagination token that was returned with the previous page of results. The initial request does not include a pagination token.
1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/aws-sdk-detective/types.rb', line 1129 class ListMembersRequest < Struct.new( :graph_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |