Interface DescribeScalingPoliciesResponse.Builder
-
- All Superinterfaces:
ApplicationAutoScalingResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<DescribeScalingPoliciesResponse.Builder,DescribeScalingPoliciesResponse>,SdkBuilder<DescribeScalingPoliciesResponse.Builder,DescribeScalingPoliciesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeScalingPoliciesResponse
public static interface DescribeScalingPoliciesResponse.Builder extends ApplicationAutoScalingResponse.Builder, SdkPojo, CopyableBuilder<DescribeScalingPoliciesResponse.Builder,DescribeScalingPoliciesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeScalingPoliciesResponse.BuildernextToken(String nextToken)The token required to get the next set of results.DescribeScalingPoliciesResponse.BuilderscalingPolicies(Collection<ScalingPolicy> scalingPolicies)Information about the scaling policies.DescribeScalingPoliciesResponse.BuilderscalingPolicies(Consumer<ScalingPolicy.Builder>... scalingPolicies)Information about the scaling policies.DescribeScalingPoliciesResponse.BuilderscalingPolicies(ScalingPolicy... scalingPolicies)Information about the scaling policies.-
Methods inherited from interface software.amazon.awssdk.services.applicationautoscaling.model.ApplicationAutoScalingResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
scalingPolicies
DescribeScalingPoliciesResponse.Builder scalingPolicies(Collection<ScalingPolicy> scalingPolicies)
Information about the scaling policies.
- Parameters:
scalingPolicies- Information about the scaling policies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scalingPolicies
DescribeScalingPoliciesResponse.Builder scalingPolicies(ScalingPolicy... scalingPolicies)
Information about the scaling policies.
- Parameters:
scalingPolicies- Information about the scaling policies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scalingPolicies
DescribeScalingPoliciesResponse.Builder scalingPolicies(Consumer<ScalingPolicy.Builder>... scalingPolicies)
Information about the scaling policies.
This is a convenience method that creates an instance of theScalingPolicy.Builderavoiding the need to create one manually viaScalingPolicy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#scalingPolicies(List.) - Parameters:
scalingPolicies- a consumer that will call methods onScalingPolicy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#scalingPolicies(java.util.Collection)
-
nextToken
DescribeScalingPoliciesResponse.Builder nextToken(String nextToken)
The token required to get the next set of results. This value is
nullif there are no more results to return.- Parameters:
nextToken- The token required to get the next set of results. This value isnullif there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-