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