Interface Parameter.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Parameter.Builder,
,Parameter> SdkBuilder<Parameter.Builder,
,Parameter> SdkPojo
- Enclosing class:
Parameter
@Mutable
@NotThreadSafe
public static interface Parameter.Builder
extends SdkPojo, CopyableBuilder<Parameter.Builder,Parameter>
-
Method Summary
Modifier and TypeMethodDescriptiondescription
(String description) Information about the parameter.Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.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, sdkFieldNameToField, sdkFields
-
Method Details
-
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
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
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.
-