Interface Parameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Parameter.Builder,Parameter>,SdkBuilder<Parameter.Builder,Parameter>,SdkPojo
- Enclosing class:
- Parameter
public static interface Parameter.Builder extends SdkPojo, CopyableBuilder<Parameter.Builder,Parameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Parameter.Builderdescription(String description)Information about the parameter.Parameter.Builderdynamic(Boolean dynamic)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.Parameter.Builderrequired(Boolean required)A parameter value must be specified in the extension association.-
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
-
description
Parameter.Builder description(String description)
Information about the parameter.
- Parameters:
description- Information about the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
required
Parameter.Builder required(Boolean required)
A parameter value must be specified in the extension association.
- Parameters:
required- A parameter value must be specified in the extension association.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamic
Parameter.Builder dynamic(Boolean dynamic)
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required.- Parameters:
dynamic- Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be markedRequired.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-