Interface AnalysisParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalysisParameter.Builder,AnalysisParameter>,SdkBuilder<AnalysisParameter.Builder,AnalysisParameter>,SdkPojo
- Enclosing class:
- AnalysisParameter
public static interface AnalysisParameter.Builder extends SdkPojo, CopyableBuilder<AnalysisParameter.Builder,AnalysisParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalysisParameter.BuilderdefaultValue(String defaultValue)Optional.AnalysisParameter.Buildername(String name)The name of the parameter.AnalysisParameter.Buildertype(String type)The type of parameter.AnalysisParameter.Buildertype(ParameterType type)The type of 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, sdkFields
-
-
-
-
Method Detail
-
name
AnalysisParameter.Builder name(String name)
The name of the parameter. The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
- Parameters:
name- The name of the parameter. The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
AnalysisParameter.Builder type(String type)
The type of parameter.
- Parameters:
type- The type of parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterType,ParameterType
-
type
AnalysisParameter.Builder type(ParameterType type)
The type of parameter.
- Parameters:
type- The type of parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterType,ParameterType
-
defaultValue
AnalysisParameter.Builder defaultValue(String defaultValue)
Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
- Parameters:
defaultValue- Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-