Class: Aws::LexModelBuildingService::Types::BuiltinIntentMetadata

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelbuildingservice/types.rb

Overview

Provides metadata for a built-in intent.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#signatureString

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*.

[1]: developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents

Returns:

  • (String)


226
227
228
229
230
231
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 226

class BuiltinIntentMetadata < Struct.new(
  :signature,
  :supported_locales)
  SENSITIVE = []
  include Aws::Structure
end

#supported_localesArray<String>

A list of identifiers for the locales that the intent supports.

Returns:

  • (Array<String>)


226
227
228
229
230
231
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 226

class BuiltinIntentMetadata < Struct.new(
  :signature,
  :supported_locales)
  SENSITIVE = []
  include Aws::Structure
end