Interface ComponentParameterDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComponentParameterDetail.Builder,ComponentParameterDetail>,SdkBuilder<ComponentParameterDetail.Builder,ComponentParameterDetail>,SdkPojo
- Enclosing class:
- ComponentParameterDetail
public static interface ComponentParameterDetail.Builder extends SdkPojo, CopyableBuilder<ComponentParameterDetail.Builder,ComponentParameterDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentParameterDetail.BuilderdefaultValue(String... defaultValue)The default value of this parameter if no input is provided.ComponentParameterDetail.BuilderdefaultValue(Collection<String> defaultValue)The default value of this parameter if no input is provided.ComponentParameterDetail.Builderdescription(String description)Describes this parameter.ComponentParameterDetail.Buildername(String name)The name of this input parameter.ComponentParameterDetail.Buildertype(String type)The type of input this parameter provides.-
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
ComponentParameterDetail.Builder name(String name)
The name of this input parameter.
- Parameters:
name- The name of this input parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
ComponentParameterDetail.Builder type(String type)
The type of input this parameter provides. The currently supported value is "string".
- Parameters:
type- The type of input this parameter provides. The currently supported value is "string".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
ComponentParameterDetail.Builder defaultValue(Collection<String> defaultValue)
The default value of this parameter if no input is provided.
- Parameters:
defaultValue- The default value of this parameter if no input is provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
ComponentParameterDetail.Builder defaultValue(String... defaultValue)
The default value of this parameter if no input is provided.
- Parameters:
defaultValue- The default value of this parameter if no input is provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ComponentParameterDetail.Builder description(String description)
Describes this parameter.
- Parameters:
description- Describes this parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-