Interface ParameterValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParameterValue.Builder,ParameterValue>,SdkBuilder<ParameterValue.Builder,ParameterValue>,SdkPojo
- Enclosing class:
- ParameterValue
public static interface ParameterValue.Builder extends SdkPojo, CopyableBuilder<ParameterValue.Builder,ParameterValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParameterValue.Buildername(String name)The key associated with the parameter.ParameterValue.Buildervalue(String value)The input value associated with the parameter.-
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, sdkFields
-
-
-
-
Method Detail
-
name
ParameterValue.Builder name(String name)
The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
- Parameters:
name- The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ParameterValue.Builder value(String value)
The input value associated with the parameter.
- Parameters:
value- The input value associated with the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-