Interface EstimateTemplateCostRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudFormationRequest.Builder,CopyableBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>,SdkBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- EstimateTemplateCostRequest
public static interface EstimateTemplateCostRequest.Builder extends CloudFormationRequest.Builder, SdkPojo, CopyableBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EstimateTemplateCostRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)EstimateTemplateCostRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)EstimateTemplateCostRequest.Builderparameters(Collection<Parameter> parameters)A list ofParameterstructures that specify input parameters.EstimateTemplateCostRequest.Builderparameters(Consumer<Parameter.Builder>... parameters)A list ofParameterstructures that specify input parameters.EstimateTemplateCostRequest.Builderparameters(Parameter... parameters)A list ofParameterstructures that specify input parameters.EstimateTemplateCostRequest.BuildertemplateBody(String templateBody)Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.EstimateTemplateCostRequest.BuildertemplateURL(String templateURL)The URL of a file containing the template body.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
templateBody
EstimateTemplateCostRequest.Builder templateBody(String templateBody)
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
Conditional: You must pass
TemplateBodyorTemplateURL. If both are passed, onlyTemplateBodyis used.- Parameters:
templateBody- Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.Conditional: You must pass
TemplateBodyorTemplateURL. If both are passed, onlyTemplateBodyis used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateURL
EstimateTemplateCostRequest.Builder templateURL(String templateURL)
The URL of a file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start with
https://.Conditional: You must pass
TemplateURLorTemplateBody. If both are passed, onlyTemplateBodyis used.- Parameters:
templateURL- The URL of a file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start withhttps://.Conditional: You must pass
TemplateURLorTemplateBody. If both are passed, onlyTemplateBodyis used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
EstimateTemplateCostRequest.Builder parameters(Collection<Parameter> parameters)
A list of
Parameterstructures that specify input parameters.- Parameters:
parameters- A list ofParameterstructures that specify input parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
EstimateTemplateCostRequest.Builder parameters(Parameter... parameters)
A list of
Parameterstructures that specify input parameters.- Parameters:
parameters- A list ofParameterstructures that specify input parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
EstimateTemplateCostRequest.Builder parameters(Consumer<Parameter.Builder>... parameters)
A list of
This is a convenience method that creates an instance of theParameterstructures that specify input parameters.Parameter.Builderavoiding the need to create one manually viaParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameters(List.) - Parameters:
parameters- a consumer that will call methods onParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameters(java.util.Collection)
-
overrideConfiguration
EstimateTemplateCostRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
EstimateTemplateCostRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-