Interface DeleteInvitationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DeleteInvitationsResponse.Builder,DeleteInvitationsResponse>,SdkBuilder<DeleteInvitationsResponse.Builder,DeleteInvitationsResponse>,SdkPojo,SdkResponse.Builder,SecurityHubResponse.Builder
- Enclosing class:
- DeleteInvitationsResponse
public static interface DeleteInvitationsResponse.Builder extends SecurityHubResponse.Builder, SdkPojo, CopyableBuilder<DeleteInvitationsResponse.Builder,DeleteInvitationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteInvitationsResponse.BuilderunprocessedAccounts(Collection<Result> unprocessedAccounts)The list of Amazon Web Services accounts for which the invitations were not deleted.DeleteInvitationsResponse.BuilderunprocessedAccounts(Consumer<Result.Builder>... unprocessedAccounts)The list of Amazon Web Services accounts for which the invitations were not deleted.DeleteInvitationsResponse.BuilderunprocessedAccounts(Result... unprocessedAccounts)The list of Amazon Web Services accounts for which the invitations were not deleted.-
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
-
unprocessedAccounts
DeleteInvitationsResponse.Builder unprocessedAccounts(Collection<Result> unprocessedAccounts)
The list of Amazon Web Services accounts for which the invitations were not deleted. For each account, the list includes the account ID and the email address.
- Parameters:
unprocessedAccounts- The list of Amazon Web Services accounts for which the invitations were not deleted. 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
DeleteInvitationsResponse.Builder unprocessedAccounts(Result... unprocessedAccounts)
The list of Amazon Web Services accounts for which the invitations were not deleted. For each account, the list includes the account ID and the email address.
- Parameters:
unprocessedAccounts- The list of Amazon Web Services accounts for which the invitations were not deleted. 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
DeleteInvitationsResponse.Builder unprocessedAccounts(Consumer<Result.Builder>... unprocessedAccounts)
The list of Amazon Web Services accounts for which the invitations were not deleted. 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)
-
-