Interface GetMembersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetMembersResponse.Builder,GetMembersResponse>,SdkBuilder<GetMembersResponse.Builder,GetMembersResponse>,SdkPojo,SdkResponse.Builder,SecurityHubResponse.Builder
- Enclosing class:
- GetMembersResponse
public static interface GetMembersResponse.Builder extends SecurityHubResponse.Builder, SdkPojo, CopyableBuilder<GetMembersResponse.Builder,GetMembersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetMembersResponse.Buildermembers(Collection<Member> members)The list of details about the Security Hub member accounts.GetMembersResponse.Buildermembers(Consumer<Member.Builder>... members)The list of details about the Security Hub member accounts.GetMembersResponse.Buildermembers(Member... members)The list of details about the Security Hub member accounts.GetMembersResponse.BuilderunprocessedAccounts(Collection<Result> unprocessedAccounts)The list of Amazon Web Services accounts that could not be processed.GetMembersResponse.BuilderunprocessedAccounts(Consumer<Result.Builder>... unprocessedAccounts)The list of Amazon Web Services accounts that could not be processed.GetMembersResponse.BuilderunprocessedAccounts(Result... unprocessedAccounts)The list of Amazon Web Services accounts that could not be processed.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.securityhub.model.SecurityHubResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
members
GetMembersResponse.Builder members(Collection<Member> members)
The list of details about the Security Hub member accounts.
- Parameters:
members- The list of details about the Security Hub member accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
GetMembersResponse.Builder members(Member... members)
The list of details about the Security Hub member accounts.
- Parameters:
members- The list of details about the Security Hub member accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
GetMembersResponse.Builder members(Consumer<Member.Builder>... members)
The list of details about the Security Hub member accounts.
This is a convenience method that creates an instance of theMember.Builderavoiding the need to create one manually viaMember.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#members(List.) - Parameters:
members- a consumer that will call methods onMember.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#members(java.util.Collection)
-
unprocessedAccounts
GetMembersResponse.Builder unprocessedAccounts(Collection<Result> unprocessedAccounts)
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
- Parameters:
unprocessedAccounts- The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedAccounts
GetMembersResponse.Builder unprocessedAccounts(Result... unprocessedAccounts)
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
- Parameters:
unprocessedAccounts- The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedAccounts
GetMembersResponse.Builder unprocessedAccounts(Consumer<Result.Builder>... unprocessedAccounts)
The list of Amazon Web Services accounts that could not be processed. For each account, the list includes the account ID and the email address.
This is a convenience method that creates an instance of theResult.Builderavoiding the need to create one manually viaResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedAccounts(List.) - Parameters:
unprocessedAccounts- a consumer that will call methods onResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedAccounts(java.util.Collection)
-
-