Interface BuiltinSlotTypeMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BuiltinSlotTypeMetadata.Builder,BuiltinSlotTypeMetadata>,SdkBuilder<BuiltinSlotTypeMetadata.Builder,BuiltinSlotTypeMetadata>,SdkPojo
- Enclosing class:
- BuiltinSlotTypeMetadata
public static interface BuiltinSlotTypeMetadata.Builder extends SdkPojo, CopyableBuilder<BuiltinSlotTypeMetadata.Builder,BuiltinSlotTypeMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BuiltinSlotTypeMetadata.Buildersignature(String signature)A unique identifier for the built-in slot type.BuiltinSlotTypeMetadata.BuildersupportedLocales(Collection<Locale> supportedLocales)A list of target locales for the slot.BuiltinSlotTypeMetadata.BuildersupportedLocales(Locale... supportedLocales)A list of target locales for the slot.BuiltinSlotTypeMetadata.BuildersupportedLocalesWithStrings(String... supportedLocales)A list of target locales for the slot.BuiltinSlotTypeMetadata.BuildersupportedLocalesWithStrings(Collection<String> supportedLocales)A list of target locales for the slot.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
signature
BuiltinSlotTypeMetadata.Builder signature(String signature)
A unique identifier for the built-in slot type. To find the signature for a slot type, see Slot Type Reference in the Alexa Skills Kit.
- Parameters:
signature- A unique identifier for the built-in slot type. To find the signature for a slot type, see Slot Type Reference in the Alexa Skills Kit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedLocalesWithStrings
BuiltinSlotTypeMetadata.Builder supportedLocalesWithStrings(Collection<String> supportedLocales)
A list of target locales for the slot.
- Parameters:
supportedLocales- A list of target locales for the slot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedLocalesWithStrings
BuiltinSlotTypeMetadata.Builder supportedLocalesWithStrings(String... supportedLocales)
A list of target locales for the slot.
- Parameters:
supportedLocales- A list of target locales for the slot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedLocales
BuiltinSlotTypeMetadata.Builder supportedLocales(Collection<Locale> supportedLocales)
A list of target locales for the slot.
- Parameters:
supportedLocales- A list of target locales for the slot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedLocales
BuiltinSlotTypeMetadata.Builder supportedLocales(Locale... supportedLocales)
A list of target locales for the slot.
- Parameters:
supportedLocales- A list of target locales for the slot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-