Interface InviteMembersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<InviteMembersResponse.Builder,InviteMembersResponse>,SdkBuilder<InviteMembersResponse.Builder,InviteMembersResponse>,SdkPojo,SdkResponse.Builder,SecurityHubResponse.Builder
- Enclosing class:
- InviteMembersResponse
public static interface InviteMembersResponse.Builder extends SecurityHubResponse.Builder, SdkPojo, CopyableBuilder<InviteMembersResponse.Builder,InviteMembersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InviteMembersResponse.BuilderunprocessedAccounts(Collection<Result> unprocessedAccounts)The list of Amazon Web Services accounts that could not be processed.InviteMembersResponse.BuilderunprocessedAccounts(Consumer<Result.Builder>... unprocessedAccounts)The list of Amazon Web Services accounts that could not be processed.InviteMembersResponse.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, 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
-
unprocessedAccounts
InviteMembersResponse.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
InviteMembersResponse.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
InviteMembersResponse.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)
-
-