Interface TemplateParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TemplateParameter.Builder,TemplateParameter>,SdkBuilder<TemplateParameter.Builder,TemplateParameter>,SdkPojo
- Enclosing class:
- TemplateParameter
public static interface TemplateParameter.Builder extends SdkPojo, CopyableBuilder<TemplateParameter.Builder,TemplateParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TemplateParameter.BuilderdefaultValue(String defaultValue)The default value associated with the parameter.TemplateParameter.Builderdescription(String description)User defined description associated with the parameter.TemplateParameter.BuildernoEcho(Boolean noEcho)Flag indicating whether the parameter should be displayed as plain text in logs and UIs.TemplateParameter.BuilderparameterKey(String parameterKey)The name 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
parameterKey
TemplateParameter.Builder parameterKey(String parameterKey)
The name associated with the parameter.
- Parameters:
parameterKey- The name associated with the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
TemplateParameter.Builder defaultValue(String defaultValue)
The default value associated with the parameter.
- Parameters:
defaultValue- The default value associated with the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noEcho
TemplateParameter.Builder noEcho(Boolean noEcho)
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
- Parameters:
noEcho- Flag indicating whether the parameter should be displayed as plain text in logs and UIs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
TemplateParameter.Builder description(String description)
User defined description associated with the parameter.
- Parameters:
description- User defined description associated with the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-