Interface PredictAppDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictAppDefinition.Builder,PredictAppDefinition>,SdkBuilder<PredictAppDefinition.Builder,PredictAppDefinition>,SdkPojo
- Enclosing class:
- PredictAppDefinition
public static interface PredictAppDefinition.Builder extends SdkPojo, CopyableBuilder<PredictAppDefinition.Builder,PredictAppDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PredictAppDefinition.BuilderappDefinition(Consumer<AppDefinitionInput.Builder> appDefinition)The definition specifying the cards and flow of the generated Q App.PredictAppDefinition.BuilderappDefinition(AppDefinitionInput appDefinition)The definition specifying the cards and flow of the generated Q App.PredictAppDefinition.Builderdescription(String description)The description of the generated Q App definition.PredictAppDefinition.Buildertitle(String title)The title of the generated Q App definition.-
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
-
title
PredictAppDefinition.Builder title(String title)
The title of the generated Q App definition.
- Parameters:
title- The title of the generated Q App definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
PredictAppDefinition.Builder description(String description)
The description of the generated Q App definition.
- Parameters:
description- The description of the generated Q App definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appDefinition
PredictAppDefinition.Builder appDefinition(AppDefinitionInput appDefinition)
The definition specifying the cards and flow of the generated Q App.
- Parameters:
appDefinition- The definition specifying the cards and flow of the generated Q App.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appDefinition
default PredictAppDefinition.Builder appDefinition(Consumer<AppDefinitionInput.Builder> appDefinition)
The definition specifying the cards and flow of the generated Q App.
This is a convenience method that creates an instance of theAppDefinitionInput.Builderavoiding the need to create one manually viaAppDefinitionInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toappDefinition(AppDefinitionInput).- Parameters:
appDefinition- a consumer that will call methods onAppDefinitionInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
appDefinition(AppDefinitionInput)
-
-