Interface DescribeAccountLimitsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<DescribeAccountLimitsResponse.Builder,DescribeAccountLimitsResponse>,SdkBuilder<DescribeAccountLimitsResponse.Builder,DescribeAccountLimitsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeAccountLimitsResponse
public static interface DescribeAccountLimitsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<DescribeAccountLimitsResponse.Builder,DescribeAccountLimitsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAccountLimitsResponse.BuilderaccountLimits(Collection<AccountLimit> accountLimits)An account limit structure that contain a list of CloudFormation account limits and their values.DescribeAccountLimitsResponse.BuilderaccountLimits(Consumer<AccountLimit.Builder>... accountLimits)An account limit structure that contain a list of CloudFormation account limits and their values.DescribeAccountLimitsResponse.BuilderaccountLimits(AccountLimit... accountLimits)An account limit structure that contain a list of CloudFormation account limits and their values.DescribeAccountLimitsResponse.BuildernextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of limits.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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
-
accountLimits
DescribeAccountLimitsResponse.Builder accountLimits(Collection<AccountLimit> accountLimits)
An account limit structure that contain a list of CloudFormation account limits and their values.
- Parameters:
accountLimits- An account limit structure that contain a list of CloudFormation account limits and their values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountLimits
DescribeAccountLimitsResponse.Builder accountLimits(AccountLimit... accountLimits)
An account limit structure that contain a list of CloudFormation account limits and their values.
- Parameters:
accountLimits- An account limit structure that contain a list of CloudFormation account limits and their values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountLimits
DescribeAccountLimitsResponse.Builder accountLimits(Consumer<AccountLimit.Builder>... accountLimits)
An account limit structure that contain a list of CloudFormation account limits and their values.
This is a convenience method that creates an instance of theAccountLimit.Builderavoiding the need to create one manually viaAccountLimit.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#accountLimits(List.) - Parameters:
accountLimits- a consumer that will call methods onAccountLimit.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#accountLimits(java.util.Collection)
-
nextToken
DescribeAccountLimitsResponse.Builder nextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
- Parameters:
nextToken- If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-