Interface AssociationOverview.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssociationOverview.Builder,AssociationOverview>,SdkBuilder<AssociationOverview.Builder,AssociationOverview>,SdkPojo
- Enclosing class:
- AssociationOverview
public static interface AssociationOverview.Builder extends SdkPojo, CopyableBuilder<AssociationOverview.Builder,AssociationOverview>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssociationOverview.BuilderassociationStatusAggregatedCount(Map<String,Integer> associationStatusAggregatedCount)Returns the number of targets for the association status.AssociationOverview.BuilderdetailedStatus(String detailedStatus)A detailed status of the association.AssociationOverview.Builderstatus(String status)The status of the association.-
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
-
-
-
-
Method Detail
-
status
AssociationOverview.Builder status(String status)
The status of the association. Status can be: Pending, Success, or Failed.
- Parameters:
status- The status of the association. Status can be: Pending, Success, or Failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
detailedStatus
AssociationOverview.Builder detailedStatus(String detailedStatus)
A detailed status of the association.
- Parameters:
detailedStatus- A detailed status of the association.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associationStatusAggregatedCount
AssociationOverview.Builder associationStatusAggregatedCount(Map<String,Integer> associationStatusAggregatedCount)
Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.
- Parameters:
associationStatusAggregatedCount- Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-