Interface CreateAssociationBatchResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateAssociationBatchResponse.Builder,CreateAssociationBatchResponse>,SdkBuilder<CreateAssociationBatchResponse.Builder,CreateAssociationBatchResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- CreateAssociationBatchResponse
public static interface CreateAssociationBatchResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<CreateAssociationBatchResponse.Builder,CreateAssociationBatchResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateAssociationBatchResponse.Builderfailed(Collection<FailedCreateAssociation> failed)Information about the associations that failed.CreateAssociationBatchResponse.Builderfailed(Consumer<FailedCreateAssociation.Builder>... failed)Information about the associations that failed.CreateAssociationBatchResponse.Builderfailed(FailedCreateAssociation... failed)Information about the associations that failed.CreateAssociationBatchResponse.Buildersuccessful(Collection<AssociationDescription> successful)Information about the associations that succeeded.CreateAssociationBatchResponse.Buildersuccessful(Consumer<AssociationDescription.Builder>... successful)Information about the associations that succeeded.CreateAssociationBatchResponse.Buildersuccessful(AssociationDescription... successful)Information about the associations that succeeded.-
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.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
successful
CreateAssociationBatchResponse.Builder successful(Collection<AssociationDescription> successful)
Information about the associations that succeeded.
- Parameters:
successful- Information about the associations that succeeded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successful
CreateAssociationBatchResponse.Builder successful(AssociationDescription... successful)
Information about the associations that succeeded.
- Parameters:
successful- Information about the associations that succeeded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successful
CreateAssociationBatchResponse.Builder successful(Consumer<AssociationDescription.Builder>... successful)
Information about the associations that succeeded.
This is a convenience method that creates an instance of theAssociationDescription.Builderavoiding the need to create one manually viaAssociationDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#successful(List.) - Parameters:
successful- a consumer that will call methods onAssociationDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#successful(java.util.Collection)
-
failed
CreateAssociationBatchResponse.Builder failed(Collection<FailedCreateAssociation> failed)
Information about the associations that failed.
- Parameters:
failed- Information about the associations that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failed
CreateAssociationBatchResponse.Builder failed(FailedCreateAssociation... failed)
Information about the associations that failed.
- Parameters:
failed- Information about the associations that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failed
CreateAssociationBatchResponse.Builder failed(Consumer<FailedCreateAssociation.Builder>... failed)
Information about the associations that failed.
This is a convenience method that creates an instance of theFailedCreateAssociation.Builderavoiding the need to create one manually viaFailedCreateAssociation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#failed(List.) - Parameters:
failed- a consumer that will call methods onFailedCreateAssociation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#failed(java.util.Collection)
-
-