Interface ListMembersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListMembersResponse.Builder,ListMembersResponse>,DetectiveResponse.Builder,SdkBuilder<ListMembersResponse.Builder,ListMembersResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListMembersResponse
public static interface ListMembersResponse.Builder extends DetectiveResponse.Builder, SdkPojo, CopyableBuilder<ListMembersResponse.Builder,ListMembersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListMembersResponse.BuildermemberDetails(Collection<MemberDetail> memberDetails)The list of member accounts in the behavior graph.ListMembersResponse.BuildermemberDetails(Consumer<MemberDetail.Builder>... memberDetails)The list of member accounts in the behavior graph.ListMembersResponse.BuildermemberDetails(MemberDetail... memberDetails)The list of member accounts in the behavior graph.ListMembersResponse.BuildernextToken(String nextToken)If there are more member accounts remaining in the results, then use this pagination token to request the next page of member accounts.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.detective.model.DetectiveResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
memberDetails
ListMembersResponse.Builder memberDetails(Collection<MemberDetail> memberDetails)
The list of member accounts in the behavior graph.
For invited accounts, the results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.
For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.
- Parameters:
memberDetails- The list of member accounts in the behavior graph.For invited accounts, the results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.
For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberDetails
ListMembersResponse.Builder memberDetails(MemberDetail... memberDetails)
The list of member accounts in the behavior graph.
For invited accounts, the results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.
For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.
- Parameters:
memberDetails- The list of member accounts in the behavior graph.For invited accounts, the results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.
For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memberDetails
ListMembersResponse.Builder memberDetails(Consumer<MemberDetail.Builder>... memberDetails)
The list of member accounts in the behavior graph.
For invited accounts, the results include member accounts that did not pass verification and member accounts that have not yet accepted the invitation to the behavior graph. The results do not include member accounts that were removed from the behavior graph.
For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.
This is a convenience method that creates an instance of theMemberDetail.Builderavoiding the need to create one manually viaMemberDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#memberDetails(List.) - Parameters:
memberDetails- a consumer that will call methods onMemberDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#memberDetails(java.util.Collection)
-
nextToken
ListMembersResponse.Builder nextToken(String nextToken)
If there are more member accounts remaining in the results, then use this pagination token to request the next page of member accounts.
- Parameters:
nextToken- If there are more member accounts remaining in the results, then use this pagination token to request the next page of member accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-