CopyableBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>
, SdkBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>
public static interface EstimateTemplateCostRequest.Builder extends CopyableBuilder<EstimateTemplateCostRequest.Builder,EstimateTemplateCostRequest>
Modifier and Type | Method | Description |
---|---|---|
EstimateTemplateCostRequest.Builder |
parameters(Collection<Parameter> parameters) |
A list of
Parameter structures that specify input parameters. |
EstimateTemplateCostRequest.Builder |
parameters(Parameter... parameters) |
A list of
Parameter structures that specify input parameters. |
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.
|
EstimateTemplateCostRequest.Builder |
templateURL(String templateURL) |
Location of file containing the template body.
|
copy
apply, build
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. (For more information, go to Template Anatomy in the AWS CloudFormation User Guide.)
Conditional: You must pass TemplateBody
or TemplateURL
. If both are passed, only
TemplateBody
is used.
templateBody
- Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200
bytes. (For more information, go to Template
Anatomy in the AWS CloudFormation User Guide.)
Conditional: You must pass TemplateBody
or TemplateURL
. If both are passed,
only TemplateBody
is used.
EstimateTemplateCostRequest.Builder templateURL(String templateURL)
Location of file containing the template body. The URL must point to a template that is located in an Amazon S3 bucket. For more information, go to Template Anatomy in the AWS CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed, only
TemplateBody
is used.
templateURL
- Location of file containing the template body. The URL must point to a template that is located in an
Amazon S3 bucket. For more information, go to Template
Anatomy in the AWS CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed,
only TemplateBody
is used.
EstimateTemplateCostRequest.Builder parameters(Collection<Parameter> parameters)
A list of Parameter
structures that specify input parameters.
parameters
- A list of Parameter
structures that specify input parameters.EstimateTemplateCostRequest.Builder parameters(Parameter... parameters)
A list of Parameter
structures that specify input parameters.
NOTE: This method appends the values to the existing list (if any). Use
#setParameters(java.util.Collection)
or #withParameters(java.util.Collection)
if you want to
override the existing values.
parameters
- A list of Parameter
structures that specify input parameters.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.