Interface SkillSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SkillSummary.Builder,SkillSummary>,SdkBuilder<SkillSummary.Builder,SkillSummary>,SdkPojo
- Enclosing class:
- SkillSummary
public static interface SkillSummary.Builder extends SdkPojo, CopyableBuilder<SkillSummary.Builder,SkillSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SkillSummary.BuilderenablementType(String enablementType)Whether the skill is enabled under the user's account, or if it requires linking to be used.SkillSummary.BuilderenablementType(EnablementType enablementType)Whether the skill is enabled under the user's account, or if it requires linking to be used.SkillSummary.BuilderskillId(String skillId)The ARN of the skill summary.SkillSummary.BuilderskillName(String skillName)The name of the skill.SkillSummary.BuilderskillType(String skillType)Whether the skill is publicly available or is a private skill.SkillSummary.BuilderskillType(SkillType skillType)Whether the skill is publicly available or is a private skill.SkillSummary.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
SkillSummary.Builder skillId(String skillId)
The ARN of the skill summary.
- Parameters:
skillId- The ARN of the skill summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skillName
SkillSummary.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.
-
supportsLinking
SkillSummary.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.
-
enablementType
SkillSummary.Builder enablementType(String enablementType)
Whether the skill is enabled under the user's account, or if it requires linking to be used.
- Parameters:
enablementType- Whether the skill is enabled under the user's account, or if it requires linking to be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnablementType,EnablementType
-
enablementType
SkillSummary.Builder enablementType(EnablementType enablementType)
Whether the skill is enabled under the user's account, or if it requires linking to be used.
- Parameters:
enablementType- Whether the skill is enabled under the user's account, or if it requires linking to be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnablementType,EnablementType
-
skillType
SkillSummary.Builder skillType(String skillType)
Whether the skill is publicly available or is a private skill.
-
skillType
SkillSummary.Builder skillType(SkillType skillType)
Whether the skill is publicly available or is a private skill.
-
-