Interface ListSopRecommendationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSopRecommendationsResponse.Builder,ListSopRecommendationsResponse>,ResiliencehubResponse.Builder,SdkBuilder<ListSopRecommendationsResponse.Builder,ListSopRecommendationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSopRecommendationsResponse
public static interface ListSopRecommendationsResponse.Builder extends ResiliencehubResponse.Builder, SdkPojo, CopyableBuilder<ListSopRecommendationsResponse.Builder,ListSopRecommendationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSopRecommendationsResponse.BuildernextToken(String nextToken)Token for the next set of results, or null if there are no more results.ListSopRecommendationsResponse.BuildersopRecommendations(Collection<SopRecommendation> sopRecommendations)The standard operating procedure (SOP) recommendations for the Resilience Hub applications.ListSopRecommendationsResponse.BuildersopRecommendations(Consumer<SopRecommendation.Builder>... sopRecommendations)The standard operating procedure (SOP) recommendations for the Resilience Hub applications.ListSopRecommendationsResponse.BuildersopRecommendations(SopRecommendation... sopRecommendations)The standard operating procedure (SOP) recommendations for the Resilience Hub applications.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.resiliencehub.model.ResiliencehubResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
nextToken
ListSopRecommendationsResponse.Builder nextToken(String nextToken)
Token for the next set of results, or null if there are no more results.
- Parameters:
nextToken- Token for the next set of results, or null if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sopRecommendations
ListSopRecommendationsResponse.Builder sopRecommendations(Collection<SopRecommendation> sopRecommendations)
The standard operating procedure (SOP) recommendations for the Resilience Hub applications.
- Parameters:
sopRecommendations- The standard operating procedure (SOP) recommendations for the Resilience Hub applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sopRecommendations
ListSopRecommendationsResponse.Builder sopRecommendations(SopRecommendation... sopRecommendations)
The standard operating procedure (SOP) recommendations for the Resilience Hub applications.
- Parameters:
sopRecommendations- The standard operating procedure (SOP) recommendations for the Resilience Hub applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sopRecommendations
ListSopRecommendationsResponse.Builder sopRecommendations(Consumer<SopRecommendation.Builder>... sopRecommendations)
The standard operating procedure (SOP) recommendations for the Resilience Hub applications.
This is a convenience method that creates an instance of theSopRecommendation.Builderavoiding the need to create one manually viaSopRecommendation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sopRecommendations(List.) - Parameters:
sopRecommendations- a consumer that will call methods onSopRecommendation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sopRecommendations(java.util.Collection)
-
-