Interface AnalysisScheme.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalysisScheme.Builder,AnalysisScheme>,SdkBuilder<AnalysisScheme.Builder,AnalysisScheme>,SdkPojo
- Enclosing class:
- AnalysisScheme
public static interface AnalysisScheme.Builder extends SdkPojo, CopyableBuilder<AnalysisScheme.Builder,AnalysisScheme>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AnalysisScheme.BuilderanalysisOptions(Consumer<AnalysisOptions.Builder> analysisOptions)Sets the value of the AnalysisOptions property for this object.AnalysisScheme.BuilderanalysisOptions(AnalysisOptions analysisOptions)Sets the value of the AnalysisOptions property for this object.AnalysisScheme.BuilderanalysisSchemeLanguage(String analysisSchemeLanguage)Sets the value of the AnalysisSchemeLanguage property for this object.AnalysisScheme.BuilderanalysisSchemeLanguage(AnalysisSchemeLanguage analysisSchemeLanguage)Sets the value of the AnalysisSchemeLanguage property for this object.AnalysisScheme.BuilderanalysisSchemeName(String analysisSchemeName)Sets the value of the AnalysisSchemeName property for this object.-
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
-
analysisSchemeName
AnalysisScheme.Builder analysisSchemeName(String analysisSchemeName)
Sets the value of the AnalysisSchemeName property for this object.- Parameters:
analysisSchemeName- The new value for the AnalysisSchemeName property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisSchemeLanguage
AnalysisScheme.Builder analysisSchemeLanguage(String analysisSchemeLanguage)
Sets the value of the AnalysisSchemeLanguage property for this object.- Parameters:
analysisSchemeLanguage- The new value for the AnalysisSchemeLanguage property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisSchemeLanguage,AnalysisSchemeLanguage
-
analysisSchemeLanguage
AnalysisScheme.Builder analysisSchemeLanguage(AnalysisSchemeLanguage analysisSchemeLanguage)
Sets the value of the AnalysisSchemeLanguage property for this object.- Parameters:
analysisSchemeLanguage- The new value for the AnalysisSchemeLanguage property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisSchemeLanguage,AnalysisSchemeLanguage
-
analysisOptions
AnalysisScheme.Builder analysisOptions(AnalysisOptions analysisOptions)
Sets the value of the AnalysisOptions property for this object.- Parameters:
analysisOptions- The new value for the AnalysisOptions property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisOptions
default AnalysisScheme.Builder analysisOptions(Consumer<AnalysisOptions.Builder> analysisOptions)
Sets the value of the AnalysisOptions property for this object. This is a convenience method that creates an instance of theAnalysisOptions.Builderavoiding the need to create one manually viaAnalysisOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toanalysisOptions(AnalysisOptions).- Parameters:
analysisOptions- a consumer that will call methods onAnalysisOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
analysisOptions(AnalysisOptions)
-
-