Interface SkillsStoreSkill.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SkillsStoreSkill.Builder,SkillsStoreSkill>,SdkBuilder<SkillsStoreSkill.Builder,SkillsStoreSkill>,SdkPojo
- Enclosing class:
- SkillsStoreSkill
public static interface SkillsStoreSkill.Builder extends SdkPojo, CopyableBuilder<SkillsStoreSkill.Builder,SkillsStoreSkill>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SkillsStoreSkill.BuildericonUrl(String iconUrl)The URL where the skill icon resides.SkillsStoreSkill.BuildersampleUtterances(String... sampleUtterances)Sample utterances that interact with the skill.SkillsStoreSkill.BuildersampleUtterances(Collection<String> sampleUtterances)Sample utterances that interact with the skill.SkillsStoreSkill.BuildershortDescription(String shortDescription)Short description about the skill.default SkillsStoreSkill.BuilderskillDetails(Consumer<SkillDetails.Builder> skillDetails)Information about the skill.SkillsStoreSkill.BuilderskillDetails(SkillDetails skillDetails)Information about the skill.SkillsStoreSkill.BuilderskillId(String skillId)The ARN of the skill.SkillsStoreSkill.BuilderskillName(String skillName)The name of the skill.SkillsStoreSkill.BuildersupportsLinking(Boolean supportsLinking)Linking support for a skill.-
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
-
skillId
SkillsStoreSkill.Builder skillId(String skillId)
The ARN of the skill.
- Parameters:
skillId- The ARN of the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skillName
SkillsStoreSkill.Builder skillName(String skillName)
The name of the skill.
- Parameters:
skillName- The name of the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shortDescription
SkillsStoreSkill.Builder shortDescription(String shortDescription)
Short description about the skill.
- Parameters:
shortDescription- Short description about the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iconUrl
SkillsStoreSkill.Builder iconUrl(String iconUrl)
The URL where the skill icon resides.
- Parameters:
iconUrl- The URL where the skill icon resides.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sampleUtterances
SkillsStoreSkill.Builder sampleUtterances(Collection<String> sampleUtterances)
Sample utterances that interact with the skill.
- Parameters:
sampleUtterances- Sample utterances that interact with the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sampleUtterances
SkillsStoreSkill.Builder sampleUtterances(String... sampleUtterances)
Sample utterances that interact with the skill.
- Parameters:
sampleUtterances- Sample utterances that interact with the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skillDetails
SkillsStoreSkill.Builder skillDetails(SkillDetails skillDetails)
Information about the skill.
- Parameters:
skillDetails- Information about the skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skillDetails
default SkillsStoreSkill.Builder skillDetails(Consumer<SkillDetails.Builder> skillDetails)
Information about the skill.
This is a convenience method that creates an instance of theSkillDetails.Builderavoiding the need to create one manually viaSkillDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toskillDetails(SkillDetails).- Parameters:
skillDetails- a consumer that will call methods onSkillDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
skillDetails(SkillDetails)
-
supportsLinking
SkillsStoreSkill.Builder supportsLinking(Boolean supportsLinking)
Linking support for a skill.
- Parameters:
supportsLinking- Linking support for a skill.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-