Interface DescribeRecommendationLimitationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeRecommendationLimitationsResponse.Builder,DescribeRecommendationLimitationsResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<DescribeRecommendationLimitationsResponse.Builder,DescribeRecommendationLimitationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeRecommendationLimitationsResponse
@Mutable @NotThreadSafe public static interface DescribeRecommendationLimitationsResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<DescribeRecommendationLimitationsResponse.Builder,DescribeRecommendationLimitationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeRecommendationLimitationsResponse.Builderlimitations(Collection<Limitation> limitations)The list of limitations for recommendations of target Amazon Web Services engines.DescribeRecommendationLimitationsResponse.Builderlimitations(Consumer<Limitation.Builder>... limitations)The list of limitations for recommendations of target Amazon Web Services engines.DescribeRecommendationLimitationsResponse.Builderlimitations(Limitation... limitations)The list of limitations for recommendations of target Amazon Web Services engines.DescribeRecommendationLimitationsResponse.BuildernextToken(String nextToken)The unique pagination token returned for you to pass to a subsequent request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databasemigration.model.DatabaseMigrationResponse.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
-
nextToken
DescribeRecommendationLimitationsResponse.Builder nextToken(String nextToken)
The unique pagination token returned for you to pass to a subsequent request. Fleet Advisor returns this token when the number of records in the response is greater than the
MaxRecordsvalue. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.- Parameters:
nextToken- The unique pagination token returned for you to pass to a subsequent request. Fleet Advisor returns this token when the number of records in the response is greater than theMaxRecordsvalue. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limitations
DescribeRecommendationLimitationsResponse.Builder limitations(Collection<Limitation> limitations)
The list of limitations for recommendations of target Amazon Web Services engines.
- Parameters:
limitations- The list of limitations for recommendations of target Amazon Web Services engines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limitations
DescribeRecommendationLimitationsResponse.Builder limitations(Limitation... limitations)
The list of limitations for recommendations of target Amazon Web Services engines.
- Parameters:
limitations- The list of limitations for recommendations of target Amazon Web Services engines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limitations
DescribeRecommendationLimitationsResponse.Builder limitations(Consumer<Limitation.Builder>... limitations)
The list of limitations for recommendations of target Amazon Web Services engines.
This is a convenience method that creates an instance of theLimitation.Builderavoiding the need to create one manually viaLimitation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#limitations(List.) - Parameters:
limitations- a consumer that will call methods onLimitation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#limitations(java.util.Collection)
-
-