Interface DocumentParameter.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<DocumentParameter.Builder,,- DocumentParameter> - SdkBuilder<DocumentParameter.Builder,,- DocumentParameter> - SdkPojo
- Enclosing class:
- DocumentParameter
@Mutable
@NotThreadSafe
public static interface DocumentParameter.Builder
extends SdkPojo, CopyableBuilder<DocumentParameter.Builder,DocumentParameter> 
- 
Method SummaryModifier and TypeMethodDescriptiondefaultValue(String defaultValue) If specified, the default values for the parameters.description(String description) A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.The name of the parameter.The type of parameter.type(DocumentParameterType type) The type of parameter.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
nameThe name of the parameter. - Parameters:
- name- The name of the parameter.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
typeThe type of parameter. The type can be either String or StringList. - Parameters:
- type- The type of parameter. The type can be either String or StringList.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
typeThe type of parameter. The type can be either String or StringList. - Parameters:
- type- The type of parameter. The type can be either String or StringList.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
descriptionA description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional. - Parameters:
- description- A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
defaultValueIf specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional. - Parameters:
- defaultValue- If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
-