Interface GetArchitectureRecommendationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetArchitectureRecommendationsResponse.Builder,GetArchitectureRecommendationsResponse>,Route53RecoveryReadinessResponse.Builder,SdkBuilder<GetArchitectureRecommendationsResponse.Builder,GetArchitectureRecommendationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetArchitectureRecommendationsResponse
public static interface GetArchitectureRecommendationsResponse.Builder extends Route53RecoveryReadinessResponse.Builder, SdkPojo, CopyableBuilder<GetArchitectureRecommendationsResponse.Builder,GetArchitectureRecommendationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetArchitectureRecommendationsResponse.BuilderlastAuditTimestamp(Instant lastAuditTimestamp)The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.GetArchitectureRecommendationsResponse.BuildernextToken(String nextToken)The token that identifies which batch of results you want to see.GetArchitectureRecommendationsResponse.Builderrecommendations(Collection<Recommendation> recommendations)A list of the recommendations for the customer's application.GetArchitectureRecommendationsResponse.Builderrecommendations(Consumer<Recommendation.Builder>... recommendations)A list of the recommendations for the customer's application.GetArchitectureRecommendationsResponse.Builderrecommendations(Recommendation... recommendations)A list of the recommendations for the customer's application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53recoveryreadiness.model.Route53RecoveryReadinessResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
lastAuditTimestamp
GetArchitectureRecommendationsResponse.Builder lastAuditTimestamp(Instant lastAuditTimestamp)
The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.
- Parameters:
lastAuditTimestamp- The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
GetArchitectureRecommendationsResponse.Builder nextToken(String nextToken)
The token that identifies which batch of results you want to see.
- Parameters:
nextToken- The token that identifies which batch of results you want to see.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recommendations
GetArchitectureRecommendationsResponse.Builder recommendations(Collection<Recommendation> recommendations)
A list of the recommendations for the customer's application.
- Parameters:
recommendations- A list of the recommendations for the customer's application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recommendations
GetArchitectureRecommendationsResponse.Builder recommendations(Recommendation... recommendations)
A list of the recommendations for the customer's application.
- Parameters:
recommendations- A list of the recommendations for the customer's application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recommendations
GetArchitectureRecommendationsResponse.Builder recommendations(Consumer<Recommendation.Builder>... recommendations)
A list of the recommendations for the customer's application.
This is a convenience method that creates an instance of theRecommendation.Builderavoiding the need to create one manually viaRecommendation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#recommendations(List.) - Parameters:
recommendations- a consumer that will call methods onRecommendation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#recommendations(java.util.Collection)
-
-