Class: Aws::LexModelsV2::Client

Inherits:
Seahorse::Client::Base show all
Includes:
ClientStubs
Defined in:
gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb

Overview

An API client for LexModelsV2. To construct a client, you need to configure a :region and :credentials.

client = Aws::LexModelsV2::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the developer guide.

See #initialize for a full list of supported configuration options.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

API Operations collapse

Instance Method Summary collapse

Methods included from ClientStubs

#api_requests, #stub_data, #stub_responses

Methods inherited from Seahorse::Client::Base

add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :plugins (Array<Seahorse::Client::Plugin>) — default: []]

    A list of plugins to apply to the client. Each plugin is either a class name or an instance of a plugin class.

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials. This can be an instance of any one of the following classes:

    • Aws::Credentials - Used for configuring static, non-refreshing credentials.

    • Aws::SharedCredentials - Used for loading static credentials from a shared file, such as ~/.aws/config.

    • Aws::AssumeRoleCredentials - Used when you need to assume a role.

    • Aws::AssumeRoleWebIdentityCredentials - Used when you need to assume a role after providing credentials via the web.

    • Aws::SSOCredentials - Used for loading credentials from AWS SSO using an access token generated from aws login.

    • Aws::ProcessCredentials - Used for loading credentials from a process that outputs to stdout.

    • Aws::InstanceProfileCredentials - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • Aws::ECSCredentials - Used for loading credentials from instances running in ECS.

    • Aws::CognitoIdentityCredentials - Used for loading credentials from the Cognito Identity service.

    When :credentials are not configured directly, the following locations will be searched for credentials:

    • Aws.config[:credentials]
    • The :access_key_id, :secret_access_key, and :session_token options.
    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
    • ~/.aws/credentials
    • ~/.aws/config
    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of Aws::InstanceProfileCredentails or Aws::ECSCredentials to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED'] to true.
  • :region (required, String)

    The AWS region to connect to. The configured :region is used to determine the service :endpoint. When not passed, a default :region is searched for in the following locations:

    • Aws.config[:region]
    • ENV['AWS_REGION']
    • ENV['AMAZON_REGION']
    • ENV['AWS_DEFAULT_REGION']
    • ~/.aws/credentials
    • ~/.aws/config
  • :access_key_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true

    Used only in adaptive retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a RetryCapacityNotAvailableError and will not retry instead of sleeping.

  • :client_side_monitoring (Boolean) — default: false

    When true, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1"

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When true, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in standard and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available.

  • :disable_request_compression (Boolean) — default: false

    When set to 'true' the request body will not be compressed for supported operations.

  • :endpoint (String, URI::HTTPS, URI::HTTP)

    Normally you should not configure the :endpoint option directly. This is normally constructed from the :region option. Configuring :endpoint is normally reserved for connecting to test or custom endpoints. The endpoint should be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
    
  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to true, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the :logger at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in standard and adaptive retry modes.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used.

  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the legacy retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the legacy retry mode.

    @see https://www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the legacy retry mode.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_mode (String) — default: "legacy"

    Specifies which retry algorithm to use. Values are:

    • legacy - The pre-existing retry behavior. This is default value if no retry mode is provided.

    • standard - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • adaptive - An experimental retry mode that includes all the functionality of standard mode along with automatic client side throttling. This is a provisional mode that may change behavior in the future.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/sdk_ua_app_id. It should have a maximum length of 50. This variable is sourced from environment variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.

  • :secret_access_key (String)
  • :session_token (String)
  • :sigv4a_signing_region_set (Array)

    A list of regions that should be signed with SigV4a signing. When not passed, a default :sigv4a_signing_region_set is searched for in the following locations:

    • Aws.config[:sigv4a_signing_region_set]
    • ENV['AWS_SIGV4A_SIGNING_REGION_SET']
    • ~/.aws/config
  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    Please note When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :telemetry_provider (Aws::Telemetry::TelemetryProviderBase) — default: Aws::Telemetry::NoOpTelemetryProvider

    Allows you to provide a telemetry provider, which is used to emit telemetry data. By default, uses NoOpTelemetryProvider which will not record or emit any telemetry data. The SDK supports the following telemetry providers:

    • OpenTelemetry (OTel) - To use the OTel provider, install and require the opentelemetry-sdk gem and then, pass in an instance of a Aws::Telemetry::OTelProvider for telemetry provider.
  • :token_provider (Aws::TokenProvider)

    A Bearer Token Provider. This can be an instance of any one of the following classes:

    • Aws::StaticTokenProvider - Used for configuring static, non-refreshing tokens.

    • Aws::SSOTokenProvider - Used for loading tokens from AWS SSO using an access token generated from aws login.

    When :token_provider is not configured directly, the Aws::TokenProviderChain will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to true, dualstack enabled endpoints (with .aws TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    When set to true, fips compatible endpoints will be used if available. When a fips region is used, the region is normalized and this config is set to true.

  • :validate_params (Boolean) — default: true

    When true, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::LexModelsV2::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to #resolve_endpoint(parameters) where parameters is a Struct similar to Aws::LexModelsV2::EndpointParameters

  • :http_continue_timeout (Float) — default: 1

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has "Expect" header set to "100-continue". Defaults to nil which disables this behaviour. This value can safely be set per request on the session.

  • :http_idle_timeout (Float) — default: 5

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_open_timeout (Float) — default: 15

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like 'http://proxy.com:123'.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_wire_trace (Boolean) — default: false

    When true, HTTP debug output will be sent to the :logger.

  • :on_chunk_received (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the response body is received. It provides three arguments: the chunk, the number of bytes received, and the total number of bytes in the response (or nil if the server did not send a content-length).

  • :on_chunk_sent (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the request body is sent. It provides three arguments: the chunk, the number of bytes read from the body, and the total number of bytes in the body.

  • :raise_response_errors (Boolean) — default: true

    When true, response errors are raised.

  • :ssl_ca_bundle (String)

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_directory (String)

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_store (String)

    Sets the X509::Store to verify peer certificate.

  • :ssl_cert (OpenSSL::X509::Certificate)

    Sets a client certificate when creating http connections.

  • :ssl_key (OpenSSL::PKey)

    Sets a client key when creating http connections.

  • :ssl_timeout (Float)

    Sets the SSL timeout in seconds

  • :ssl_verify_peer (Boolean) — default: true

    When true, SSL peer certificates are verified when establishing a connection.



440
441
442
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 440

def initialize(*args)
  super
end

Instance Method Details

#batch_create_custom_vocabulary_item(params = {}) ⇒ Types::BatchCreateCustomVocabularyItemResponse

Create a batch of custom vocabulary items for a given bot locale's custom vocabulary.

Examples:

Request syntax with placeholder values


resp = client.batch_create_custom_vocabulary_item({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  custom_vocabulary_item_list: [ # required
    {
      phrase: "Phrase", # required
      weight: 1,
      display_as: "Phrase",
    },
  ],
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.errors #=> Array
resp.errors[0].item_id #=> String
resp.errors[0].error_message #=> String
resp.errors[0].error_code #=> String, one of "DUPLICATE_INPUT", "RESOURCE_DOES_NOT_EXIST", "RESOURCE_ALREADY_EXISTS", "INTERNAL_SERVER_FAILURE"
resp.resources #=> Array
resp.resources[0].item_id #=> String
resp.resources[0].phrase #=> String
resp.resources[0].weight #=> Integer
resp.resources[0].display_as #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot associated with this custom vocabulary.

  • :bot_version (required, String)

    The identifier of the version of the bot associated with this custom vocabulary.

  • :locale_id (required, String)

    The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .

  • :custom_vocabulary_item_list (required, Array<Types::NewCustomVocabularyItem>)

    A list of new custom vocabulary items. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.

Returns:

See Also:



511
512
513
514
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 511

def batch_create_custom_vocabulary_item(params = {}, options = {})
  req = build_request(:batch_create_custom_vocabulary_item, params)
  req.send_request(options)
end

#batch_delete_custom_vocabulary_item(params = {}) ⇒ Types::BatchDeleteCustomVocabularyItemResponse

Delete a batch of custom vocabulary items for a given bot locale's custom vocabulary.

Examples:

Request syntax with placeholder values


resp = client.batch_delete_custom_vocabulary_item({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  custom_vocabulary_item_list: [ # required
    {
      item_id: "ItemId", # required
    },
  ],
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.errors #=> Array
resp.errors[0].item_id #=> String
resp.errors[0].error_message #=> String
resp.errors[0].error_code #=> String, one of "DUPLICATE_INPUT", "RESOURCE_DOES_NOT_EXIST", "RESOURCE_ALREADY_EXISTS", "INTERNAL_SERVER_FAILURE"
resp.resources #=> Array
resp.resources[0].item_id #=> String
resp.resources[0].phrase #=> String
resp.resources[0].weight #=> Integer
resp.resources[0].display_as #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot associated with this custom vocabulary.

  • :bot_version (required, String)

    The identifier of the version of the bot associated with this custom vocabulary.

  • :locale_id (required, String)

    The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .

  • :custom_vocabulary_item_list (required, Array<Types::CustomVocabularyEntryId>)

    A list of custom vocabulary items requested to be deleted. Each entry must contain the unique custom vocabulary entry identifier.

Returns:

See Also:



579
580
581
582
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 579

def batch_delete_custom_vocabulary_item(params = {}, options = {})
  req = build_request(:batch_delete_custom_vocabulary_item, params)
  req.send_request(options)
end

#batch_update_custom_vocabulary_item(params = {}) ⇒ Types::BatchUpdateCustomVocabularyItemResponse

Update a batch of custom vocabulary items for a given bot locale's custom vocabulary.

Examples:

Request syntax with placeholder values


resp = client.batch_update_custom_vocabulary_item({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  custom_vocabulary_item_list: [ # required
    {
      item_id: "ItemId", # required
      phrase: "Phrase", # required
      weight: 1,
      display_as: "Phrase",
    },
  ],
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.errors #=> Array
resp.errors[0].item_id #=> String
resp.errors[0].error_message #=> String
resp.errors[0].error_code #=> String, one of "DUPLICATE_INPUT", "RESOURCE_DOES_NOT_EXIST", "RESOURCE_ALREADY_EXISTS", "INTERNAL_SERVER_FAILURE"
resp.resources #=> Array
resp.resources[0].item_id #=> String
resp.resources[0].phrase #=> String
resp.resources[0].weight #=> Integer
resp.resources[0].display_as #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot associated with this custom vocabulary

  • :bot_version (required, String)

    The identifier of the version of the bot associated with this custom vocabulary.

  • :locale_id (required, String)

    The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .

  • :custom_vocabulary_item_list (required, Array<Types::CustomVocabularyItem>)

    A list of custom vocabulary items with updated fields. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.

Returns:

See Also:



651
652
653
654
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 651

def batch_update_custom_vocabulary_item(params = {}, options = {})
  req = build_request(:batch_update_custom_vocabulary_item, params)
  req.send_request(options)
end

#build_bot_locale(params = {}) ⇒ Types::BuildBotLocaleResponse

Builds a bot, its intents, and its slot types into a specific locale. A bot can be built into multiple locales. At runtime the locale is used to choose a specific build of the bot.

Examples:

Request syntax with placeholder values


resp = client.build_bot_locale({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
resp. #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to build. The identifier is returned in the response from the CreateBot operation.

  • :bot_version (required, String)

    The version of the bot to build. This can only be the draft version of the bot.

  • :locale_id (required, String)

    The identifier of the language and locale that the bot will be used in. The string must match one of the supported locales. All of the intents, slot types, and slots used in the bot must have the same locale. For more information, see Supported languages.

Returns:

See Also:



710
711
712
713
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 710

def build_bot_locale(params = {}, options = {})
  req = build_request(:build_bot_locale, params)
  req.send_request(options)
end

#create_bot(params = {}) ⇒ Types::CreateBotResponse

Creates an Amazon Lex conversational bot.

Examples:

Request syntax with placeholder values


resp = client.create_bot({
  bot_name: "Name", # required
  description: "Description",
  role_arn: "RoleArn", # required
  data_privacy: { # required
    child_directed: false, # required
  },
  idle_session_ttl_in_seconds: 1, # required
  bot_tags: {
    "TagKey" => "TagValue",
  },
  test_bot_alias_tags: {
    "TagKey" => "TagValue",
  },
  bot_type: "Bot", # accepts Bot, BotNetwork
  bot_members: [
    {
      bot_member_id: "Id", # required
      bot_member_name: "Name", # required
      bot_member_alias_id: "BotAliasId", # required
      bot_member_alias_name: "BotAliasName", # required
      bot_member_version: "BotVersion", # required
    },
  ],
})

Response structure


resp.bot_id #=> String
resp.bot_name #=> String
resp.description #=> String
resp.role_arn #=> String
resp.data_privacy.child_directed #=> Boolean
resp.idle_session_ttl_in_seconds #=> Integer
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.creation_date_time #=> Time
resp.bot_tags #=> Hash
resp.bot_tags["TagKey"] #=> String
resp.test_bot_alias_tags #=> Hash
resp.test_bot_alias_tags["TagKey"] #=> String
resp.bot_type #=> String, one of "Bot", "BotNetwork"
resp.bot_members #=> Array
resp.bot_members[0].bot_member_id #=> String
resp.bot_members[0].bot_member_name #=> String
resp.bot_members[0].bot_member_alias_id #=> String
resp.bot_members[0].bot_member_alias_name #=> String
resp.bot_members[0].bot_member_version #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_name (required, String)

    The name of the bot. The bot name must be unique in the account that creates the bot.

  • :description (String)

    A description of the bot. It appears in lists to help you identify a particular bot.

  • :role_arn (required, String)

    The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.

  • :data_privacy (required, Types::DataPrivacy)

    Provides information on additional privacy protections Amazon Lex should use with the bot's data.

  • :idle_session_ttl_in_seconds (required, Integer)

    The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot.

    A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.

    You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.

  • :bot_tags (Hash<String,String>)

    A list of tags to add to the bot. You can only add tags when you create a bot. You can't use the UpdateBot operation to update tags. To update tags, use the TagResource operation.

  • :test_bot_alias_tags (Hash<String,String>)

    A list of tags to add to the test alias for a bot. You can only add tags when you create a bot. You can't use the UpdateAlias operation to update tags. To update tags on the test alias, use the TagResource operation.

  • :bot_type (String)

    The type of a bot to create.

  • :bot_members (Array<Types::BotMember>)

    The list of bot members in a network to be created.

Returns:

See Also:



829
830
831
832
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 829

def create_bot(params = {}, options = {})
  req = build_request(:create_bot, params)
  req.send_request(options)
end

#create_bot_alias(params = {}) ⇒ Types::CreateBotAliasResponse

Creates an alias for the specified version of a bot. Use an alias to enable you to change the version of a bot without updating applications that use the bot.

For example, you can create an alias called "PROD" that your applications use to call the Amazon Lex bot.

Examples:

Request syntax with placeholder values


resp = client.create_bot_alias({
  bot_alias_name: "Name", # required
  description: "Description",
  bot_version: "NumericalBotVersion",
  bot_alias_locale_settings: {
    "LocaleId" => {
      enabled: false, # required
      code_hook_specification: {
        lambda_code_hook: { # required
          lambda_arn: "LambdaARN", # required
          code_hook_interface_version: "CodeHookInterfaceVersion", # required
        },
      },
    },
  },
  conversation_log_settings: {
    text_log_settings: [
      {
        enabled: false, # required
        destination: { # required
          cloud_watch: { # required
            cloud_watch_log_group_arn: "CloudWatchLogGroupArn", # required
            log_prefix: "LogPrefix", # required
          },
        },
        selective_logging_enabled: false,
      },
    ],
    audio_log_settings: [
      {
        enabled: false, # required
        destination: { # required
          s3_bucket: { # required
            kms_key_arn: "KmsKeyArn",
            s3_bucket_arn: "S3BucketArn", # required
            log_prefix: "LogPrefix", # required
          },
        },
        selective_logging_enabled: false,
      },
    ],
  },
  sentiment_analysis_settings: {
    detect_sentiment: false, # required
  },
  bot_id: "Id", # required
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.bot_alias_id #=> String
resp.bot_alias_name #=> String
resp.description #=> String
resp.bot_version #=> String
resp.bot_alias_locale_settings #=> Hash
resp.bot_alias_locale_settings["LocaleId"].enabled #=> Boolean
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.lambda_arn #=> String
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.code_hook_interface_version #=> String
resp.conversation_log_settings.text_log_settings #=> Array
resp.conversation_log_settings.text_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.cloud_watch_log_group_arn #=> String
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.log_prefix #=> String
resp.conversation_log_settings.text_log_settings[0].selective_logging_enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings #=> Array
resp.conversation_log_settings.audio_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.kms_key_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.s3_bucket_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.log_prefix #=> String
resp.conversation_log_settings.audio_log_settings[0].selective_logging_enabled #=> Boolean
resp.sentiment_analysis_settings.detect_sentiment #=> Boolean
resp.bot_alias_status #=> String, one of "Creating", "Available", "Deleting", "Failed"
resp.bot_id #=> String
resp.creation_date_time #=> Time
resp.tags #=> Hash
resp.tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_alias_name (required, String)

    The alias to create. The name must be unique for the bot.

  • :description (String)

    A description of the alias. Use this description to help identify the alias.

  • :bot_version (String)

    The version of the bot that this alias points to. You can use the UpdateBotAlias operation to change the bot version associated with the alias.

  • :bot_alias_locale_settings (Hash<String,Types::BotAliasLocaleSettings>)

    Maps configuration information to a specific locale. You can use this parameter to specify a specific Lambda function to run different functions in different locales.

  • :conversation_log_settings (Types::ConversationLogSettings)

    Specifies whether Amazon Lex logs text and audio for a conversation with the bot. When you enable conversation logs, text logs store text input, transcripts of audio input, and associated metadata in Amazon CloudWatch Logs. Audio logs store audio input in Amazon S3.

  • :sentiment_analysis_settings (Types::SentimentAnalysisSettings)

    Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of user utterances.

  • :bot_id (required, String)

    The unique identifier of the bot that the alias applies to.

  • :tags (Hash<String,String>)

    A list of tags to add to the bot alias. You can only add tags when you create an alias, you can't use the UpdateBotAlias operation to update the tags on a bot alias. To update tags, use the TagResource operation.

Returns:

See Also:



980
981
982
983
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 980

def create_bot_alias(params = {}, options = {})
  req = build_request(:create_bot_alias, params)
  req.send_request(options)
end

#create_bot_locale(params = {}) ⇒ Types::CreateBotLocaleResponse

Creates a locale in the bot. The locale contains the intents and slot types that the bot uses in conversations with users in the specified language and locale. You must add a locale to a bot before you can add intents and slot types to the bot.

Examples:

Request syntax with placeholder values


resp = client.create_bot_locale({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  description: "Description",
  nlu_intent_confidence_threshold: 1.0, # required
  voice_settings: {
    voice_id: "VoiceId", # required
    engine: "standard", # accepts standard, neural, long-form, generative
  },
  generative_ai_settings: {
    runtime_settings: {
      slot_resolution_improvement: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
    },
    buildtime_settings: {
      descriptive_bot_builder: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
      sample_utterance_generation: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
    },
  },
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_name #=> String
resp.locale_id #=> String
resp.description #=> String
resp.nlu_intent_confidence_threshold #=> Float
resp.voice_settings.voice_id #=> String
resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
resp.creation_date_time #=> Time
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.enabled #=> Boolean
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to create the locale for.

  • :bot_version (required, String)

    The version of the bot to create the locale for. This can only be the draft version of the bot.

  • :locale_id (required, String)

    The identifier of the language and locale that the bot will be used in. The string must match one of the supported locales. All of the intents, slot types, and slots used in the bot must have the same locale. For more information, see Supported languages.

  • :description (String)

    A description of the bot locale. Use this to help identify the bot locale in lists.

  • :nlu_intent_confidence_threshold (required, Float)

    Determines the threshold where Amazon Lex will insert the AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or both when returning alternative intents. AMAZON.FallbackIntent and AMAZON.KendraSearchIntent are only inserted if they are configured for the bot.

    For example, suppose a bot is configured with the confidence threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns three alternative intents with the following confidence scores: IntentA (0.70), IntentB (0.60), IntentC (0.50). The response from the RecognizeText operation would be:

    • AMAZON.FallbackIntent

    • IntentA

    • IntentB

    • IntentC

  • :voice_settings (Types::VoiceSettings)

    The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the user.

  • :generative_ai_settings (Types::GenerativeAISettings)

    Contains specifications about the generative AI capabilities from Amazon Bedrock that you can turn on for your bot.

Returns:

See Also:



1144
1145
1146
1147
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1144

def create_bot_locale(params = {}, options = {})
  req = build_request(:create_bot_locale, params)
  req.send_request(options)
end

#create_bot_replica(params = {}) ⇒ Types::CreateBotReplicaResponse

Action to create a replication of the source bot in the secondary region.

Examples:

Request syntax with placeholder values


resp = client.create_bot_replica({
  bot_id: "Id", # required
  replica_region: "ReplicaRegion", # required
})

Response structure


resp.bot_id #=> String
resp.replica_region #=> String
resp.source_region #=> String
resp.creation_date_time #=> Time
resp.bot_replica_status #=> String, one of "Enabling", "Enabled", "Deleting", "Failed"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The request for the unique bot ID of the source bot to be replicated in the secondary region.

  • :replica_region (required, String)

    The request for the secondary region that will be used in the replication of the source bot.

Returns:

See Also:



1187
1188
1189
1190
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1187

def create_bot_replica(params = {}, options = {})
  req = build_request(:create_bot_replica, params)
  req.send_request(options)
end

#create_bot_version(params = {}) ⇒ Types::CreateBotVersionResponse

Creates an immutable version of the bot. When you create the first version of a bot, Amazon Lex sets the version number to 1. Subsequent bot versions increase in an increment of 1. The version number will always represent the total number of versions created of the bot, not the current number of versions. If a bot version is deleted, that bot version number will not be reused.

Examples:

Request syntax with placeholder values


resp = client.create_bot_version({
  bot_id: "Id", # required
  description: "Description",
  bot_version_locale_specification: { # required
    "LocaleId" => {
      source_bot_version: "BotVersion", # required
    },
  },
})

Response structure


resp.bot_id #=> String
resp.description #=> String
resp.bot_version #=> String
resp.bot_version_locale_specification #=> Hash
resp.bot_version_locale_specification["LocaleId"].source_bot_version #=> String
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.creation_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to create the version for.

  • :description (String)

    A description of the version. Use the description to help identify the version in lists.

  • :bot_version_locale_specification (required, Hash<String,Types::BotVersionLocaleDetails>)

    Specifies the locales that Amazon Lex adds to this version. You can choose the Draft version or any other previously published version for each locale. When you specify a source version, the locale data is copied from the source version to the new version.

Returns:

See Also:



1247
1248
1249
1250
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1247

def create_bot_version(params = {}, options = {})
  req = build_request(:create_bot_version, params)
  req.send_request(options)
end

#create_export(params = {}) ⇒ Types::CreateExportResponse

Creates a zip archive containing the contents of a bot or a bot locale. The archive contains a directory structure that contains JSON files that define the bot.

You can create an archive that contains the complete definition of a bot, or you can specify that the archive contain only the definition of a single bot locale.

For more information about exporting bots, and about the structure of the export archive, see Importing and exporting bots

Examples:

Request syntax with placeholder values


resp = client.create_export({
  resource_specification: { # required
    bot_export_specification: {
      bot_id: "Id", # required
      bot_version: "BotVersion", # required
    },
    bot_locale_export_specification: {
      bot_id: "Id", # required
      bot_version: "BotVersion", # required
      locale_id: "LocaleId", # required
    },
    custom_vocabulary_export_specification: {
      bot_id: "Id", # required
      bot_version: "BotVersion", # required
      locale_id: "LocaleId", # required
    },
    test_set_export_specification: {
      test_set_id: "Id", # required
    },
  },
  file_format: "LexJson", # required, accepts LexJson, TSV, CSV
  file_password: "ImportExportFilePassword",
})

Response structure


resp.export_id #=> String
resp.resource_specification.bot_export_specification.bot_id #=> String
resp.resource_specification.bot_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.bot_id #=> String
resp.resource_specification.bot_locale_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.locale_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_version #=> String
resp.resource_specification.custom_vocabulary_export_specification.locale_id #=> String
resp.resource_specification.test_set_export_specification.test_set_id #=> String
resp.file_format #=> String, one of "LexJson", "TSV", "CSV"
resp.export_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.creation_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_specification (required, Types::ExportResourceSpecification)

    Specifies the type of resource to export, either a bot or a bot locale. You can only specify one type of resource to export.

  • :file_format (required, String)

    The file format of the bot or bot locale definition files.

  • :file_password (String)

    An password to use to encrypt the exported archive. Using a password is optional, but you should encrypt the archive to protect the data in transit between Amazon Lex and your local computer.

Returns:

See Also:



1333
1334
1335
1336
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1333

def create_export(params = {}, options = {})
  req = build_request(:create_export, params)
  req.send_request(options)
end

#create_intent(params = {}) ⇒ Types::CreateIntentResponse

Creates an intent.

To define the interaction between the user and your bot, you define one or more intents. For example, for a pizza ordering bot you would create an OrderPizza intent.

When you create an intent, you must provide a name. You can optionally provide the following:

  • Sample utterances. For example, "I want to order a pizza" and "Can I order a pizza." You can't provide utterances for built-in intents.

  • Information to be gathered. You specify slots for the information that you bot requests from the user. You can specify standard slot types, such as date and time, or custom slot types for your application.

  • How the intent is fulfilled. You can provide a Lambda function or configure the intent to return the intent information to your client application. If you use a Lambda function, Amazon Lex invokes the function when all of the intent information is available.

  • A confirmation prompt to send to the user to confirm an intent. For example, "Shall I order your pizza?"

  • A conclusion statement to send to the user after the intent is fulfilled. For example, "I ordered your pizza."

  • A follow-up prompt that asks the user for additional activity. For example, "Do you want a drink with your pizza?"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :intent_name (required, String)

    The name of the intent. Intent names must be unique in the locale that contains the intent and cannot match the name of any built-in intent.

  • :description (String)

    A description of the intent. Use the description to help identify the intent in lists.

  • :parent_intent_signature (String)

    A unique identifier for the built-in intent to base this intent on.

  • :sample_utterances (Array<Types::SampleUtterance>)

    An array of strings that a user might say to signal the intent. For example, "I want a pizza", or "I want a {PizzaSize\} pizza".

    In an utterance, slot names are enclosed in curly braces ("{", "\}") to indicate where they should be displayed in the utterance shown to the user..

  • :dialog_code_hook (Types::DialogCodeHookSettings)

    Specifies that Amazon Lex invokes the alias Lambda function for each user input. You can invoke this Lambda function to personalize user interaction.

    For example, suppose that your bot determines that the user's name is John. You Lambda function might retrieve John's information from a backend database and prepopulate some of the values. For example, if you find that John is gluten intolerant, you might set the corresponding intent slot, glutenIntolerant to true. You might find John's phone number and set the corresponding session attribute.

  • :fulfillment_code_hook (Types::FulfillmentCodeHookSettings)

    Specifies that Amazon Lex invokes the alias Lambda function when the intent is ready for fulfillment. You can invoke this function to complete the bot's transaction with the user.

    For example, in a pizza ordering bot, the Lambda function can look up the closest pizza restaurant to the customer's location and then place an order on the customer's behalf.

  • :intent_confirmation_setting (Types::IntentConfirmationSetting)

    Provides prompts that Amazon Lex sends to the user to confirm the completion of an intent. If the user answers "no," the settings contain a statement that is sent to the user to end the intent.

  • :intent_closing_setting (Types::IntentClosingSetting)

    Sets the response that Amazon Lex sends to the user when the intent is closed.

  • :input_contexts (Array<Types::InputContext>)

    A list of contexts that must be active for this intent to be considered by Amazon Lex.

    When an intent has an input context list, Amazon Lex only considers using the intent in an interaction with the user when the specified contexts are included in the active context list for the session. If the contexts are not active, then Amazon Lex will not use the intent.

    A context can be automatically activated using the outputContexts property or it can be set at runtime.

    For example, if there are two intents with different input contexts that respond to the same utterances, only the intent with the active context will respond.

    An intent may have up to 5 input contexts. If an intent has multiple input contexts, all of the contexts must be active to consider the intent.

  • :output_contexts (Array<Types::OutputContext>)

    A lists of contexts that the intent activates when it is fulfilled.

    You can use an output context to indicate the intents that Amazon Lex should consider for the next turn of the conversation with a customer.

    When you use the outputContextsList property, all of the contexts specified in the list are activated when the intent is fulfilled. You can set up to 10 output contexts. You can also set the number of conversation turns that the context should be active, or the length of time that the context should be active.

  • :kendra_configuration (Types::KendraConfiguration)

    Configuration information required to use the AMAZON.KendraSearchIntent intent to connect to an Amazon Kendra index. The AMAZON.KendraSearchIntent intent is called when Amazon Lex can't determine another intent to invoke.

  • :bot_id (required, String)

    The identifier of the bot associated with this intent.

  • :bot_version (required, String)

    The version of the bot associated with this intent.

  • :locale_id (required, String)

    The identifier of the language and locale where this intent is used. All of the bots, slot types, and slots used by the intent must have the same locale. For more information, see Supported languages.

  • :initial_response_setting (Types::InitialResponseSetting)

    Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.

  • :qn_a_intent_configuration (Types::QnAIntentConfiguration)

    Specifies the configuration of the built-in Amazon.QnAIntent. The AMAZON.QnAIntent intent is called when Amazon Lex can't determine another intent to invoke. If you specify this field, you can't specify the kendraConfiguration field.

Returns:

See Also:



1507
1508
1509
1510
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1507

def create_intent(params = {}, options = {})
  req = build_request(:create_intent, params)
  req.send_request(options)
end

#create_resource_policy(params = {}) ⇒ Types::CreateResourcePolicyResponse

Creates a new resource policy with the specified policy statements.

Examples:

Request syntax with placeholder values


resp = client.create_resource_policy({
  resource_arn: "AmazonResourceName", # required
  policy: "Policy", # required
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

  • :policy (required, String)

    A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see IAM JSON policy reference .

    If the policy isn't valid, Amazon Lex returns a validation exception.

Returns:

See Also:



1552
1553
1554
1555
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1552

def create_resource_policy(params = {}, options = {})
  req = build_request(:create_resource_policy, params)
  req.send_request(options)
end

#create_resource_policy_statement(params = {}) ⇒ Types::CreateResourcePolicyStatementResponse

Adds a new resource policy statement to a bot or bot alias. If a resource policy exists, the statement is added to the current resource policy. If a policy doesn't exist, a new policy is created.

You can't create a resource policy statement that allows cross-account access.

You need to add the CreateResourcePolicy or UpdateResourcePolicy action to the bot role in order to call the API.

Examples:

Request syntax with placeholder values


resp = client.create_resource_policy_statement({
  resource_arn: "AmazonResourceName", # required
  statement_id: "Name", # required
  effect: "Allow", # required, accepts Allow, Deny
  principal: [ # required
    {
      service: "ServicePrincipal",
      arn: "PrincipalArn",
    },
  ],
  action: ["Operation"], # required
  condition: {
    "ConditionOperator" => {
      "ConditionKey" => "ConditionValue",
    },
  },
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

  • :statement_id (required, String)

    The name of the statement. The ID is the same as the Sid IAM property. The statement name must be unique within the policy. For more information, see IAM JSON policy elements: Sid.

  • :effect (required, String)

    Determines whether the statement allows or denies access to the resource.

  • :principal (required, Array<Types::Principal>)

    An IAM principal, such as an IAM user, IAM role, or Amazon Web Services services that is allowed or denied access to a resource. For more information, see Amazon Web Services JSON policy elements: Principal.

  • :action (required, Array<String>)

    The Amazon Lex action that this policy either allows or denies. The action must apply to the resource type of the specified ARN. For more information, see Actions, resources, and condition keys for Amazon Lex V2.

  • :condition (Hash<String,Hash>)

    Specifies a condition when the policy is in effect. If the principal of the policy is a service principal, you must provide two condition blocks, one with a SourceAccount global condition key and one with a SourceArn global condition key.

    For more information, see IAM JSON policy elements: Condition .

  • :expected_revision_id (String)

    The identifier of the revision of the policy to edit. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.

    If you don't specify a revision, Amazon Lex overwrites the contents of the policy with the new values.

Returns:

See Also:



1659
1660
1661
1662
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1659

def create_resource_policy_statement(params = {}, options = {})
  req = build_request(:create_resource_policy_statement, params)
  req.send_request(options)
end

#create_slot(params = {}) ⇒ Types::CreateSlotResponse

Creates a slot in an intent. A slot is a variable needed to fulfill an intent. For example, an OrderPizza intent might need slots for size, crust, and number of pizzas. For each slot, you define one or more utterances that Amazon Lex uses to elicit a response from the user.

Examples:

Response structure


resp.slot_id #=> String
resp.slot_name #=> String
resp.description #=> String
resp.slot_type_id #=> String
resp.value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.value_elicitation_setting.slot_constraint #=> String, one of "Required", "Optional"
resp.value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.sample_utterances #=> Array
resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_resolution_setting.slot_resolution_strategy #=> String, one of "EnhancedFallback", "Default"
resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_id #=> String
resp.creation_date_time #=> Time
resp.multiple_values_setting.allow_multiple_values #=> Boolean
resp.sub_slot_setting.expression #=> String
resp.sub_slot_setting.slot_specifications #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_name (required, String)

    The name of the slot. Slot names must be unique within the bot that contains the slot.

  • :description (String)

    A description of the slot. Use this to help identify the slot in lists.

  • :slot_type_id (String)

    The unique identifier for the slot type associated with this slot. The slot type determines the values that can be entered into the slot.

  • :value_elicitation_setting (required, Types::SlotValueElicitationSetting)

    Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.

  • :obfuscation_setting (Types::ObfuscationSetting)

    Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.

    The default is to obfuscate values in the CloudWatch logs.

  • :bot_id (required, String)

    The identifier of the bot associated with the slot.

  • :bot_version (required, String)

    The version of the bot associated with the slot.

  • :locale_id (required, String)

    The identifier of the language and locale that the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. For more information, see Supported languages.

  • :intent_id (required, String)

    The identifier of the intent that contains the slot.

  • :multiple_values_setting (Types::MultipleValuesSetting)

    Indicates whether the slot returns multiple values in one response. Multi-value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

    If the multipleValuesSetting is not set, the default value is false.

  • :sub_slot_setting (Types::SubSlotSetting)

    Specifications for the constituent sub slots and the expression for the composite slot.

Returns:

See Also:



2479
2480
2481
2482
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2479

def create_slot(params = {}, options = {})
  req = build_request(:create_slot, params)
  req.send_request(options)
end

#create_slot_type(params = {}) ⇒ Types::CreateSlotTypeResponse

Creates a custom slot type

To create a custom slot type, specify a name for the slot type and a set of enumeration values, the values that a slot of this type can assume.

Examples:

Request syntax with placeholder values


resp = client.create_slot_type({
  slot_type_name: "Name", # required
  description: "Description",
  slot_type_values: [
    {
      sample_value: {
        value: "Value", # required
      },
      synonyms: [
        {
          value: "Value", # required
        },
      ],
    },
  ],
  value_selection_setting: {
    resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution, Concatenation
    regex_filter: {
      pattern: "RegexPattern", # required
    },
    advanced_recognition_setting: {
      audio_recognition_strategy: "UseSlotValuesAsCustomVocabulary", # accepts UseSlotValuesAsCustomVocabulary
    },
  },
  parent_slot_type_signature: "SlotTypeSignature",
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  external_source_setting: {
    grammar_slot_type_setting: {
      source: {
        s3_bucket_name: "S3BucketName", # required
        s3_object_key: "S3ObjectPath", # required
        kms_key_arn: "KmsKeyArn",
      },
    },
  },
  composite_slot_type_setting: {
    sub_slots: [
      {
        name: "Name", # required
        slot_type_id: "BuiltInOrCustomSlotTypeId", # required
      },
    ],
  },
})

Response structure


resp.slot_type_id #=> String
resp.slot_type_name #=> String
resp.description #=> String
resp.slot_type_values #=> Array
resp.slot_type_values[0].sample_value.value #=> String
resp.slot_type_values[0].synonyms #=> Array
resp.slot_type_values[0].synonyms[0].value #=> String
resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
resp.value_selection_setting.regex_filter.pattern #=> String
resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
resp.parent_slot_type_signature #=> String
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.creation_date_time #=> Time
resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
resp.composite_slot_type_setting.sub_slots #=> Array
resp.composite_slot_type_setting.sub_slots[0].name #=> String
resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_type_name (required, String)

    The name for the slot. A slot type name must be unique within the intent.

  • :description (String)

    A description of the slot type. Use the description to help identify the slot type in lists.

  • :slot_type_values (Array<Types::SlotTypeValue>)

    A list of SlotTypeValue objects that defines the values that the slot type can take. Each value can have a list of synonyms, additional values that help train the machine learning model about the values that it resolves for a slot.

  • :value_selection_setting (Types::SlotValueSelectionSetting)

    Determines the strategy that Amazon Lex uses to select a value from the list of possible values. The field can be set to one of the following values:

    • ORIGINAL_VALUE - Returns the value entered by the user, if the user value is similar to the slot value.

    • TOP_RESOLUTION - If there is a resolution list for the slot, return the first value in the resolution list. If there is no resolution list, return null.

    If you don't specify the valueSelectionSetting parameter, the default is ORIGINAL_VALUE.

  • :parent_slot_type_signature (String)

    The built-in slot type used as a parent of this slot type. When you define a parent slot type, the new slot type has the configuration of the parent slot type.

    Only AMAZON.AlphaNumeric is supported.

  • :bot_id (required, String)

    The identifier of the bot associated with this slot type.

  • :bot_version (required, String)

    The identifier of the bot version associated with this slot type.

  • :locale_id (required, String)

    The identifier of the language and locale that the slot type will be used in. The string must match one of the supported locales. All of the bots, intents, and slots used by the slot type must have the same locale. For more information, see Supported languages.

  • :external_source_setting (Types::ExternalSourceSetting)

    Sets the type of external information used to create the slot type.

  • :composite_slot_type_setting (Types::CompositeSlotTypeSetting)

    Specifications for a composite slot type.

Returns:

See Also:



2640
2641
2642
2643
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2640

def create_slot_type(params = {}, options = {})
  req = build_request(:create_slot_type, params)
  req.send_request(options)
end

#create_test_set_discrepancy_report(params = {}) ⇒ Types::CreateTestSetDiscrepancyReportResponse

Create a report that describes the differences between the bot and the test set.

Examples:

Request syntax with placeholder values


resp = client.create_test_set_discrepancy_report({
  test_set_id: "Id", # required
  target: { # required
    bot_alias_target: {
      bot_id: "Id", # required
      bot_alias_id: "BotAliasId", # required
      locale_id: "LocaleId", # required
    },
  },
})

Response structure


resp.test_set_discrepancy_report_id #=> String
resp.creation_date_time #=> Time
resp.test_set_id #=> String
resp.target.bot_alias_target.bot_id #=> String
resp.target.bot_alias_target.bot_alias_id #=> String
resp.target.bot_alias_target.locale_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



2687
2688
2689
2690
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2687

def create_test_set_discrepancy_report(params = {}, options = {})
  req = build_request(:create_test_set_discrepancy_report, params)
  req.send_request(options)
end

#create_upload_url(params = {}) ⇒ Types::CreateUploadUrlResponse

Gets a pre-signed S3 write URL that you use to upload the zip archive when importing a bot or a bot locale.

Examples:

Response structure


resp.import_id #=> String
resp.upload_url #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



2709
2710
2711
2712
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2709

def create_upload_url(params = {}, options = {})
  req = build_request(:create_upload_url, params)
  req.send_request(options)
end

#delete_bot(params = {}) ⇒ Types::DeleteBotResponse

Deletes all versions of a bot, including the Draft version. To delete a specific version, use the DeleteBotVersion operation.

When you delete a bot, all of the resources contained in the bot are also deleted. Deleting a bot removes all locales, intents, slot, and slot types defined for the bot.

If a bot has an alias, the DeleteBot operation returns a ResourceInUseException exception. If you want to delete the bot and the alias, set the skipResourceInUseCheck parameter to true.

Examples:

Request syntax with placeholder values


resp = client.delete_bot({
  bot_id: "Id", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.bot_id #=> String
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to delete.

  • :skip_resource_in_use_check (Boolean)

    By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ResourceInUseException exception if the bot is being used by another resource. Set this parameter to true to skip this check and remove the bot even if it is being used by another resource.

Returns:

See Also:



2756
2757
2758
2759
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2756

def delete_bot(params = {}, options = {})
  req = build_request(:delete_bot, params)
  req.send_request(options)
end

#delete_bot_alias(params = {}) ⇒ Types::DeleteBotAliasResponse

Deletes the specified bot alias.

Examples:

Request syntax with placeholder values


resp = client.delete_bot_alias({
  bot_alias_id: "BotAliasId", # required
  bot_id: "Id", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.bot_alias_id #=> String
resp.bot_id #=> String
resp.bot_alias_status #=> String, one of "Creating", "Available", "Deleting", "Failed"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_alias_id (required, String)

    The unique identifier of the bot alias to delete.

  • :bot_id (required, String)

    The unique identifier of the bot associated with the alias to delete.

  • :skip_resource_in_use_check (Boolean)

    By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.

Returns:

See Also:



2800
2801
2802
2803
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2800

def delete_bot_alias(params = {}, options = {})
  req = build_request(:delete_bot_alias, params)
  req.send_request(options)
end

#delete_bot_locale(params = {}) ⇒ Types::DeleteBotLocaleResponse

Removes a locale from a bot.

When you delete a locale, all intents, slots, and slot types defined for the locale are also deleted.

Examples:

Request syntax with placeholder values


resp = client.delete_bot_locale({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the locale.

  • :bot_version (required, String)

    The version of the bot that contains the locale.

  • :locale_id (required, String)

    The identifier of the language and locale that will be deleted. The string must match one of the supported locales. For more information, see Supported languages.

Returns:

See Also:



2851
2852
2853
2854
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2851

def delete_bot_locale(params = {}, options = {})
  req = build_request(:delete_bot_locale, params)
  req.send_request(options)
end

#delete_bot_replica(params = {}) ⇒ Types::DeleteBotReplicaResponse

The action to delete the replicated bot in the secondary region.

Examples:

Request syntax with placeholder values


resp = client.delete_bot_replica({
  bot_id: "Id", # required
  replica_region: "ReplicaRegion", # required
})

Response structure


resp.bot_id #=> String
resp.replica_region #=> String
resp.bot_replica_status #=> String, one of "Enabling", "Enabled", "Deleting", "Failed"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique ID of the replicated bot to be deleted from the secondary region

  • :replica_region (required, String)

    The secondary region of the replicated bot that will be deleted.

Returns:

See Also:



2888
2889
2890
2891
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2888

def delete_bot_replica(params = {}, options = {})
  req = build_request(:delete_bot_replica, params)
  req.send_request(options)
end

#delete_bot_version(params = {}) ⇒ Types::DeleteBotVersionResponse

Deletes a specific version of a bot. To delete all versions of a bot, use the DeleteBot operation.

Examples:

Request syntax with placeholder values


resp = client.delete_bot_version({
  bot_id: "Id", # required
  bot_version: "NumericalBotVersion", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot that contains the version.

  • :bot_version (required, String)

    The version of the bot to delete.

  • :skip_resource_in_use_check (Boolean)

    By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ResourceInUseException exception if the version is being used by another resource. Set this parameter to true to skip this check and remove the version even if it is being used by another resource.

Returns:

See Also:



2938
2939
2940
2941
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2938

def delete_bot_version(params = {}, options = {})
  req = build_request(:delete_bot_version, params)
  req.send_request(options)
end

#delete_custom_vocabulary(params = {}) ⇒ Types::DeleteCustomVocabularyResponse

Removes a custom vocabulary from the specified locale in the specified bot.

Examples:

Request syntax with placeholder values


resp = client.delete_custom_vocabulary({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.custom_vocabulary_status #=> String, one of "Ready", "Deleting", "Exporting", "Importing", "Creating"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot to remove the custom vocabulary from.

  • :bot_version (required, String)

    The version of the bot to remove the custom vocabulary from.

  • :locale_id (required, String)

    The locale identifier for the locale that contains the custom vocabulary to remove.

Returns:

See Also:



2982
2983
2984
2985
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 2982

def delete_custom_vocabulary(params = {}, options = {})
  req = build_request(:delete_custom_vocabulary, params)
  req.send_request(options)
end

#delete_export(params = {}) ⇒ Types::DeleteExportResponse

Removes a previous export and the associated files stored in an S3 bucket.

Examples:

Request syntax with placeholder values


resp = client.delete_export({
  export_id: "Id", # required
})

Response structure


resp.export_id #=> String
resp.export_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :export_id (required, String)

    The unique identifier of the export to delete.

Returns:

See Also:



3013
3014
3015
3016
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3013

def delete_export(params = {}, options = {})
  req = build_request(:delete_export, params)
  req.send_request(options)
end

#delete_import(params = {}) ⇒ Types::DeleteImportResponse

Removes a previous import and the associated file stored in an S3 bucket.

Examples:

Request syntax with placeholder values


resp = client.delete_import({
  import_id: "Id", # required
})

Response structure


resp.import_id #=> String
resp.import_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :import_id (required, String)

    The unique identifier of the import to delete.

Returns:

See Also:



3044
3045
3046
3047
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3044

def delete_import(params = {}, options = {})
  req = build_request(:delete_import, params)
  req.send_request(options)
end

#delete_intent(params = {}) ⇒ Struct

Removes the specified intent.

Deleting an intent also deletes the slots associated with the intent.

Examples:

Request syntax with placeholder values


resp = client.delete_intent({
  intent_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :intent_id (required, String)

    The unique identifier of the intent to delete.

  • :bot_id (required, String)

    The identifier of the bot associated with the intent.

  • :bot_version (required, String)

    The version of the bot associated with the intent.

  • :locale_id (required, String)

    The identifier of the language and locale where the bot will be deleted. The string must match one of the supported locales. For more information, see Supported languages.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3086
3087
3088
3089
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3086

def delete_intent(params = {}, options = {})
  req = build_request(:delete_intent, params)
  req.send_request(options)
end

#delete_resource_policy(params = {}) ⇒ Types::DeleteResourcePolicyResponse

Removes an existing policy from a bot or bot alias. If the resource doesn't have a policy attached, Amazon Lex returns an exception.

Examples:

Request syntax with placeholder values


resp = client.delete_resource_policy({
  resource_arn: "AmazonResourceName", # required
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that has the resource policy attached.

  • :expected_revision_id (String)

    The identifier of the revision to edit. If this ID doesn't match the current revision number, Amazon Lex returns an exception

    If you don't specify a revision ID, Amazon Lex will delete the current policy.

Returns:

See Also:



3126
3127
3128
3129
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3126

def delete_resource_policy(params = {}, options = {})
  req = build_request(:delete_resource_policy, params)
  req.send_request(options)
end

#delete_resource_policy_statement(params = {}) ⇒ Types::DeleteResourcePolicyStatementResponse

Deletes a policy statement from a resource policy. If you delete the last statement from a policy, the policy is deleted. If you specify a statement ID that doesn't exist in the policy, or if the bot or bot alias doesn't have a policy attached, Amazon Lex returns an exception.

You need to add the DeleteResourcePolicy or UpdateResourcePolicy action to the bot role in order to call the API.

Examples:

Request syntax with placeholder values


resp = client.delete_resource_policy_statement({
  resource_arn: "AmazonResourceName", # required
  statement_id: "Name", # required
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

  • :statement_id (required, String)

    The name of the statement (SID) to delete from the policy.

  • :expected_revision_id (String)

    The identifier of the revision of the policy to delete the statement from. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.

    If you don't specify a revision, Amazon Lex removes the current contents of the statement.

Returns:

See Also:



3177
3178
3179
3180
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3177

def delete_resource_policy_statement(params = {}, options = {})
  req = build_request(:delete_resource_policy_statement, params)
  req.send_request(options)
end

#delete_slot(params = {}) ⇒ Struct

Deletes the specified slot from an intent.

Examples:

Request syntax with placeholder values


resp = client.delete_slot({
  slot_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  intent_id: "Id", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_id (required, String)

    The identifier of the slot to delete.

  • :bot_id (required, String)

    The identifier of the bot associated with the slot to delete.

  • :bot_version (required, String)

    The version of the bot associated with the slot to delete.

  • :locale_id (required, String)

    The identifier of the language and locale that the slot will be deleted from. The string must match one of the supported locales. For more information, see Supported languages.

  • :intent_id (required, String)

    The identifier of the intent associated with the slot.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3221
3222
3223
3224
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3221

def delete_slot(params = {}, options = {})
  req = build_request(:delete_slot, params)
  req.send_request(options)
end

#delete_slot_type(params = {}) ⇒ Struct

Deletes a slot type from a bot locale.

If a slot is using the slot type, Amazon Lex throws a ResourceInUseException exception. To avoid the exception, set the skipResourceInUseCheck parameter to true.

Examples:

Request syntax with placeholder values


resp = client.delete_slot_type({
  slot_type_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  skip_resource_in_use_check: false,
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_type_id (required, String)

    The identifier of the slot type to delete.

  • :bot_id (required, String)

    The identifier of the bot associated with the slot type.

  • :bot_version (required, String)

    The version of the bot associated with the slot type.

  • :locale_id (required, String)

    The identifier of the language and locale that the slot type will be deleted from. The string must match one of the supported locales. For more information, see Supported languages.

  • :skip_resource_in_use_check (Boolean)

    By default, the DeleteSlotType operations throws a ResourceInUseException exception if you try to delete a slot type used by a slot. Set the skipResourceInUseCheck parameter to true to skip this check and remove the slot type even if a slot uses it.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3272
3273
3274
3275
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3272

def delete_slot_type(params = {}, options = {})
  req = build_request(:delete_slot_type, params)
  req.send_request(options)
end

#delete_test_set(params = {}) ⇒ Struct

The action to delete the selected test set.

Examples:

Request syntax with placeholder values


resp = client.delete_test_set({
  test_set_id: "Id", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_id (required, String)

    The test set Id of the test set to be deleted.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3294
3295
3296
3297
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3294

def delete_test_set(params = {}, options = {})
  req = build_request(:delete_test_set, params)
  req.send_request(options)
end

#delete_utterances(params = {}) ⇒ Struct

Deletes stored utterances.

Amazon Lex stores the utterances that users send to your bot. Utterances are stored for 15 days for use with the ListAggregatedUtterances operation, and then stored indefinitely for use in improving the ability of your bot to respond to user input..

Use the DeleteUtterances operation to manually delete utterances for a specific session. When you use the DeleteUtterances operation, utterances stored for improving your bot's ability to respond to user input are deleted immediately. Utterances stored for use with the ListAggregatedUtterances operation are deleted after 15 days.

Examples:

Request syntax with placeholder values


resp = client.delete_utterances({
  bot_id: "Id", # required
  locale_id: "LocaleId",
  session_id: "SessionId",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the utterances.

  • :locale_id (String)

    The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see Supported languages.

  • :session_id (String)

    The unique identifier of the session with the user. The ID is returned in the response from the RecognizeText and RecognizeUtterance operations.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3353
3354
3355
3356
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3353

def delete_utterances(params = {}, options = {})
  req = build_request(:delete_utterances, params)
  req.send_request(options)
end

#describe_bot(params = {}) ⇒ Types::DescribeBotResponse

Provides metadata information about a bot.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_available

Examples:

Request syntax with placeholder values


resp = client.describe_bot({
  bot_id: "Id", # required
})

Response structure


resp.bot_id #=> String
resp.bot_name #=> String
resp.description #=> String
resp.role_arn #=> String
resp.data_privacy.child_directed #=> Boolean
resp.idle_session_ttl_in_seconds #=> Integer
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.bot_type #=> String, one of "Bot", "BotNetwork"
resp.bot_members #=> Array
resp.bot_members[0].bot_member_id #=> String
resp.bot_members[0].bot_member_name #=> String
resp.bot_members[0].bot_member_alias_id #=> String
resp.bot_members[0].bot_member_alias_name #=> String
resp.bot_members[0].bot_member_version #=> String
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot to describe.

Returns:

See Also:



3414
3415
3416
3417
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3414

def describe_bot(params = {}, options = {})
  req = build_request(:describe_bot, params)
  req.send_request(options)
end

#describe_bot_alias(params = {}) ⇒ Types::DescribeBotAliasResponse

Get information about a specific bot alias.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_alias_available

Examples:

Request syntax with placeholder values


resp = client.describe_bot_alias({
  bot_alias_id: "BotAliasId", # required
  bot_id: "Id", # required
})

Response structure


resp.bot_alias_id #=> String
resp.bot_alias_name #=> String
resp.description #=> String
resp.bot_version #=> String
resp.bot_alias_locale_settings #=> Hash
resp.bot_alias_locale_settings["LocaleId"].enabled #=> Boolean
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.lambda_arn #=> String
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.code_hook_interface_version #=> String
resp.conversation_log_settings.text_log_settings #=> Array
resp.conversation_log_settings.text_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.cloud_watch_log_group_arn #=> String
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.log_prefix #=> String
resp.conversation_log_settings.text_log_settings[0].selective_logging_enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings #=> Array
resp.conversation_log_settings.audio_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.kms_key_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.s3_bucket_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.log_prefix #=> String
resp.conversation_log_settings.audio_log_settings[0].selective_logging_enabled #=> Boolean
resp.sentiment_analysis_settings.detect_sentiment #=> Boolean
resp.bot_alias_history_events #=> Array
resp.bot_alias_history_events[0].bot_version #=> String
resp.bot_alias_history_events[0].start_date #=> Time
resp.bot_alias_history_events[0].end_date #=> Time
resp.bot_alias_status #=> String, one of "Creating", "Available", "Deleting", "Failed"
resp.bot_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.parent_bot_networks #=> Array
resp.parent_bot_networks[0].bot_id #=> String
resp.parent_bot_networks[0].bot_version #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_alias_id (required, String)

    The identifier of the bot alias to describe.

  • :bot_id (required, String)

    The identifier of the bot associated with the bot alias to describe.

Returns:

See Also:



3493
3494
3495
3496
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3493

def describe_bot_alias(params = {}, options = {})
  req = build_request(:describe_bot_alias, params)
  req.send_request(options)
end

#describe_bot_locale(params = {}) ⇒ Types::DescribeBotLocaleResponse

Describes the settings that a bot has for a specific locale.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_locale_built
  • bot_locale_created
  • bot_locale_express_testing_available

Examples:

Request syntax with placeholder values


resp = client.describe_bot_locale({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.locale_name #=> String
resp.description #=> String
resp.nlu_intent_confidence_threshold #=> Float
resp.voice_settings.voice_id #=> String
resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
resp.intents_count #=> Integer
resp.slot_types_count #=> Integer
resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp. #=> Time
resp.bot_locale_history_events #=> Array
resp.bot_locale_history_events[0].event #=> String
resp.bot_locale_history_events[0].event_date #=> Time
resp.recommended_actions #=> Array
resp.recommended_actions[0] #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.enabled #=> Boolean
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot associated with the locale.

  • :bot_version (required, String)

    The version of the bot associated with the locale.

  • :locale_id (required, String)

    The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see Supported languages.

Returns:

See Also:



3596
3597
3598
3599
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3596

def describe_bot_locale(params = {}, options = {})
  req = build_request(:describe_bot_locale, params)
  req.send_request(options)
end

#describe_bot_recommendation(params = {}) ⇒ Types::DescribeBotRecommendationResponse

Provides metadata information about a bot recommendation. This information will enable you to get a description on the request inputs, to download associated transcripts after processing is complete, and to download intents and slot-types generated by the bot recommendation.

Examples:

Request syntax with placeholder values


resp = client.describe_bot_recommendation({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  bot_recommendation_id: "Id", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_status #=> String, one of "Processing", "Deleting", "Deleted", "Downloading", "Updating", "Available", "Failed", "Stopping", "Stopped"
resp.bot_recommendation_id #=> String
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.s3_bucket_name #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes #=> Array
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes[0] #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_format #=> String, one of "Lex"
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.start_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.end_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.kms_key_arn #=> String
resp.encryption_setting.kms_key_arn #=> String
resp.encryption_setting.bot_locale_export_password #=> String
resp.encryption_setting.associated_transcripts_password #=> String
resp.bot_recommendation_results.bot_locale_export_url #=> String
resp.bot_recommendation_results.associated_transcripts_url #=> String
resp.bot_recommendation_results.statistics.intents.discovered_intent_count #=> Integer
resp.bot_recommendation_results.statistics.slot_types.discovered_slot_type_count #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot associated with the bot recommendation.

  • :bot_version (required, String)

    The version of the bot associated with the bot recommendation.

  • :locale_id (required, String)

    The identifier of the language and locale of the bot recommendation to describe. The string must match one of the supported locales. For more information, see Supported languages.

  • :bot_recommendation_id (required, String)

    The identifier of the bot recommendation to describe.

Returns:

See Also:



3679
3680
3681
3682
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3679

def describe_bot_recommendation(params = {}, options = {})
  req = build_request(:describe_bot_recommendation, params)
  req.send_request(options)
end

#describe_bot_replica(params = {}) ⇒ Types::DescribeBotReplicaResponse

Monitors the bot replication status through the UI console.

Examples:

Request syntax with placeholder values


resp = client.describe_bot_replica({
  bot_id: "Id", # required
  replica_region: "ReplicaRegion", # required
})

Response structure


resp.bot_id #=> String
resp.replica_region #=> String
resp.source_region #=> String
resp.creation_date_time #=> Time
resp.bot_replica_status #=> String, one of "Enabling", "Enabled", "Deleting", "Failed"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The request for the unique bot ID of the replicated bot being monitored.

  • :replica_region (required, String)

    The request for the region of the replicated bot being monitored.

Returns:

See Also:



3723
3724
3725
3726
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3723

def describe_bot_replica(params = {}, options = {})
  req = build_request(:describe_bot_replica, params)
  req.send_request(options)
end

#describe_bot_resource_generation(params = {}) ⇒ Types::DescribeBotResourceGenerationResponse

Returns information about a request to generate a bot through natural language description, made through the StartBotResource API. Use the generatedBotLocaleUrl to retrieve the Amazon S3 object containing the bot locale configuration. You can then modify and import this configuration.

Examples:

Request syntax with placeholder values


resp = client.describe_bot_resource_generation({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  generation_id: "Id", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.generation_id #=> String
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.generation_status #=> String, one of "Failed", "Complete", "InProgress"
resp.generation_input_prompt #=> String
resp.generated_bot_locale_url #=> String
resp.creation_date_time #=> Time
resp.model_arn #=> String
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot for which to return the generation details.

  • :bot_version (required, String)

    The version of the bot for which to return the generation details.

  • :locale_id (required, String)

    The locale of the bot for which to return the generation details.

  • :generation_id (required, String)

    The unique identifier of the generation request for which to return the generation details.

Returns:

See Also:



3790
3791
3792
3793
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3790

def describe_bot_resource_generation(params = {}, options = {})
  req = build_request(:describe_bot_resource_generation, params)
  req.send_request(options)
end

#describe_bot_version(params = {}) ⇒ Types::DescribeBotVersionResponse

Provides metadata about a version of a bot.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_version_available

Examples:

Request syntax with placeholder values


resp = client.describe_bot_version({
  bot_id: "Id", # required
  bot_version: "NumericalBotVersion", # required
})

Response structure


resp.bot_id #=> String
resp.bot_name #=> String
resp.bot_version #=> String
resp.description #=> String
resp.role_arn #=> String
resp.data_privacy.child_directed #=> Boolean
resp.idle_session_ttl_in_seconds #=> Integer
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.creation_date_time #=> Time
resp.parent_bot_networks #=> Array
resp.parent_bot_networks[0].bot_id #=> String
resp.parent_bot_networks[0].bot_version #=> String
resp.bot_type #=> String, one of "Bot", "BotNetwork"
resp.bot_members #=> Array
resp.bot_members[0].bot_member_id #=> String
resp.bot_members[0].bot_member_name #=> String
resp.bot_members[0].bot_member_alias_id #=> String
resp.bot_members[0].bot_member_alias_name #=> String
resp.bot_members[0].bot_member_version #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot containing the version to return metadata for.

  • :bot_version (required, String)

    The version of the bot to return metadata for.

Returns:

See Also:



3860
3861
3862
3863
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3860

def describe_bot_version(params = {}, options = {})
  req = build_request(:describe_bot_version, params)
  req.send_request(options)
end

#describe_custom_vocabulary_metadata(params = {}) ⇒ Types::DescribeCustomVocabularyMetadataResponse

Provides metadata information about a custom vocabulary.

Examples:

Request syntax with placeholder values


resp = client.({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.custom_vocabulary_status #=> String, one of "Ready", "Deleting", "Exporting", "Importing", "Creating"
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the custom vocabulary.

  • :bot_version (required, String)

    The bot version of the bot to return metadata for.

  • :locale_id (required, String)

    The locale to return the custom vocabulary information for. The locale must be en_GB.

Returns:

See Also:



3907
3908
3909
3910
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3907

def (params = {}, options = {})
  req = build_request(:describe_custom_vocabulary_metadata, params)
  req.send_request(options)
end

#describe_export(params = {}) ⇒ Types::DescribeExportResponse

Gets information about a specific export.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_export_completed

Examples:

Request syntax with placeholder values


resp = client.describe_export({
  export_id: "Id", # required
})

Response structure


resp.export_id #=> String
resp.resource_specification.bot_export_specification.bot_id #=> String
resp.resource_specification.bot_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.bot_id #=> String
resp.resource_specification.bot_locale_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.locale_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_version #=> String
resp.resource_specification.custom_vocabulary_export_specification.locale_id #=> String
resp.resource_specification.test_set_export_specification.test_set_id #=> String
resp.file_format #=> String, one of "LexJson", "TSV", "CSV"
resp.export_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.download_url #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :export_id (required, String)

    The unique identifier of the export to describe.

Returns:

See Also:



3963
3964
3965
3966
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 3963

def describe_export(params = {}, options = {})
  req = build_request(:describe_export, params)
  req.send_request(options)
end

#describe_import(params = {}) ⇒ Types::DescribeImportResponse

Gets information about a specific import.

The following waiters are defined for this operation (see #wait_until for detailed usage):

  • bot_import_completed

Examples:

Request syntax with placeholder values


resp = client.describe_import({
  import_id: "Id", # required
})

Response structure


resp.import_id #=> String
resp.resource_specification.bot_import_specification.bot_name #=> String
resp.resource_specification.bot_import_specification.role_arn #=> String
resp.resource_specification.bot_import_specification.data_privacy.child_directed #=> Boolean
resp.resource_specification.bot_import_specification.idle_session_ttl_in_seconds #=> Integer
resp.resource_specification.bot_import_specification.bot_tags #=> Hash
resp.resource_specification.bot_import_specification.bot_tags["TagKey"] #=> String
resp.resource_specification.bot_import_specification.test_bot_alias_tags #=> Hash
resp.resource_specification.bot_import_specification.test_bot_alias_tags["TagKey"] #=> String
resp.resource_specification.bot_locale_import_specification.bot_id #=> String
resp.resource_specification.bot_locale_import_specification.bot_version #=> String
resp.resource_specification.bot_locale_import_specification.locale_id #=> String
resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
resp.resource_specification.test_set_import_resource_specification.test_set_name #=> String
resp.resource_specification.test_set_import_resource_specification.description #=> String
resp.resource_specification.test_set_import_resource_specification.role_arn #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.s3_bucket_name #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.s3_path #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.kms_key_arn #=> String
resp.resource_specification.test_set_import_resource_specification.import_input_location.s3_bucket_name #=> String
resp.resource_specification.test_set_import_resource_specification.import_input_location.s3_path #=> String
resp.resource_specification.test_set_import_resource_specification.modality #=> String, one of "Text", "Audio"
resp.resource_specification.test_set_import_resource_specification.test_set_tags #=> Hash
resp.resource_specification.test_set_import_resource_specification.test_set_tags["TagKey"] #=> String
resp.imported_resource_id #=> String
resp.imported_resource_name #=> String
resp.merge_strategy #=> String, one of "Overwrite", "FailOnConflict", "Append"
resp.import_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :import_id (required, String)

    The unique identifier of the import to describe.

Returns:

See Also:



4040
4041
4042
4043
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 4040

def describe_import(params = {}, options = {})
  req = build_request(:describe_import, params)
  req.send_request(options)
end

#describe_intent(params = {}) ⇒ Types::DescribeIntentResponse

Returns metadata about an intent.

Examples:

Request syntax with placeholder values


resp = client.describe_intent({
  intent_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :intent_id (required, String)

    The identifier of the intent to describe.

  • :bot_id (required, String)

    The identifier of the bot associated with the intent.

  • :bot_version (required, String)

    The version of the bot associated with the intent.

  • :locale_id (required, String)

    The identifier of the language and locale of the intent to describe. The string must match one of the supported locales. For more information, see Supported languages.

Returns:

See Also:



4101
4102
4103
4104
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 4101

def describe_intent(params = {}, options = {})
  req = build_request(:describe_intent, params)
  req.send_request(options)
end

#describe_resource_policy(params = {}) ⇒ Types::DescribeResourcePolicyResponse

Gets the resource policy and policy revision for a bot or bot alias.

Examples:

Request syntax with placeholder values


resp = client.describe_resource_policy({
  resource_arn: "AmazonResourceName", # required
})

Response structure


resp.resource_arn #=> String
resp.policy #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

Returns:

See Also:



4134
4135
4136
4137
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 4134

def describe_resource_policy(params = {}, options = {})
  req = build_request(:describe_resource_policy, params)
  req.send_request(options)
end

#describe_slot(params = {}) ⇒ Types::DescribeSlotResponse

Gets metadata information about a slot.

Examples:

Request syntax with placeholder values


resp = client.describe_slot({
  slot_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  intent_id: "Id", # required
})

Response structure


resp.slot_id #=> String
resp.slot_name #=> String
resp.description #=> String
resp.slot_type_id #=> String
resp.value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.value_elicitation_setting.slot_constraint #=> String, one of "Required", "Optional"
resp.value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.sample_utterances #=> Array
resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_resolution_setting.slot_resolution_strategy #=> String, one of "EnhancedFallback", "Default"
resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.multiple_values_setting.allow_multiple_values #=> Boolean
resp.sub_slot_setting.expression #=> String
resp.sub_slot_setting.slot_specifications #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_id (required, String)

    The unique identifier for the slot.

  • :bot_id (required, String)

    The identifier of the bot associated with the slot.

  • :bot_version (required, String)

    The version of the bot associated with the slot.

  • :locale_id (required, String)

    The identifier of the language and locale of the slot to describe. The string must match one of the supported locales. For more information, see Supported languages.

  • :intent_id (required, String)

    The identifier of the intent that contains the slot.

Returns:

See Also:



4928
4929
4930
4931
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 4928

def describe_slot(params = {}, options = {})
  req = build_request(:describe_slot, params)
  req.send_request(options)
end

#describe_slot_type(params = {}) ⇒ Types::DescribeSlotTypeResponse

Gets metadata information about a slot type.

Examples:

Request syntax with placeholder values


resp = client.describe_slot_type({
  slot_type_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.slot_type_id #=> String
resp.slot_type_name #=> String
resp.description #=> String
resp.slot_type_values #=> Array
resp.slot_type_values[0].sample_value.value #=> String
resp.slot_type_values[0].synonyms #=> Array
resp.slot_type_values[0].synonyms[0].value #=> String
resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
resp.value_selection_setting.regex_filter.pattern #=> String
resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
resp.parent_slot_type_signature #=> String
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
resp.composite_slot_type_setting.sub_slots #=> Array
resp.composite_slot_type_setting.sub_slots[0].name #=> String
resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_type_id (required, String)

    The identifier of the slot type.

  • :bot_id (required, String)

    The identifier of the bot associated with the slot type.

  • :bot_version (required, String)

    The version of the bot associated with the slot type.

  • :locale_id (required, String)

    The identifier of the language and locale of the slot type to describe. The string must match one of the supported locales. For more information, see Supported languages.

Returns:

See Also:



5007
5008
5009
5010
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5007

def describe_slot_type(params = {}, options = {})
  req = build_request(:describe_slot_type, params)
  req.send_request(options)
end

#describe_test_execution(params = {}) ⇒ Types::DescribeTestExecutionResponse

Gets metadata information about the test execution.

Examples:

Request syntax with placeholder values


resp = client.describe_test_execution({
  test_execution_id: "Id", # required
})

Response structure


resp.test_execution_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.test_execution_status #=> String, one of "Pending", "Waiting", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
resp.test_set_id #=> String
resp.test_set_name #=> String
resp.target.bot_alias_target.bot_id #=> String
resp.target.bot_alias_target.bot_alias_id #=> String
resp.target.bot_alias_target.locale_id #=> String
resp.api_mode #=> String, one of "Streaming", "NonStreaming"
resp.test_execution_modality #=> String, one of "Text", "Audio"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_execution_id (required, String)

    The execution Id of the test set execution.

Returns:

See Also:



5056
5057
5058
5059
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5056

def describe_test_execution(params = {}, options = {})
  req = build_request(:describe_test_execution, params)
  req.send_request(options)
end

#describe_test_set(params = {}) ⇒ Types::DescribeTestSetResponse

Gets metadata information about the test set.

Examples:

Request syntax with placeholder values


resp = client.describe_test_set({
  test_set_id: "Id", # required
})

Response structure


resp.test_set_id #=> String
resp.test_set_name #=> String
resp.description #=> String
resp.modality #=> String, one of "Text", "Audio"
resp.status #=> String, one of "Importing", "PendingAnnotation", "Deleting", "ValidationError", "Ready"
resp.role_arn #=> String
resp.num_turns #=> Integer
resp.storage_location.s3_bucket_name #=> String
resp.storage_location.s3_path #=> String
resp.storage_location.kms_key_arn #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_id (required, String)

    The test set Id for the test set request.

Returns:

See Also:



5104
5105
5106
5107
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5104

def describe_test_set(params = {}, options = {})
  req = build_request(:describe_test_set, params)
  req.send_request(options)
end

#describe_test_set_discrepancy_report(params = {}) ⇒ Types::DescribeTestSetDiscrepancyReportResponse

Gets metadata information about the test set discrepancy report.

Examples:

Request syntax with placeholder values


resp = client.describe_test_set_discrepancy_report({
  test_set_discrepancy_report_id: "Id", # required
})

Response structure


resp.test_set_discrepancy_report_id #=> String
resp.test_set_id #=> String
resp.creation_date_time #=> Time
resp.target.bot_alias_target.bot_id #=> String
resp.target.bot_alias_target.bot_alias_id #=> String
resp.target.bot_alias_target.locale_id #=> String
resp.test_set_discrepancy_report_status #=> String, one of "InProgress", "Completed", "Failed"
resp.last_updated_data_time #=> Time
resp.test_set_discrepancy_top_errors.intent_discrepancies #=> Array
resp.test_set_discrepancy_top_errors.intent_discrepancies[0].intent_name #=> String
resp.test_set_discrepancy_top_errors.intent_discrepancies[0].error_message #=> String
resp.test_set_discrepancy_top_errors.slot_discrepancies #=> Array
resp.test_set_discrepancy_top_errors.slot_discrepancies[0].intent_name #=> String
resp.test_set_discrepancy_top_errors.slot_discrepancies[0].slot_name #=> String
resp.test_set_discrepancy_top_errors.slot_discrepancies[0].error_message #=> String
resp.test_set_discrepancy_raw_output_url #=> String
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_discrepancy_report_id (required, String)

    The unique identifier of the test set discrepancy report.

Returns:

See Also:



5157
5158
5159
5160
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5157

def describe_test_set_discrepancy_report(params = {}, options = {})
  req = build_request(:describe_test_set_discrepancy_report, params)
  req.send_request(options)
end

#describe_test_set_generation(params = {}) ⇒ Types::DescribeTestSetGenerationResponse

Gets metadata information about the test set generation.

Examples:

Request syntax with placeholder values


resp = client.describe_test_set_generation({
  test_set_generation_id: "Id", # required
})

Response structure


resp.test_set_generation_id #=> String
resp.test_set_generation_status #=> String, one of "Generating", "Ready", "Failed", "Pending"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.test_set_id #=> String
resp.test_set_name #=> String
resp.description #=> String
resp.storage_location.s3_bucket_name #=> String
resp.storage_location.s3_path #=> String
resp.storage_location.kms_key_arn #=> String
resp.generation_data_source.conversation_logs_data_source.bot_id #=> String
resp.generation_data_source.conversation_logs_data_source.bot_alias_id #=> String
resp.generation_data_source.conversation_logs_data_source.locale_id #=> String
resp.generation_data_source.conversation_logs_data_source.filter.start_time #=> Time
resp.generation_data_source.conversation_logs_data_source.filter.end_time #=> Time
resp.generation_data_source.conversation_logs_data_source.filter.input_mode #=> String, one of "Speech", "Text"
resp.role_arn #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_generation_id (required, String)

    The unique identifier of the test set generation.

Returns:

See Also:



5213
5214
5215
5216
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5213

def describe_test_set_generation(params = {}, options = {})
  req = build_request(:describe_test_set_generation, params)
  req.send_request(options)
end

#generate_bot_element(params = {}) ⇒ Types::GenerateBotElementResponse

Generates sample utterances for an intent.

Examples:

Request syntax with placeholder values


resp = client.generate_bot_element({
  intent_id: "Id", # required
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_id #=> String
resp.sample_utterances #=> Array
resp.sample_utterances[0].utterance #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :intent_id (required, String)

    The intent unique Id for the bot request to generate utterances.

  • :bot_id (required, String)

    The bot unique Id for the bot request to generate utterances.

  • :bot_version (required, String)

    The bot version for the bot request to generate utterances.

  • :locale_id (required, String)

    The unique locale Id for the bot request to generate utterances.

Returns:

See Also:



5262
5263
5264
5265
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5262

def generate_bot_element(params = {}, options = {})
  req = build_request(:generate_bot_element, params)
  req.send_request(options)
end

#get_test_execution_artifacts_url(params = {}) ⇒ Types::GetTestExecutionArtifactsUrlResponse

The pre-signed Amazon S3 URL to download the test execution result artifacts.

Examples:

Request syntax with placeholder values


resp = client.get_test_execution_artifacts_url({
  test_execution_id: "Id", # required
})

Response structure


resp.test_execution_id #=> String
resp.download_artifacts_url #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_execution_id (required, String)

    The unique identifier of the completed test execution.

Returns:

See Also:



5293
5294
5295
5296
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5293

def get_test_execution_artifacts_url(params = {}, options = {})
  req = build_request(:get_test_execution_artifacts_url, params)
  req.send_request(options)
end

#list_aggregated_utterances(params = {}) ⇒ Types::ListAggregatedUtterancesResponse

Provides a list of utterances that users have sent to the bot.

Utterances are aggregated by the text of the utterance. For example, all instances where customers used the phrase "I want to order pizza" are aggregated into the same line in the response.

You can see both detected utterances and missed utterances. A detected utterance is where the bot properly recognized the utterance and activated the associated intent. A missed utterance was not recognized by the bot and didn't activate an intent.

Utterances can be aggregated for a bot alias or for a bot version, but not both at the same time.

Utterances statistics are not generated under the following conditions:

  • The childDirected field was set to true when the bot was created.

  • You are using slot obfuscation with one or more slots.

  • You opted out of participating in improving Amazon Lex.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_aggregated_utterances({
  bot_id: "Id", # required
  bot_alias_id: "BotAliasId",
  bot_version: "BotVersion",
  locale_id: "LocaleId", # required
  aggregation_duration: { # required
    relative_aggregation_duration: { # required
      time_dimension: "Hours", # required, accepts Hours, Days, Weeks
      time_value: 1, # required
    },
  },
  sort_by: {
    attribute: "HitCount", # required, accepts HitCount, MissedCount
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "Utterance", # required, accepts Utterance
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_alias_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.aggregation_duration.relative_aggregation_duration.time_dimension #=> String, one of "Hours", "Days", "Weeks"
resp.aggregation_duration.relative_aggregation_duration.time_value #=> Integer
resp.aggregation_window_start_time #=> Time
resp.aggregation_window_end_time #=> Time
resp.aggregation_last_refreshed_date_time #=> Time
resp.aggregated_utterances_summaries #=> Array
resp.aggregated_utterances_summaries[0].utterance #=> String
resp.aggregated_utterances_summaries[0].hit_count #=> Integer
resp.aggregated_utterances_summaries[0].missed_count #=> Integer
resp.aggregated_utterances_summaries[0].utterance_first_recorded_in_aggregation_duration #=> Time
resp.aggregated_utterances_summaries[0].utterance_last_recorded_in_aggregation_duration #=> Time
resp.aggregated_utterances_summaries[0].contains_data_from_deleted_resources #=> Boolean
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot associated with this request.

  • :bot_alias_id (String)

    The identifier of the bot alias associated with this request. If you specify the bot alias, you can't specify the bot version.

  • :bot_version (String)

    The identifier of the bot version associated with this request. If you specify the bot version, you can't specify the bot alias.

  • :locale_id (required, String)

    The identifier of the language and locale where the utterances were collected. For more information, see Supported languages.

  • :aggregation_duration (required, Types::UtteranceAggregationDuration)

    The time window for aggregating the utterance information. You can specify a time between one hour and two weeks.

  • :sort_by (Types::AggregatedUtterancesSortBy)

    Specifies sorting parameters for the list of utterances. You can sort by the hit count, the missed count, or the number of distinct sessions the utterance appeared in.

  • :filters (Array<Types::AggregatedUtterancesFilter>)

    Provides the specification of a filter used to limit the utterances in the response to only those that match the filter specification. You can only specify one filter and one string to filter on.

  • :max_results (Integer)

    The maximum number of utterances to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned. If you don't specify the maxResults parameter, 1,000 results are returned.

  • :next_token (String)

    If the response from the ListAggregatedUtterances operation contains more results that specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



5433
5434
5435
5436
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5433

def list_aggregated_utterances(params = {}, options = {})
  req = build_request(:list_aggregated_utterances, params)
  req.send_request(options)
end

#list_bot_alias_replicas(params = {}) ⇒ Types::ListBotAliasReplicasResponse

The action to list the replicated bots created from the source bot alias.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_alias_replicas({
  bot_id: "Id", # required
  replica_region: "ReplicaRegion", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.source_region #=> String
resp.replica_region #=> String
resp.bot_alias_replica_summaries #=> Array
resp.bot_alias_replica_summaries[0].bot_alias_id #=> String
resp.bot_alias_replica_summaries[0].bot_alias_replication_status #=> String, one of "Creating", "Updating", "Available", "Deleting", "Failed"
resp.bot_alias_replica_summaries[0].bot_version #=> String
resp.bot_alias_replica_summaries[0].creation_date_time #=> Time
resp.bot_alias_replica_summaries[0].last_updated_date_time #=> Time
resp.bot_alias_replica_summaries[0].failure_reasons #=> Array
resp.bot_alias_replica_summaries[0].failure_reasons[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The request for the unique bot ID of the replicated bot created from the source bot alias.

  • :replica_region (required, String)

    The request for the secondary region of the replicated bot created from the source bot alias.

  • :max_results (Integer)

    The request for maximum results to list the replicated bots created from the source bot alias.

  • :next_token (String)

    The request for the next token for the replicated bot created from the source bot alias.

Returns:

See Also:



5495
5496
5497
5498
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5495

def list_bot_alias_replicas(params = {}, options = {})
  req = build_request(:list_bot_alias_replicas, params)
  req.send_request(options)
end

#list_bot_aliases(params = {}) ⇒ Types::ListBotAliasesResponse

Gets a list of aliases for the specified bot.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_aliases({
  bot_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_alias_summaries #=> Array
resp.bot_alias_summaries[0].bot_alias_id #=> String
resp.bot_alias_summaries[0].bot_alias_name #=> String
resp.bot_alias_summaries[0].description #=> String
resp.bot_alias_summaries[0].bot_version #=> String
resp.bot_alias_summaries[0].bot_alias_status #=> String, one of "Creating", "Available", "Deleting", "Failed"
resp.bot_alias_summaries[0].creation_date_time #=> Time
resp.bot_alias_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String
resp.bot_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to list aliases for.

  • :max_results (Integer)

    The maximum number of aliases to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBotAliases operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



5549
5550
5551
5552
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5549

def list_bot_aliases(params = {}, options = {})
  req = build_request(:list_bot_aliases, params)
  req.send_request(options)
end

#list_bot_locales(params = {}) ⇒ Types::ListBotLocalesResponse

Gets a list of locales for the specified bot.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_locales({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  sort_by: {
    attribute: "BotLocaleName", # required, accepts BotLocaleName
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "BotLocaleName", # required, accepts BotLocaleName
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.next_token #=> String
resp.bot_locale_summaries #=> Array
resp.bot_locale_summaries[0].locale_id #=> String
resp.bot_locale_summaries[0].locale_name #=> String
resp.bot_locale_summaries[0].description #=> String
resp.bot_locale_summaries[0].bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
resp.bot_locale_summaries[0].last_updated_date_time #=> Time
resp.bot_locale_summaries[0]. #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to list locales for.

  • :bot_version (required, String)

    The version of the bot to list locales for.

  • :sort_by (Types::BotLocaleSortBy)

    Specifies sorting parameters for the list of locales. You can sort by locale name in ascending or descending order.

  • :filters (Array<Types::BotLocaleFilter>)

    Provides the specification for a filter used to limit the response to only those locales that match the filter specification. You can only specify one filter and one value to filter on.

  • :max_results (Integer)

    The maximum number of aliases to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBotLocales operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token as the nextToken parameter to return the next page of results.

Returns:

See Also:



5628
5629
5630
5631
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5628

def list_bot_locales(params = {}, options = {})
  req = build_request(:list_bot_locales, params)
  req.send_request(options)
end

#list_bot_recommendations(params = {}) ⇒ Types::ListBotRecommendationsResponse

Get a list of bot recommendations that meet the specified criteria.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_recommendations({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_summaries #=> Array
resp.bot_recommendation_summaries[0].bot_recommendation_status #=> String, one of "Processing", "Deleting", "Deleted", "Downloading", "Updating", "Available", "Failed", "Stopping", "Stopped"
resp.bot_recommendation_summaries[0].bot_recommendation_id #=> String
resp.bot_recommendation_summaries[0].creation_date_time #=> Time
resp.bot_recommendation_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the bot recommendation list.

  • :bot_version (required, String)

    The version of the bot that contains the bot recommendation list.

  • :locale_id (required, String)

    The identifier of the language and locale of the bot recommendation list.

  • :max_results (Integer)

    The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBotRecommendation operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



5693
5694
5695
5696
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5693

def list_bot_recommendations(params = {}, options = {})
  req = build_request(:list_bot_recommendations, params)
  req.send_request(options)
end

#list_bot_replicas(params = {}) ⇒ Types::ListBotReplicasResponse

The action to list the replicated bots.

Examples:

Request syntax with placeholder values


resp = client.list_bot_replicas({
  bot_id: "Id", # required
})

Response structure


resp.bot_id #=> String
resp.source_region #=> String
resp.bot_replica_summaries #=> Array
resp.bot_replica_summaries[0].replica_region #=> String
resp.bot_replica_summaries[0].creation_date_time #=> Time
resp.bot_replica_summaries[0].bot_replica_status #=> String, one of "Enabling", "Enabled", "Deleting", "Failed"
resp.bot_replica_summaries[0].failure_reasons #=> Array
resp.bot_replica_summaries[0].failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The request for the unique bot IDs in the list of replicated bots.

Returns:

See Also:



5730
5731
5732
5733
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5730

def list_bot_replicas(params = {}, options = {})
  req = build_request(:list_bot_replicas, params)
  req.send_request(options)
end

#list_bot_resource_generations(params = {}) ⇒ Types::ListBotResourceGenerationsResponse

Lists the generation requests made for a bot locale.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_resource_generations({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  sort_by: {
    attribute: "creationStartTime", # required, accepts creationStartTime, lastUpdatedTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.generation_summaries #=> Array
resp.generation_summaries[0].generation_id #=> String
resp.generation_summaries[0].generation_status #=> String, one of "Failed", "Complete", "InProgress"
resp.generation_summaries[0].creation_date_time #=> Time
resp.generation_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot whose generation requests you want to view.

  • :bot_version (required, String)

    The version of the bot whose generation requests you want to view.

  • :locale_id (required, String)

    The locale of the bot whose generation requests you want to view.

  • :sort_by (Types::GenerationSortBy)

    An object containing information about the attribute and the method by which to sort the results

  • :max_results (Integer)

    The maximum number of results to return in the response.

  • :next_token (String)

    If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.

Returns:

See Also:



5800
5801
5802
5803
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5800

def list_bot_resource_generations(params = {}, options = {})
  req = build_request(:list_bot_resource_generations, params)
  req.send_request(options)
end

#list_bot_version_replicas(params = {}) ⇒ Types::ListBotVersionReplicasResponse

Contains information about all the versions replication statuses applicable for Global Resiliency.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_version_replicas({
  bot_id: "Id", # required
  replica_region: "ReplicaRegion", # required
  max_results: 1,
  next_token: "NextToken",
  sort_by: {
    attribute: "BotVersion", # required, accepts BotVersion
    order: "Ascending", # required, accepts Ascending, Descending
  },
})

Response structure


resp.bot_id #=> String
resp.source_region #=> String
resp.replica_region #=> String
resp.bot_version_replica_summaries #=> Array
resp.bot_version_replica_summaries[0].bot_version #=> String
resp.bot_version_replica_summaries[0].bot_version_replication_status #=> String, one of "Creating", "Available", "Deleting", "Failed"
resp.bot_version_replica_summaries[0].creation_date_time #=> Time
resp.bot_version_replica_summaries[0].failure_reasons #=> Array
resp.bot_version_replica_summaries[0].failure_reasons[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The request for the unique ID in the list of replicated bots.

  • :replica_region (required, String)

    The request for the region used in the list of replicated bots.

  • :max_results (Integer)

    The maximum results given in the list of replicated bots.

  • :next_token (String)

    The next token given in the list of replicated bots.

  • :sort_by (Types::BotVersionReplicaSortBy)

    The requested sort category for the list of replicated bots.

Returns:

See Also:



5863
5864
5865
5866
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5863

def list_bot_version_replicas(params = {}, options = {})
  req = build_request(:list_bot_version_replicas, params)
  req.send_request(options)
end

#list_bot_versions(params = {}) ⇒ Types::ListBotVersionsResponse

Gets information about all of the versions of a bot.

The ListBotVersions operation returns a summary of each version of a bot. For example, if a bot has three numbered versions, the ListBotVersions operation returns for summaries, one for each numbered version and one for the DRAFT version.

The ListBotVersions operation always returns at least one version, the DRAFT version.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bot_versions({
  bot_id: "Id", # required
  sort_by: {
    attribute: "BotVersion", # required, accepts BotVersion
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version_summaries #=> Array
resp.bot_version_summaries[0].bot_name #=> String
resp.bot_version_summaries[0].bot_version #=> String
resp.bot_version_summaries[0].description #=> String
resp.bot_version_summaries[0].bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.bot_version_summaries[0].creation_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot to list versions for.

  • :sort_by (Types::BotVersionSortBy)

    Specifies sorting parameters for the list of versions. You can specify that the list be sorted by version name in either ascending or descending order.

  • :max_results (Integer)

    The maximum number of versions to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response to the ListBotVersion operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



5932
5933
5934
5935
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 5932

def list_bot_versions(params = {}, options = {})
  req = build_request(:list_bot_versions, params)
  req.send_request(options)
end

#list_bots(params = {}) ⇒ Types::ListBotsResponse

Gets a list of available bots.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_bots({
  sort_by: {
    attribute: "BotName", # required, accepts BotName
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "BotName", # required, accepts BotName, BotType
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ, NE
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_summaries #=> Array
resp.bot_summaries[0].bot_id #=> String
resp.bot_summaries[0].bot_name #=> String
resp.bot_summaries[0].description #=> String
resp.bot_summaries[0].bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.bot_summaries[0].latest_bot_version #=> String
resp.bot_summaries[0].last_updated_date_time #=> Time
resp.bot_summaries[0].bot_type #=> String, one of "Bot", "BotNetwork"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :sort_by (Types::BotSortBy)

    Specifies sorting parameters for the list of bots. You can specify that the list be sorted by bot name in ascending or descending order.

  • :filters (Array<Types::BotFilter>)

    Provides the specification of a filter used to limit the bots in the response to only those that match the filter specification. You can only specify one filter and one string to filter on.

  • :max_results (Integer)

    The maximum number of bots to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBots operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListBots request to return the next page of results. For a complete set of results, call the ListBots operation until the nextToken returned in the response is null.

Returns:

See Also:



6004
6005
6006
6007
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6004

def list_bots(params = {}, options = {})
  req = build_request(:list_bots, params)
  req.send_request(options)
end

#list_built_in_intents(params = {}) ⇒ Types::ListBuiltInIntentsResponse

Gets a list of built-in intents provided by Amazon Lex that you can use in your bot.

To use a built-in intent as a the base for your own intent, include the built-in intent signature in the parentIntentSignature parameter when you call the CreateIntent operation. For more information, see CreateIntent.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_built_in_intents({
  locale_id: "LocaleId", # required
  sort_by: {
    attribute: "IntentSignature", # required, accepts IntentSignature
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.built_in_intent_summaries #=> Array
resp.built_in_intent_summaries[0].intent_signature #=> String
resp.built_in_intent_summaries[0].description #=> String
resp.next_token #=> String
resp.locale_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :locale_id (required, String)

    The identifier of the language and locale of the intents to list. The string must match one of the supported locales. For more information, see Supported languages.

  • :sort_by (Types::BuiltInIntentSortBy)

    Specifies sorting parameters for the list of built-in intents. You can specify that the list be sorted by the built-in intent signature in either ascending or descending order.

  • :max_results (Integer)

    The maximum number of built-in intents to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBuiltInIntents operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



6078
6079
6080
6081
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6078

def list_built_in_intents(params = {}, options = {})
  req = build_request(:list_built_in_intents, params)
  req.send_request(options)
end

#list_built_in_slot_types(params = {}) ⇒ Types::ListBuiltInSlotTypesResponse

Gets a list of built-in slot types that meet the specified criteria.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_built_in_slot_types({
  locale_id: "LocaleId", # required
  sort_by: {
    attribute: "SlotTypeSignature", # required, accepts SlotTypeSignature
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.built_in_slot_type_summaries #=> Array
resp.built_in_slot_type_summaries[0].slot_type_signature #=> String
resp.built_in_slot_type_summaries[0].description #=> String
resp.next_token #=> String
resp.locale_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :locale_id (required, String)

    The identifier of the language and locale of the slot types to list. The string must match one of the supported locales. For more information, see Supported languages.

  • :sort_by (Types::BuiltInSlotTypeSortBy)

    Determines the sort order for the response from the ListBuiltInSlotTypes operation. You can choose to sort by the slot type signature in either ascending or descending order.

  • :max_results (Integer)

    The maximum number of built-in slot types to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListBuiltInSlotTypes operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



6142
6143
6144
6145
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6142

def list_built_in_slot_types(params = {}, options = {})
  req = build_request(:list_built_in_slot_types, params)
  req.send_request(options)
end

#list_custom_vocabulary_items(params = {}) ⇒ Types::ListCustomVocabularyItemsResponse

Paginated list of custom vocabulary items for a given bot locale's custom vocabulary.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_custom_vocabulary_items({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.custom_vocabulary_items #=> Array
resp.custom_vocabulary_items[0].item_id #=> String
resp.custom_vocabulary_items[0].phrase #=> String
resp.custom_vocabulary_items[0].weight #=> Integer
resp.custom_vocabulary_items[0].display_as #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the version of the bot associated with this custom vocabulary.

  • :bot_version (required, String)

    The bot version of the bot to the list custom vocabulary request.

  • :locale_id (required, String)

    The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).

  • :max_results (Integer)

    The maximum number of items returned by the list operation.

  • :next_token (String)

    The nextToken identifier to the list custom vocabulary request.

Returns:

See Also:



6205
6206
6207
6208
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6205

def list_custom_vocabulary_items(params = {}, options = {})
  req = build_request(:list_custom_vocabulary_items, params)
  req.send_request(options)
end

#list_exports(params = {}) ⇒ Types::ListExportsResponse

Lists the exports for a bot, bot locale, or custom vocabulary. Exports are kept in the list for 7 days.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_exports({
  bot_id: "Id",
  bot_version: "BotVersion",
  sort_by: {
    attribute: "LastUpdatedDateTime", # required, accepts LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "ExportResourceType", # required, accepts ExportResourceType
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
  locale_id: "LocaleId",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.export_summaries #=> Array
resp.export_summaries[0].export_id #=> String
resp.export_summaries[0].resource_specification.bot_export_specification.bot_id #=> String
resp.export_summaries[0].resource_specification.bot_export_specification.bot_version #=> String
resp.export_summaries[0].resource_specification.bot_locale_export_specification.bot_id #=> String
resp.export_summaries[0].resource_specification.bot_locale_export_specification.bot_version #=> String
resp.export_summaries[0].resource_specification.bot_locale_export_specification.locale_id #=> String
resp.export_summaries[0].resource_specification.custom_vocabulary_export_specification.bot_id #=> String
resp.export_summaries[0].resource_specification.custom_vocabulary_export_specification.bot_version #=> String
resp.export_summaries[0].resource_specification.custom_vocabulary_export_specification.locale_id #=> String
resp.export_summaries[0].resource_specification.test_set_export_specification.test_set_id #=> String
resp.export_summaries[0].file_format #=> String, one of "LexJson", "TSV", "CSV"
resp.export_summaries[0].export_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.export_summaries[0].creation_date_time #=> Time
resp.export_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String
resp.locale_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (String)

    The unique identifier that Amazon Lex assigned to the bot.

  • :bot_version (String)

    The version of the bot to list exports for.

  • :sort_by (Types::ExportSortBy)

    Determines the field that the list of exports is sorted by. You can sort by the LastUpdatedDateTime field in ascending or descending order.

  • :filters (Array<Types::ExportFilter>)

    Provides the specification of a filter used to limit the exports in the response to only those that match the filter specification. You can only specify one filter and one string to filter on.

  • :max_results (Integer)

    The maximum number of exports to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListExports operation contains more results that specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListExports request to return the next page of results. For a complete set of results, call the ListExports operation until the nextToken returned in the response is null.

  • :locale_id (String)

    Specifies the resources that should be exported. If you don't specify a resource type in the filters parameter, both bot locales and custom vocabularies are exported.

Returns:

See Also:



6306
6307
6308
6309
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6306

def list_exports(params = {}, options = {})
  req = build_request(:list_exports, params)
  req.send_request(options)
end

#list_imports(params = {}) ⇒ Types::ListImportsResponse

Lists the imports for a bot, bot locale, or custom vocabulary. Imports are kept in the list for 7 days.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_imports({
  bot_id: "Id",
  bot_version: "DraftBotVersion",
  sort_by: {
    attribute: "LastUpdatedDateTime", # required, accepts LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "ImportResourceType", # required, accepts ImportResourceType
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
  locale_id: "LocaleId",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.import_summaries #=> Array
resp.import_summaries[0].import_id #=> String
resp.import_summaries[0].imported_resource_id #=> String
resp.import_summaries[0].imported_resource_name #=> String
resp.import_summaries[0].import_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.import_summaries[0].merge_strategy #=> String, one of "Overwrite", "FailOnConflict", "Append"
resp.import_summaries[0].creation_date_time #=> Time
resp.import_summaries[0].last_updated_date_time #=> Time
resp.import_summaries[0].imported_resource_type #=> String, one of "Bot", "BotLocale", "CustomVocabulary", "TestSet"
resp.next_token #=> String
resp.locale_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (String)

    The unique identifier that Amazon Lex assigned to the bot.

  • :bot_version (String)

    The version of the bot to list imports for.

  • :sort_by (Types::ImportSortBy)

    Determines the field that the list of imports is sorted by. You can sort by the LastUpdatedDateTime field in ascending or descending order.

  • :filters (Array<Types::ImportFilter>)

    Provides the specification of a filter used to limit the bots in the response to only those that match the filter specification. You can only specify one filter and one string to filter on.

  • :max_results (Integer)

    The maximum number of imports to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListImports operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListImports request to return the next page of results. For a complete set of results, call the ListImports operation until the nextToken returned in the response is null.

  • :locale_id (String)

    Specifies the locale that should be present in the list. If you don't specify a resource type in the filters parameter, the list contains both bot locales and custom vocabularies.

Returns:

See Also:



6401
6402
6403
6404
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6401

def list_imports(params = {}, options = {})
  req = build_request(:list_imports, params)
  req.send_request(options)
end

#list_intent_metrics(params = {}) ⇒ Types::ListIntentMetricsResponse

Retrieves summary metrics for the intents in your bot. The following fields are required:

  • metrics – A list of AnalyticsIntentMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order.

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

Note that an order field exists in both binBy and metrics. You can specify only one order in a given request.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_intent_metrics({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  metrics: [ # required
    {
      name: "Count", # required, accepts Count, Success, Failure, Switched, Dropped
      statistic: "Sum", # required, accepts Sum, Avg, Max
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  bin_by: [
    {
      name: "ConversationStartTime", # required, accepts ConversationStartTime, UtteranceTimestamp
      interval: "OneHour", # required, accepts OneHour, OneDay
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  group_by: [
    {
      name: "IntentName", # required, accepts IntentName, IntentEndState, IntentLevel
    },
  ],
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, SessionId, OriginatingRequestId, IntentName, IntentEndState
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.results #=> Array
resp.results[0].bin_keys #=> Array
resp.results[0].bin_keys[0].name #=> String, one of "ConversationStartTime", "UtteranceTimestamp"
resp.results[0].bin_keys[0].value #=> Integer
resp.results[0].group_by_keys #=> Array
resp.results[0].group_by_keys[0].name #=> String, one of "IntentName", "IntentEndState", "IntentLevel"
resp.results[0].group_by_keys[0].value #=> String
resp.results[0].metrics_results #=> Array
resp.results[0].metrics_results[0].name #=> String, one of "Count", "Success", "Failure", "Switched", "Dropped"
resp.results[0].metrics_results[0].statistic #=> String, one of "Sum", "Avg", "Max"
resp.results[0].metrics_results[0].value #=> Float
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve intent metrics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The timestamp that marks the beginning of the range of time for which you want to see intent metrics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see intent metrics.

  • :metrics (required, Array<Types::AnalyticsIntentMetric>)

    A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the order by which to organize the results.

  • :bin_by (Array<Types::AnalyticsBinBySpecification>)

    A list of objects, each of which contains specifications for organizing the results by time.

  • :group_by (Array<Types::AnalyticsIntentGroupBySpecification>)

    A list of objects, each of which specifies how to group the results. You can group by the following criteria:

    • IntentName – The name of the intent.

    • IntentEndState – The final state of the intent. The possible end states are detailed in Key definitions in the user guide.

  • :filters (Array<Types::AnalyticsIntentFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListIntentMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListIntentMetrics request to return the next page of results. For a complete set of results, call the ListIntentMetrics operation until the nextToken returned in the response is null.

Returns:

See Also:



6554
6555
6556
6557
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6554

def list_intent_metrics(params = {}, options = {})
  req = build_request(:list_intent_metrics, params)
  req.send_request(options)
end

#list_intent_paths(params = {}) ⇒ Types::ListIntentPathsResponse

Retrieves summary statistics for a path of intents that users take over sessions with your bot. The following fields are required:

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

  • intentPath – Define an order of intents for which you want to retrieve metrics. Separate intents in the path with a forward slash. For example, populate the intentPath field with /BookCar/BookHotel to see details about how many times users invoked the BookCar and BookHotel intents in that order.

Use the optional filters field to filter the results.

Examples:

Request syntax with placeholder values


resp = client.list_intent_paths({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  intent_path: "AnalyticsPath", # required
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
})

Response structure


resp.node_summaries #=> Array
resp.node_summaries[0].intent_name #=> String
resp.node_summaries[0].intent_path #=> String
resp.node_summaries[0].intent_count #=> Integer
resp.node_summaries[0].intent_level #=> Integer
resp.node_summaries[0].node_type #=> String, one of "Inner", "Exit"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve intent path metrics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see intent path metrics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see intent path metrics.

  • :intent_path (required, String)

    The intent path for which you want to retrieve metrics. Use a forward slash to separate intents in the path. For example:

    • /BookCar

    • /BookCar/BookHotel

    • /BookHotel/BookCar

  • :filters (Array<Types::AnalyticsPathFilter>)

    A list of objects, each describes a condition by which you want to filter the results.

Returns:

See Also:



6632
6633
6634
6635
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6632

def list_intent_paths(params = {}, options = {})
  req = build_request(:list_intent_paths, params)
  req.send_request(options)
end

#list_intent_stage_metrics(params = {}) ⇒ Types::ListIntentStageMetricsResponse

Retrieves summary metrics for the stages within intents in your bot. The following fields are required:

  • metrics – A list of AnalyticsIntentStageMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order.

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

Note that an order field exists in both binBy and metrics. You can only specify one order in a given request.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_intent_stage_metrics({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  metrics: [ # required
    {
      name: "Count", # required, accepts Count, Success, Failed, Dropped, Retry
      statistic: "Sum", # required, accepts Sum, Avg, Max
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  bin_by: [
    {
      name: "ConversationStartTime", # required, accepts ConversationStartTime, UtteranceTimestamp
      interval: "OneHour", # required, accepts OneHour, OneDay
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  group_by: [
    {
      name: "IntentStageName", # required, accepts IntentStageName, SwitchedToIntent
    },
  ],
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, SessionId, OriginatingRequestId, IntentName, IntentStageName
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.results #=> Array
resp.results[0].bin_keys #=> Array
resp.results[0].bin_keys[0].name #=> String, one of "ConversationStartTime", "UtteranceTimestamp"
resp.results[0].bin_keys[0].value #=> Integer
resp.results[0].group_by_keys #=> Array
resp.results[0].group_by_keys[0].name #=> String, one of "IntentStageName", "SwitchedToIntent"
resp.results[0].group_by_keys[0].value #=> String
resp.results[0].metrics_results #=> Array
resp.results[0].metrics_results[0].name #=> String, one of "Count", "Success", "Failed", "Dropped", "Retry"
resp.results[0].metrics_results[0].statistic #=> String, one of "Sum", "Avg", "Max"
resp.results[0].metrics_results[0].value #=> Float
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve intent stage metrics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see intent stage metrics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see intent stage metrics.

  • :metrics (required, Array<Types::AnalyticsIntentStageMetric>)

    A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.

  • :bin_by (Array<Types::AnalyticsBinBySpecification>)

    A list of objects, each of which contains specifications for organizing the results by time.

  • :group_by (Array<Types::AnalyticsIntentStageGroupBySpecification>)

    A list of objects, each of which specifies how to group the results. You can group by the following criteria:

    • IntentStageName – The name of the intent stage.

    • SwitchedToIntent – The intent to which the conversation was switched (if any).

  • :filters (Array<Types::AnalyticsIntentStageFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListIntentStageMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListIntentStageMetrics request to return the next page of results. For a complete set of results, call the ListIntentStageMetrics operation until the nextToken returned in the response is null.

Returns:

See Also:



6781
6782
6783
6784
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6781

def list_intent_stage_metrics(params = {}, options = {})
  req = build_request(:list_intent_stage_metrics, params)
  req.send_request(options)
end

#list_intents(params = {}) ⇒ Types::ListIntentsResponse

Get a list of intents that meet the specified criteria.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_intents({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  sort_by: {
    attribute: "IntentName", # required, accepts IntentName, LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "IntentName", # required, accepts IntentName
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_summaries #=> Array
resp.intent_summaries[0].intent_id #=> String
resp.intent_summaries[0].intent_name #=> String
resp.intent_summaries[0].description #=> String
resp.intent_summaries[0].parent_intent_signature #=> String
resp.intent_summaries[0].input_contexts #=> Array
resp.intent_summaries[0].input_contexts[0].name #=> String
resp.intent_summaries[0].output_contexts #=> Array
resp.intent_summaries[0].output_contexts[0].name #=> String
resp.intent_summaries[0].output_contexts[0].time_to_live_in_seconds #=> Integer
resp.intent_summaries[0].output_contexts[0].turns_to_live #=> Integer
resp.intent_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the intent.

  • :bot_version (required, String)

    The version of the bot that contains the intent.

  • :locale_id (required, String)

    The identifier of the language and locale of the intents to list. The string must match one of the supported locales. For more information, see Supported languages.

  • :sort_by (Types::IntentSortBy)

    Determines the sort order for the response from the ListIntents operation. You can choose to sort by the intent name or last updated date in either ascending or descending order.

  • :filters (Array<Types::IntentFilter>)

    Provides the specification of a filter used to limit the intents in the response to only those that match the filter specification. You can only specify one filter and only one string to filter on.

  • :max_results (Integer)

    The maximum number of intents to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListIntents operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListIntents request to return the next page of results. For a complete set of results, call the ListIntents operation until the nextToken returned in the response is null.

Returns:

See Also:



6882
6883
6884
6885
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6882

def list_intents(params = {}, options = {})
  req = build_request(:list_intents, params)
  req.send_request(options)
end

Gets a list of recommended intents provided by the bot recommendation that you can use in your bot. Intents in the response are ordered by relevance.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_recommended_intents({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  bot_recommendation_id: "Id", # required
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_id #=> String
resp.summary_list #=> Array
resp.summary_list[0].intent_id #=> String
resp.summary_list[0].intent_name #=> String
resp.summary_list[0].sample_utterances_count #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot associated with the recommended intents.

  • :bot_version (required, String)

    The version of the bot that contains the recommended intents.

  • :locale_id (required, String)

    The identifier of the language and locale of the recommended intents.

  • :bot_recommendation_id (required, String)

    The identifier of the bot recommendation that contains the recommended intents.

  • :next_token (String)

    If the response from the ListRecommendedIntents operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

  • :max_results (Integer)

    The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

Returns:

See Also:



6954
6955
6956
6957
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 6954

def list_recommended_intents(params = {}, options = {})
  req = build_request(:list_recommended_intents, params)
  req.send_request(options)
end

#list_session_analytics_data(params = {}) ⇒ Types::ListSessionAnalyticsDataResponse

Retrieves a list of metadata for individual user sessions with your bot. The startDateTime and endDateTime fields are required. These fields define a time range for which you want to retrieve results. Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results and the sortBy field to specify the values by which to sort the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_session_analytics_data({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  sort_by: {
    name: "ConversationStartTime", # required, accepts ConversationStartTime, NumberOfTurns, Duration
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, Duration, ConversationEndState, SessionId, OriginatingRequestId, IntentPath
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.next_token #=> String
resp.sessions #=> Array
resp.sessions[0].bot_alias_id #=> String
resp.sessions[0].bot_version #=> String
resp.sessions[0].locale_id #=> String
resp.sessions[0].channel #=> String
resp.sessions[0].session_id #=> String
resp.sessions[0].conversation_start_time #=> Time
resp.sessions[0].conversation_end_time #=> Time
resp.sessions[0].conversation_duration_seconds #=> Integer
resp.sessions[0].conversation_end_state #=> String, one of "Success", "Failure", "Dropped"
resp.sessions[0].mode #=> String, one of "Speech", "Text", "DTMF", "MultiMode"
resp.sessions[0].number_of_turns #=> Integer
resp.sessions[0].invoked_intent_samples #=> Array
resp.sessions[0].invoked_intent_samples[0].intent_name #=> String
resp.sessions[0].originating_request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve session analytics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see session analytics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see session analytics.

  • :sort_by (Types::SessionDataSortBy)

    An object specifying the measure and method by which to sort the session analytics data.

  • :filters (Array<Types::AnalyticsSessionFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListSessionAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListSessionAnalyticsData request to return the next page of results. For a complete set of results, call the ListSessionAnalyticsData operation until the nextToken returned in the response is null.

Returns:

See Also:



7061
7062
7063
7064
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7061

def list_session_analytics_data(params = {}, options = {})
  req = build_request(:list_session_analytics_data, params)
  req.send_request(options)
end

#list_session_metrics(params = {}) ⇒ Types::ListSessionMetricsResponse

Retrieves summary metrics for the user sessions with your bot. The following fields are required:

  • metrics – A list of AnalyticsSessionMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order.

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_session_metrics({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  metrics: [ # required
    {
      name: "Count", # required, accepts Count, Success, Failure, Dropped, Duration, TurnsPerConversation, Concurrency
      statistic: "Sum", # required, accepts Sum, Avg, Max
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  bin_by: [
    {
      name: "ConversationStartTime", # required, accepts ConversationStartTime, UtteranceTimestamp
      interval: "OneHour", # required, accepts OneHour, OneDay
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  group_by: [
    {
      name: "ConversationEndState", # required, accepts ConversationEndState, LocaleId
    },
  ],
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, Duration, ConversationEndState, SessionId, OriginatingRequestId, IntentPath
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.results #=> Array
resp.results[0].bin_keys #=> Array
resp.results[0].bin_keys[0].name #=> String, one of "ConversationStartTime", "UtteranceTimestamp"
resp.results[0].bin_keys[0].value #=> Integer
resp.results[0].group_by_keys #=> Array
resp.results[0].group_by_keys[0].name #=> String, one of "ConversationEndState", "LocaleId"
resp.results[0].group_by_keys[0].value #=> String
resp.results[0].metrics_results #=> Array
resp.results[0].metrics_results[0].name #=> String, one of "Count", "Success", "Failure", "Dropped", "Duration", "TurnsPerConversation", "Concurrency"
resp.results[0].metrics_results[0].statistic #=> String, one of "Sum", "Avg", "Max"
resp.results[0].metrics_results[0].value #=> Float
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve session metrics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see session metrics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see session metrics.

  • :metrics (required, Array<Types::AnalyticsSessionMetric>)

    A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.

  • :bin_by (Array<Types::AnalyticsBinBySpecification>)

    A list of objects, each of which contains specifications for organizing the results by time.

  • :group_by (Array<Types::AnalyticsSessionGroupBySpecification>)

    A list of objects, each of which specifies how to group the results. You can group by the following criteria:

    • ConversationEndState – The final state of the conversation. The possible end states are detailed in Key definitions in the user guide.

    • LocaleId – The unique identifier of the bot locale.

  • :filters (Array<Types::AnalyticsSessionFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListSessionMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListSessionMetrics request to return the next page of results. For a complete set of results, call the ListSessionMetrics operation until the nextToken returned in the response is null.

Returns:

See Also:



7215
7216
7217
7218
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7215

def list_session_metrics(params = {}, options = {})
  req = build_request(:list_session_metrics, params)
  req.send_request(options)
end

#list_slot_types(params = {}) ⇒ Types::ListSlotTypesResponse

Gets a list of slot types that match the specified criteria.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_slot_types({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  sort_by: {
    attribute: "SlotTypeName", # required, accepts SlotTypeName, LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "SlotTypeName", # required, accepts SlotTypeName, ExternalSourceType
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.slot_type_summaries #=> Array
resp.slot_type_summaries[0].slot_type_id #=> String
resp.slot_type_summaries[0].slot_type_name #=> String
resp.slot_type_summaries[0].description #=> String
resp.slot_type_summaries[0].parent_slot_type_signature #=> String
resp.slot_type_summaries[0].last_updated_date_time #=> Time
resp.slot_type_summaries[0].slot_type_category #=> String, one of "Custom", "Extended", "ExternalGrammar", "Composite"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the slot types.

  • :bot_version (required, String)

    The version of the bot that contains the slot type.

  • :locale_id (required, String)

    The identifier of the language and locale of the slot types to list. The string must match one of the supported locales. For more information, see Supported languages.

  • :sort_by (Types::SlotTypeSortBy)

    Determines the sort order for the response from the ListSlotTypes operation. You can choose to sort by the slot type name or last updated date in either ascending or descending order.

  • :filters (Array<Types::SlotTypeFilter>)

    Provides the specification of a filter used to limit the slot types in the response to only those that match the filter specification. You can only specify one filter and only one string to filter on.

  • :max_results (Integer)

    The maximum number of slot types to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListSlotTypes operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7307
7308
7309
7310
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7307

def list_slot_types(params = {}, options = {})
  req = build_request(:list_slot_types, params)
  req.send_request(options)
end

#list_slots(params = {}) ⇒ Types::ListSlotsResponse

Gets a list of slots that match the specified criteria.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_slots({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  intent_id: "Id", # required
  sort_by: {
    attribute: "SlotName", # required, accepts SlotName, LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "SlotName", # required, accepts SlotName
      values: ["FilterValue"], # required
      operator: "CO", # required, accepts CO, EQ
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_id #=> String
resp.slot_summaries #=> Array
resp.slot_summaries[0].slot_id #=> String
resp.slot_summaries[0].slot_name #=> String
resp.slot_summaries[0].description #=> String
resp.slot_summaries[0].slot_constraint #=> String, one of "Required", "Optional"
resp.slot_summaries[0].slot_type_id #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups #=> Array
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations #=> Array
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.max_retries #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.allow_interrupt #=> Boolean
resp.slot_summaries[0].value_elicitation_prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification #=> Hash
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.slot_summaries[0].value_elicitation_prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.slot_summaries[0].last_updated_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier of the bot that contains the slot.

  • :bot_version (required, String)

    The version of the bot that contains the slot.

  • :locale_id (required, String)

    The identifier of the language and locale of the slots to list. The string must match one of the supported locales. For more information, see Supported languages.

  • :intent_id (required, String)

    The unique identifier of the intent that contains the slot.

  • :sort_by (Types::SlotSortBy)

    Determines the sort order for the response from the ListSlots operation. You can choose to sort by the slot name or last updated date in either ascending or descending order.

  • :filters (Array<Types::SlotFilter>)

    Provides the specification of a filter used to limit the slots in the response to only those that match the filter specification. You can only specify one filter and only one string to filter on.

  • :max_results (Integer)

    The maximum number of slots to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListSlots operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7440
7441
7442
7443
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7440

def list_slots(params = {}, options = {})
  req = build_request(:list_slots, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

Gets a list of tags associated with a resource. Only bots, bot aliases, and bot channels can have tags associated with them.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "AmazonResourceName", # required
})

Response structure


resp.tags #=> Hash
resp.tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource to get a list of tags for.

Returns:

See Also:



7471
7472
7473
7474
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7471

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#list_test_execution_result_items(params = {}) ⇒ Types::ListTestExecutionResultItemsResponse

Gets a list of test execution result items.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_test_execution_result_items({
  test_execution_id: "Id", # required
  result_filter_by: { # required
    result_type_filter: "OverallTestResults", # required, accepts OverallTestResults, ConversationLevelTestResults, IntentClassificationTestResults, SlotResolutionTestResults, UtteranceLevelResults
    conversation_level_test_results_filter_by: {
      end_to_end_result: "Matched", # accepts Matched, Mismatched, ExecutionError
    },
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.test_execution_results.overall_test_results.items #=> Array
resp.test_execution_results.overall_test_results.items[0].multi_turn_conversation #=> Boolean
resp.test_execution_results.overall_test_results.items[0].total_result_count #=> Integer
resp.test_execution_results.overall_test_results.items[0].speech_transcription_result_counts #=> Hash
resp.test_execution_results.overall_test_results.items[0].speech_transcription_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.overall_test_results.items[0].end_to_end_result_counts #=> Hash
resp.test_execution_results.overall_test_results.items[0].end_to_end_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.conversation_level_test_results.items #=> Array
resp.test_execution_results.conversation_level_test_results.items[0].conversation_id #=> String
resp.test_execution_results.conversation_level_test_results.items[0].end_to_end_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.conversation_level_test_results.items[0].speech_transcription_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.conversation_level_test_results.items[0].intent_classification_results #=> Array
resp.test_execution_results.conversation_level_test_results.items[0].intent_classification_results[0].intent_name #=> String
resp.test_execution_results.conversation_level_test_results.items[0].intent_classification_results[0].match_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.conversation_level_test_results.items[0].slot_resolution_results #=> Array
resp.test_execution_results.conversation_level_test_results.items[0].slot_resolution_results[0].intent_name #=> String
resp.test_execution_results.conversation_level_test_results.items[0].slot_resolution_results[0].slot_name #=> String
resp.test_execution_results.conversation_level_test_results.items[0].slot_resolution_results[0].match_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.intent_classification_test_results.items #=> Array
resp.test_execution_results.intent_classification_test_results.items[0].intent_name #=> String
resp.test_execution_results.intent_classification_test_results.items[0].multi_turn_conversation #=> Boolean
resp.test_execution_results.intent_classification_test_results.items[0].result_counts.total_result_count #=> Integer
resp.test_execution_results.intent_classification_test_results.items[0].result_counts.speech_transcription_result_counts #=> Hash
resp.test_execution_results.intent_classification_test_results.items[0].result_counts.speech_transcription_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.intent_classification_test_results.items[0].result_counts.intent_match_result_counts #=> Hash
resp.test_execution_results.intent_classification_test_results.items[0].result_counts.intent_match_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.intent_level_slot_resolution_test_results.items #=> Array
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].intent_name #=> String
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].multi_turn_conversation #=> Boolean
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results #=> Array
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].slot_name #=> String
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].result_counts.total_result_count #=> Integer
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].result_counts.speech_transcription_result_counts #=> Hash
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].result_counts.speech_transcription_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].result_counts.slot_match_result_counts #=> Hash
resp.test_execution_results.intent_level_slot_resolution_test_results.items[0].slot_resolution_results[0].result_counts.slot_match_result_counts["TestResultMatchStatus"] #=> Integer
resp.test_execution_results.utterance_level_test_results.items #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].record_number #=> Integer
resp.test_execution_results.utterance_level_test_results.items[0].conversation_id #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.expected_agent_prompt #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.actual_agent_prompt #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.error_details.error_code #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.error_details.error_message #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.actual_elicited_slot #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.agent.actual_intent #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.utterance_input.text_input #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.utterance_input.audio_input.audio_file_s3_location #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.request_attributes #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.request_attributes["NonEmptyString"] #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.session_attributes #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.session_attributes["NonEmptyString"] #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.active_contexts #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.active_contexts[0].name #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.runtime_hints.slot_hints #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.runtime_hints.slot_hints["Name"] #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.runtime_hints.slot_hints["Name"]["Name"].runtime_hint_values #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.runtime_hints.slot_hints["Name"]["Name"].runtime_hint_values[0].phrase #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.input.session_state.runtime_hints.slot_hints["Name"]["Name"].sub_slot_hints #=> Types::SlotHintsSlotMap
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.name #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.slots #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.slots["Name"].value #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.slots["Name"].values #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.slots["Name"].values[0] #=> Types::UserTurnSlotOutput
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.intent.slots["Name"].sub_slots #=> Types::UserTurnSlotOutputMap
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.active_contexts #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.active_contexts[0].name #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.expected_output.transcript #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.name #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.slots #=> Hash
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.slots["Name"].value #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.slots["Name"].values #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.slots["Name"].values[0] #=> Types::UserTurnSlotOutput
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.intent.slots["Name"].sub_slots #=> Types::UserTurnSlotOutputMap
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.active_contexts #=> Array
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.active_contexts[0].name #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.actual_output.transcript #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.error_details.error_code #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.error_details.error_message #=> String
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.end_to_end_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.intent_match_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.slot_match_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.speech_transcription_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.conversation_level_result.end_to_end_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.test_execution_results.utterance_level_test_results.items[0].turn_result.user.conversation_level_result.speech_transcription_result #=> String, one of "Matched", "Mismatched", "ExecutionError"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_execution_id (required, String)

    The unique identifier of the test execution to list the result items.

  • :result_filter_by (required, Types::TestExecutionResultFilterBy)

    The filter for the list of results from the test set execution.

  • :max_results (Integer)

    The maximum number of test execution result items to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListTestExecutionResultItems operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7608
7609
7610
7611
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7608

def list_test_execution_result_items(params = {}, options = {})
  req = build_request(:list_test_execution_result_items, params)
  req.send_request(options)
end

#list_test_executions(params = {}) ⇒ Types::ListTestExecutionsResponse

The list of test set executions.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_test_executions({
  sort_by: {
    attribute: "TestSetName", # required, accepts TestSetName, CreationDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.test_executions #=> Array
resp.test_executions[0].test_execution_id #=> String
resp.test_executions[0].creation_date_time #=> Time
resp.test_executions[0].last_updated_date_time #=> Time
resp.test_executions[0].test_execution_status #=> String, one of "Pending", "Waiting", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
resp.test_executions[0].test_set_id #=> String
resp.test_executions[0].test_set_name #=> String
resp.test_executions[0].target.bot_alias_target.bot_id #=> String
resp.test_executions[0].target.bot_alias_target.bot_alias_id #=> String
resp.test_executions[0].target.bot_alias_target.locale_id #=> String
resp.test_executions[0].api_mode #=> String, one of "Streaming", "NonStreaming"
resp.test_executions[0].test_execution_modality #=> String, one of "Text", "Audio"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :sort_by (Types::TestExecutionSortBy)

    The sort order of the test set executions.

  • :max_results (Integer)

    The maximum number of test executions to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListTestExecutions operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7667
7668
7669
7670
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7667

def list_test_executions(params = {}, options = {})
  req = build_request(:list_test_executions, params)
  req.send_request(options)
end

#list_test_set_records(params = {}) ⇒ Types::ListTestSetRecordsResponse

The list of test set records.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_test_set_records({
  test_set_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.test_set_records #=> Array
resp.test_set_records[0].record_number #=> Integer
resp.test_set_records[0].conversation_id #=> String
resp.test_set_records[0].turn_number #=> Integer
resp.test_set_records[0].turn_specification.agent_turn.agent_prompt #=> String
resp.test_set_records[0].turn_specification.user_turn.input.utterance_input.text_input #=> String
resp.test_set_records[0].turn_specification.user_turn.input.utterance_input.audio_input.audio_file_s3_location #=> String
resp.test_set_records[0].turn_specification.user_turn.input.request_attributes #=> Hash
resp.test_set_records[0].turn_specification.user_turn.input.request_attributes["NonEmptyString"] #=> String
resp.test_set_records[0].turn_specification.user_turn.input.session_state.session_attributes #=> Hash
resp.test_set_records[0].turn_specification.user_turn.input.session_state.session_attributes["NonEmptyString"] #=> String
resp.test_set_records[0].turn_specification.user_turn.input.session_state.active_contexts #=> Array
resp.test_set_records[0].turn_specification.user_turn.input.session_state.active_contexts[0].name #=> String
resp.test_set_records[0].turn_specification.user_turn.input.session_state.runtime_hints.slot_hints #=> Hash
resp.test_set_records[0].turn_specification.user_turn.input.session_state.runtime_hints.slot_hints["Name"] #=> Hash
resp.test_set_records[0].turn_specification.user_turn.input.session_state.runtime_hints.slot_hints["Name"]["Name"].runtime_hint_values #=> Array
resp.test_set_records[0].turn_specification.user_turn.input.session_state.runtime_hints.slot_hints["Name"]["Name"].runtime_hint_values[0].phrase #=> String
resp.test_set_records[0].turn_specification.user_turn.input.session_state.runtime_hints.slot_hints["Name"]["Name"].sub_slot_hints #=> Types::SlotHintsSlotMap
resp.test_set_records[0].turn_specification.user_turn.expected.intent.name #=> String
resp.test_set_records[0].turn_specification.user_turn.expected.intent.slots #=> Hash
resp.test_set_records[0].turn_specification.user_turn.expected.intent.slots["Name"].value #=> String
resp.test_set_records[0].turn_specification.user_turn.expected.intent.slots["Name"].values #=> Array
resp.test_set_records[0].turn_specification.user_turn.expected.intent.slots["Name"].values[0] #=> Types::UserTurnSlotOutput
resp.test_set_records[0].turn_specification.user_turn.expected.intent.slots["Name"].sub_slots #=> Types::UserTurnSlotOutputMap
resp.test_set_records[0].turn_specification.user_turn.expected.active_contexts #=> Array
resp.test_set_records[0].turn_specification.user_turn.expected.active_contexts[0].name #=> String
resp.test_set_records[0].turn_specification.user_turn.expected.transcript #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_id (required, String)

    The identifier of the test set to list its test set records.

  • :max_results (Integer)

    The maximum number of test set records to return in each page. If there are fewer records than the max page size, only the actual number of records are returned.

  • :next_token (String)

    If the response from the ListTestSetRecords operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7738
7739
7740
7741
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7738

def list_test_set_records(params = {}, options = {})
  req = build_request(:list_test_set_records, params)
  req.send_request(options)
end

#list_test_sets(params = {}) ⇒ Types::ListTestSetsResponse

The list of the test sets

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_test_sets({
  sort_by: {
    attribute: "TestSetName", # required, accepts TestSetName, LastUpdatedDateTime
    order: "Ascending", # required, accepts Ascending, Descending
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.test_sets #=> Array
resp.test_sets[0].test_set_id #=> String
resp.test_sets[0].test_set_name #=> String
resp.test_sets[0].description #=> String
resp.test_sets[0].modality #=> String, one of "Text", "Audio"
resp.test_sets[0].status #=> String, one of "Importing", "PendingAnnotation", "Deleting", "ValidationError", "Ready"
resp.test_sets[0].role_arn #=> String
resp.test_sets[0].num_turns #=> Integer
resp.test_sets[0].storage_location.s3_bucket_name #=> String
resp.test_sets[0].storage_location.s3_path #=> String
resp.test_sets[0].storage_location.kms_key_arn #=> String
resp.test_sets[0].creation_date_time #=> Time
resp.test_sets[0].last_updated_date_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :sort_by (Types::TestSetSortBy)

    The sort order for the list of test sets.

  • :max_results (Integer)

    The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.

Returns:

See Also:



7798
7799
7800
7801
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7798

def list_test_sets(params = {}, options = {})
  req = build_request(:list_test_sets, params)
  req.send_request(options)
end

#list_utterance_analytics_data(params = {}) ⇒ Types::ListUtteranceAnalyticsDataResponse

To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role.

Retrieves a list of metadata for individual user utterances to your bot. The following fields are required:

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

^

Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results and the sortBy field to specify the values by which to sort the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_utterance_analytics_data({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  sort_by: {
    name: "UtteranceTimestamp", # required, accepts UtteranceTimestamp
    order: "Ascending", # required, accepts Ascending, Descending
  },
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, SessionId, OriginatingRequestId, UtteranceState, UtteranceText
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.next_token #=> String
resp.utterances #=> Array
resp.utterances[0].bot_alias_id #=> String
resp.utterances[0].bot_version #=> String
resp.utterances[0].locale_id #=> String
resp.utterances[0].session_id #=> String
resp.utterances[0].channel #=> String
resp.utterances[0].mode #=> String, one of "Speech", "Text", "DTMF", "MultiMode"
resp.utterances[0].conversation_start_time #=> Time
resp.utterances[0].conversation_end_time #=> Time
resp.utterances[0].utterance #=> String
resp.utterances[0].utterance_timestamp #=> Time
resp.utterances[0].audio_voice_duration_millis #=> Integer
resp.utterances[0].utterance_understood #=> Boolean
resp.utterances[0].input_type #=> String
resp.utterances[0].output_type #=> String
resp.utterances[0].associated_intent_name #=> String
resp.utterances[0].associated_slot_name #=> String
resp.utterances[0].intent_state #=> String, one of "Failed", "Fulfilled", "InProgress", "ReadyForFulfillment", "Waiting", "FulfillmentInProgress"
resp.utterances[0].dialog_action_type #=> String
resp.utterances[0].bot_response_audio_voice_id #=> String
resp.utterances[0].slots_filled_in_session #=> String
resp.utterances[0].utterance_request_id #=> String
resp.utterances[0].bot_responses #=> Array
resp.utterances[0].bot_responses[0].content #=> String
resp.utterances[0].bot_responses[0].content_type #=> String, one of "PlainText", "CustomPayload", "SSML", "ImageResponseCard"
resp.utterances[0].bot_responses[0].image_response_card.title #=> String
resp.utterances[0].bot_responses[0].image_response_card.subtitle #=> String
resp.utterances[0].bot_responses[0].image_response_card.image_url #=> String
resp.utterances[0].bot_responses[0].image_response_card.buttons #=> Array
resp.utterances[0].bot_responses[0].image_response_card.buttons[0].text #=> String
resp.utterances[0].bot_responses[0].image_response_card.buttons[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve utterance analytics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see utterance analytics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see utterance analytics.

  • :sort_by (Types::UtteranceDataSortBy)

    An object specifying the measure and method by which to sort the utterance analytics data.

  • :filters (Array<Types::AnalyticsUtteranceFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListUtteranceAnalyticsData operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListUtteranceAnalyticsData request to return the next page of results. For a complete set of results, call the ListUtteranceAnalyticsData operation until the nextToken returned in the response is null.

Returns:

See Also:



7938
7939
7940
7941
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 7938

def list_utterance_analytics_data(params = {}, options = {})
  req = build_request(:list_utterance_analytics_data, params)
  req.send_request(options)
end

#list_utterance_metrics(params = {}) ⇒ Types::ListUtteranceMetricsResponse

To use this API operation, your IAM role must have permissions to perform the ListAggregatedUtterances operation, which provides access to utterance-related analytics. See Viewing utterance statistics for the IAM policy to apply to the IAM role.

Retrieves summary metrics for the utterances in your bot. The following fields are required:

  • metrics – A list of AnalyticsUtteranceMetric objects. In each object, use the name field to specify the metric to calculate, the statistic field to specify whether to calculate the Sum, Average, or Max number, and the order field to specify whether to sort the results in Ascending or Descending order.

  • startDateTime and endDateTime – Define a time range for which you want to retrieve results.

Of the optional fields, you can organize the results in the following ways:

  • Use the filters field to filter the results, the groupBy field to specify categories by which to group the results, and the binBy field to specify time intervals by which to group the results.

  • Use the maxResults field to limit the number of results to return in a single response and the nextToken field to return the next batch of results if the response does not return the full set of results.

Note that an order field exists in both binBy and metrics. Currently, you can specify it in either field, but not in both.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_utterance_metrics({
  bot_id: "Id", # required
  start_date_time: Time.now, # required
  end_date_time: Time.now, # required
  metrics: [ # required
    {
      name: "Count", # required, accepts Count, Missed, Detected, UtteranceTimestamp
      statistic: "Sum", # required, accepts Sum, Avg, Max
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  bin_by: [
    {
      name: "ConversationStartTime", # required, accepts ConversationStartTime, UtteranceTimestamp
      interval: "OneHour", # required, accepts OneHour, OneDay
      order: "Ascending", # accepts Ascending, Descending
    },
  ],
  group_by: [
    {
      name: "UtteranceText", # required, accepts UtteranceText, UtteranceState
    },
  ],
  attributes: [
    {
      name: "LastUsedIntent", # required, accepts LastUsedIntent
    },
  ],
  filters: [
    {
      name: "BotAliasId", # required, accepts BotAliasId, BotVersion, LocaleId, Modality, Channel, SessionId, OriginatingRequestId, UtteranceState, UtteranceText
      operator: "EQ", # required, accepts EQ, GT, LT
      values: ["AnalyticsFilterValue"], # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.bot_id #=> String
resp.results #=> Array
resp.results[0].bin_keys #=> Array
resp.results[0].bin_keys[0].name #=> String, one of "ConversationStartTime", "UtteranceTimestamp"
resp.results[0].bin_keys[0].value #=> Integer
resp.results[0].group_by_keys #=> Array
resp.results[0].group_by_keys[0].name #=> String, one of "UtteranceText", "UtteranceState"
resp.results[0].group_by_keys[0].value #=> String
resp.results[0].metrics_results #=> Array
resp.results[0].metrics_results[0].name #=> String, one of "Count", "Missed", "Detected", "UtteranceTimestamp"
resp.results[0].metrics_results[0].statistic #=> String, one of "Sum", "Avg", "Max"
resp.results[0].metrics_results[0].value #=> Float
resp.results[0].attribute_results #=> Array
resp.results[0].attribute_results[0].last_used_intent #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The identifier for the bot for which you want to retrieve utterance metrics.

  • :start_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the beginning of the range of time for which you want to see utterance metrics.

  • :end_date_time (required, Time, DateTime, Date, Integer, String)

    The date and time that marks the end of the range of time for which you want to see utterance metrics.

  • :metrics (required, Array<Types::AnalyticsUtteranceMetric>)

    A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.

  • :bin_by (Array<Types::AnalyticsBinBySpecification>)

    A list of objects, each of which contains specifications for organizing the results by time.

  • :group_by (Array<Types::AnalyticsUtteranceGroupBySpecification>)

    A list of objects, each of which specifies how to group the results. You can group by the following criteria:

    • UtteranceText – The transcription of the utterance.

    • UtteranceState – The state of the utterance. The possible states are detailed in Key definitions in the user guide.

  • :attributes (Array<Types::AnalyticsUtteranceAttribute>)

    A list containing attributes related to the utterance that you want the response to return. The following attributes are possible:

    • LastUsedIntent – The last used intent at the time of the utterance.

    ^

  • :filters (Array<Types::AnalyticsUtteranceFilter>)

    A list of objects, each of which describes a condition by which you want to filter the results.

  • :max_results (Integer)

    The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.

  • :next_token (String)

    If the response from the ListUtteranceMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.

    Use the returned token in the nextToken parameter of a ListUtteranceMetrics request to return the next page of results. For a complete set of results, call the ListUtteranceMetrics operation until the nextToken returned in the response is null.

Returns:

See Also:



8116
8117
8118
8119
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8116

def list_utterance_metrics(params = {}, options = {})
  req = build_request(:list_utterance_metrics, params)
  req.send_request(options)
end

#search_associated_transcripts(params = {}) ⇒ Types::SearchAssociatedTranscriptsResponse

Search for associated transcripts that meet the specified criteria.

Examples:

Request syntax with placeholder values


resp = client.search_associated_transcripts({
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
  bot_recommendation_id: "Id", # required
  search_order: "Ascending", # accepts Ascending, Descending
  filters: [ # required
    {
      name: "IntentId", # required, accepts IntentId, SlotTypeId
      values: ["FilterValue"], # required
    },
  ],
  max_results: 1,
  next_index: 1,
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_id #=> String
resp.next_index #=> Integer
resp.associated_transcripts #=> Array
resp.associated_transcripts[0].transcript #=> String
resp.total_results #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot associated with the transcripts that you are searching.

  • :bot_version (required, String)

    The version of the bot containing the transcripts that you are searching.

  • :locale_id (required, String)

    The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages

  • :bot_recommendation_id (required, String)

    The unique identifier of the bot recommendation associated with the transcripts to search.

  • :search_order (String)

    How SearchResults are ordered. Valid values are Ascending or Descending. The default is Descending.

  • :filters (required, Array<Types::AssociatedTranscriptFilter>)

    A list of filter objects.

  • :max_results (Integer)

    The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

  • :next_index (Integer)

    If the response from the SearchAssociatedTranscriptsRequest operation contains more results than specified in the maxResults parameter, an index is returned in the response. Use that index in the nextIndex parameter to return the next page of results.

Returns:

See Also:



8205
8206
8207
8208
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8205

def search_associated_transcripts(params = {}, options = {})
  req = build_request(:search_associated_transcripts, params)
  req.send_request(options)
end

#start_bot_recommendation(params = {}) ⇒ Types::StartBotRecommendationResponse

Use this to provide your transcript data, and to start the bot recommendation process.

Examples:

Request syntax with placeholder values


resp = client.start_bot_recommendation({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  transcript_source_setting: { # required
    s3_bucket_transcript_source: {
      s3_bucket_name: "S3BucketName", # required
      path_format: {
        object_prefixes: ["ObjectPrefix"],
      },
      transcript_format: "Lex", # required, accepts Lex
      transcript_filter: {
        lex_transcript_filter: {
          date_range_filter: {
            start_date_time: Time.now, # required
            end_date_time: Time.now, # required
          },
        },
      },
      kms_key_arn: "KmsKeyArn",
    },
  },
  encryption_setting: {
    kms_key_arn: "KmsKeyArn",
    bot_locale_export_password: "FilePassword",
    associated_transcripts_password: "FilePassword",
  },
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_status #=> String, one of "Processing", "Deleting", "Deleted", "Downloading", "Updating", "Available", "Failed", "Stopping", "Stopped"
resp.bot_recommendation_id #=> String
resp.creation_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.s3_bucket_name #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes #=> Array
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes[0] #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_format #=> String, one of "Lex"
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.start_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.end_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.kms_key_arn #=> String
resp.encryption_setting.kms_key_arn #=> String
resp.encryption_setting.bot_locale_export_password #=> String
resp.encryption_setting.associated_transcripts_password #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot containing the bot recommendation.

  • :bot_version (required, String)

    The version of the bot containing the bot recommendation.

  • :locale_id (required, String)

    The identifier of the language and locale of the bot recommendation to start. The string must match one of the supported locales. For more information, see Supported languages

  • :transcript_source_setting (required, Types::TranscriptSourceSetting)

    The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.

  • :encryption_setting (Types::EncryptionSetting)

    The object representing the passwords that will be used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.

Returns:

See Also:



8302
8303
8304
8305
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8302

def start_bot_recommendation(params = {}, options = {})
  req = build_request(:start_bot_recommendation, params)
  req.send_request(options)
end

#start_bot_resource_generation(params = {}) ⇒ Types::StartBotResourceGenerationResponse

Starts a request for the descriptive bot builder to generate a bot locale configuration based on the prompt you provide it. After you make this call, use the DescribeBotResourceGeneration operation to check on the status of the generation and for the generatedBotLocaleUrl when the generation is complete. Use that value to retrieve the Amazon S3 object containing the bot locale configuration. You can then modify and import this configuration.

Examples:

Request syntax with placeholder values


resp = client.start_bot_resource_generation({
  generation_input_prompt: "GenerationInput", # required
  bot_id: "Id", # required
  bot_version: "BotVersion", # required
  locale_id: "LocaleId", # required
})

Response structure


resp.generation_input_prompt #=> String
resp.generation_id #=> String
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.generation_status #=> String, one of "Failed", "Complete", "InProgress"
resp.creation_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :generation_input_prompt (required, String)

    The prompt to generate intents and slot types for the bot locale. Your description should be both detailed and precise to help generate appropriate and sufficient intents for your bot. Include a list of actions to improve the intent creation process.

  • :bot_id (required, String)

    The unique identifier of the bot for which to generate intents and slot types.

  • :bot_version (required, String)

    The version of the bot for which to generate intents and slot types.

  • :locale_id (required, String)

    The locale of the bot for which to generate intents and slot types.

Returns:

See Also:



8364
8365
8366
8367
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8364

def start_bot_resource_generation(params = {}, options = {})
  req = build_request(:start_bot_resource_generation, params)
  req.send_request(options)
end

#start_import(params = {}) ⇒ Types::StartImportResponse

Starts importing a bot, bot locale, or custom vocabulary from a zip archive that you uploaded to an S3 bucket.

Examples:

Request syntax with placeholder values


resp = client.start_import({
  import_id: "Id", # required
  resource_specification: { # required
    bot_import_specification: {
      bot_name: "Name", # required
      role_arn: "RoleArn", # required
      data_privacy: { # required
        child_directed: false, # required
      },
      idle_session_ttl_in_seconds: 1,
      bot_tags: {
        "TagKey" => "TagValue",
      },
      test_bot_alias_tags: {
        "TagKey" => "TagValue",
      },
    },
    bot_locale_import_specification: {
      bot_id: "Id", # required
      bot_version: "DraftBotVersion", # required
      locale_id: "LocaleId", # required
      nlu_intent_confidence_threshold: 1.0,
      voice_settings: {
        voice_id: "VoiceId", # required
        engine: "standard", # accepts standard, neural, long-form, generative
      },
    },
    custom_vocabulary_import_specification: {
      bot_id: "Id", # required
      bot_version: "DraftBotVersion", # required
      locale_id: "LocaleId", # required
    },
    test_set_import_resource_specification: {
      test_set_name: "Name", # required
      description: "Description",
      role_arn: "RoleArn", # required
      storage_location: { # required
        s3_bucket_name: "S3BucketName", # required
        s3_path: "S3ObjectPath", # required
        kms_key_arn: "KmsKeyArn",
      },
      import_input_location: { # required
        s3_bucket_name: "S3BucketName", # required
        s3_path: "S3ObjectPath", # required
      },
      modality: "Text", # required, accepts Text, Audio
      test_set_tags: {
        "TagKey" => "TagValue",
      },
    },
  },
  merge_strategy: "Overwrite", # required, accepts Overwrite, FailOnConflict, Append
  file_password: "ImportExportFilePassword",
})

Response structure


resp.import_id #=> String
resp.resource_specification.bot_import_specification.bot_name #=> String
resp.resource_specification.bot_import_specification.role_arn #=> String
resp.resource_specification.bot_import_specification.data_privacy.child_directed #=> Boolean
resp.resource_specification.bot_import_specification.idle_session_ttl_in_seconds #=> Integer
resp.resource_specification.bot_import_specification.bot_tags #=> Hash
resp.resource_specification.bot_import_specification.bot_tags["TagKey"] #=> String
resp.resource_specification.bot_import_specification.test_bot_alias_tags #=> Hash
resp.resource_specification.bot_import_specification.test_bot_alias_tags["TagKey"] #=> String
resp.resource_specification.bot_locale_import_specification.bot_id #=> String
resp.resource_specification.bot_locale_import_specification.bot_version #=> String
resp.resource_specification.bot_locale_import_specification.locale_id #=> String
resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
resp.resource_specification.test_set_import_resource_specification.test_set_name #=> String
resp.resource_specification.test_set_import_resource_specification.description #=> String
resp.resource_specification.test_set_import_resource_specification.role_arn #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.s3_bucket_name #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.s3_path #=> String
resp.resource_specification.test_set_import_resource_specification.storage_location.kms_key_arn #=> String
resp.resource_specification.test_set_import_resource_specification.import_input_location.s3_bucket_name #=> String
resp.resource_specification.test_set_import_resource_specification.import_input_location.s3_path #=> String
resp.resource_specification.test_set_import_resource_specification.modality #=> String, one of "Text", "Audio"
resp.resource_specification.test_set_import_resource_specification.test_set_tags #=> Hash
resp.resource_specification.test_set_import_resource_specification.test_set_tags["TagKey"] #=> String
resp.merge_strategy #=> String, one of "Overwrite", "FailOnConflict", "Append"
resp.import_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.creation_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :import_id (required, String)

    The unique identifier for the import. It is included in the response from the CreateUploadUrl operation.

  • :resource_specification (required, Types::ImportResourceSpecification)

    Parameters for creating the bot, bot locale or custom vocabulary.

  • :merge_strategy (required, String)

    The strategy to use when there is a name conflict between the imported resource and an existing resource. When the merge strategy is FailOnConflict existing resources are not overwritten and the import fails.

  • :file_password (String)

    The password used to encrypt the zip archive that contains the resource definition. You should always encrypt the zip archive to protect it during transit between your site and Amazon Lex.

Returns:

See Also:



8498
8499
8500
8501
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8498

def start_import(params = {}, options = {})
  req = build_request(:start_import, params)
  req.send_request(options)
end

#start_test_execution(params = {}) ⇒ Types::StartTestExecutionResponse

The action to start test set execution.

Examples:

Request syntax with placeholder values


resp = client.start_test_execution({
  test_set_id: "Id", # required
  target: { # required
    bot_alias_target: {
      bot_id: "Id", # required
      bot_alias_id: "BotAliasId", # required
      locale_id: "LocaleId", # required
    },
  },
  api_mode: "Streaming", # required, accepts Streaming, NonStreaming
  test_execution_modality: "Text", # accepts Text, Audio
})

Response structure


resp.test_execution_id #=> String
resp.creation_date_time #=> Time
resp.test_set_id #=> String
resp.target.bot_alias_target.bot_id #=> String
resp.target.bot_alias_target.bot_alias_id #=> String
resp.target.bot_alias_target.locale_id #=> String
resp.api_mode #=> String, one of "Streaming", "NonStreaming"
resp.test_execution_modality #=> String, one of "Text", "Audio"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_id (required, String)

    The test set Id for the test set execution.

  • :target (required, Types::TestExecutionTarget)

    The target bot for the test set execution.

  • :api_mode (required, String)

    Indicates whether we use streaming or non-streaming APIs for the test set execution. For streaming, StartConversation Runtime API is used. Whereas, for non-streaming, RecognizeUtterance and RecognizeText Amazon Lex Runtime API are used.

  • :test_execution_modality (String)

    Indicates whether audio or text is used.

Returns:

See Also:



8559
8560
8561
8562
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8559

def start_test_execution(params = {}, options = {})
  req = build_request(:start_test_execution, params)
  req.send_request(options)
end

#start_test_set_generation(params = {}) ⇒ Types::StartTestSetGenerationResponse

The action to start the generation of test set.

Examples:

Request syntax with placeholder values


resp = client.start_test_set_generation({
  test_set_name: "Name", # required
  description: "Description",
  storage_location: { # required
    s3_bucket_name: "S3BucketName", # required
    s3_path: "S3ObjectPath", # required
    kms_key_arn: "KmsKeyArn",
  },
  generation_data_source: { # required
    conversation_logs_data_source: {
      bot_id: "Id", # required
      bot_alias_id: "BotAliasId", # required
      locale_id: "LocaleId", # required
      filter: { # required
        start_time: Time.now, # required
        end_time: Time.now, # required
        input_mode: "Speech", # required, accepts Speech, Text
      },
    },
  },
  role_arn: "RoleArn", # required
  test_set_tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.test_set_generation_id #=> String
resp.creation_date_time #=> Time
resp.test_set_generation_status #=> String, one of "Generating", "Ready", "Failed", "Pending"
resp.test_set_name #=> String
resp.description #=> String
resp.storage_location.s3_bucket_name #=> String
resp.storage_location.s3_path #=> String
resp.storage_location.kms_key_arn #=> String
resp.generation_data_source.conversation_logs_data_source.bot_id #=> String
resp.generation_data_source.conversation_logs_data_source.bot_alias_id #=> String
resp.generation_data_source.conversation_logs_data_source.locale_id #=> String
resp.generation_data_source.conversation_logs_data_source.filter.start_time #=> Time
resp.generation_data_source.conversation_logs_data_source.filter.end_time #=> Time
resp.generation_data_source.conversation_logs_data_source.filter.input_mode #=> String, one of "Speech", "Text"
resp.role_arn #=> String
resp.test_set_tags #=> Hash
resp.test_set_tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_name (required, String)

    The test set name for the test set generation request.

  • :description (String)

    The test set description for the test set generation request.

  • :storage_location (required, Types::TestSetStorageLocation)

    The Amazon S3 storage location for the test set generation.

  • :generation_data_source (required, Types::TestSetGenerationDataSource)

    The data source for the test set generation.

  • :role_arn (required, String)

    The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.

  • :test_set_tags (Hash<String,String>)

    A list of tags to add to the test set. You can only add tags when you import/generate a new test set. You can't use the UpdateTestSet operation to update tags. To update tags, use the TagResource operation.

Returns:

See Also:



8652
8653
8654
8655
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8652

def start_test_set_generation(params = {}, options = {})
  req = build_request(:start_test_set_generation, params)
  req.send_request(options)
end

#stop_bot_recommendation(params = {}) ⇒ Types::StopBotRecommendationResponse

Stop an already running Bot Recommendation request.

Examples:

Request syntax with placeholder values


resp = client.stop_bot_recommendation({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  bot_recommendation_id: "Id", # required
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_status #=> String, one of "Processing", "Deleting", "Deleted", "Downloading", "Updating", "Available", "Failed", "Stopping", "Stopped"
resp.bot_recommendation_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot containing the bot recommendation to be stopped.

  • :bot_version (required, String)

    The version of the bot containing the bot recommendation.

  • :locale_id (required, String)

    The identifier of the language and locale of the bot recommendation to stop. The string must match one of the supported locales. For more information, see Supported languages

  • :bot_recommendation_id (required, String)

    The unique identifier of the bot recommendation to be stopped.

Returns:

See Also:



8707
8708
8709
8710
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8707

def stop_bot_recommendation(params = {}, options = {})
  req = build_request(:stop_bot_recommendation, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

Adds the specified tags to the specified resource. If a tag key already exists, the existing value is replaced with the new value.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "AmazonResourceName", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot, bot alias, or bot channel to tag.

  • :tags (required, Hash<String,String>)

    A list of tag keys to add to the resource. If a tag key already exists, the existing value is replaced with the new value.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



8738
8739
8740
8741
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8738

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Removes tags from a bot, bot alias, or bot channel.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "AmazonResourceName", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource to remove the tags from.

  • :tag_keys (required, Array<String>)

    A list of tag keys to remove from the resource. If a tag key does not exist on the resource, it is ignored.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



8766
8767
8768
8769
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8766

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_bot(params = {}) ⇒ Types::UpdateBotResponse

Updates the configuration of an existing bot.

Examples:

Request syntax with placeholder values


resp = client.update_bot({
  bot_id: "Id", # required
  bot_name: "Name", # required
  description: "Description",
  role_arn: "RoleArn", # required
  data_privacy: { # required
    child_directed: false, # required
  },
  idle_session_ttl_in_seconds: 1, # required
  bot_type: "Bot", # accepts Bot, BotNetwork
  bot_members: [
    {
      bot_member_id: "Id", # required
      bot_member_name: "Name", # required
      bot_member_alias_id: "BotAliasId", # required
      bot_member_alias_name: "BotAliasName", # required
      bot_member_version: "BotVersion", # required
    },
  ],
})

Response structure


resp.bot_id #=> String
resp.bot_name #=> String
resp.description #=> String
resp.role_arn #=> String
resp.data_privacy.child_directed #=> Boolean
resp.idle_session_ttl_in_seconds #=> Integer
resp.bot_status #=> String, one of "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating"
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.bot_type #=> String, one of "Bot", "BotNetwork"
resp.bot_members #=> Array
resp.bot_members[0].bot_member_id #=> String
resp.bot_members[0].bot_member_name #=> String
resp.bot_members[0].bot_member_alias_id #=> String
resp.bot_members[0].bot_member_alias_name #=> String
resp.bot_members[0].bot_member_version #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot to update. This identifier is returned by the CreateBot operation.

  • :bot_name (required, String)

    The new name of the bot. The name must be unique in the account that creates the bot.

  • :description (String)

    A description of the bot.

  • :role_arn (required, String)

    The Amazon Resource Name (ARN) of an IAM role that has permissions to access the bot.

  • :data_privacy (required, Types::DataPrivacy)

    Provides information on additional privacy protections Amazon Lex should use with the bot's data.

  • :idle_session_ttl_in_seconds (required, Integer)

    The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot.

    A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.

    You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.

  • :bot_type (String)

    The type of the bot to be updated.

  • :bot_members (Array<Types::BotMember>)

    The list of bot members in the network associated with the update action.

Returns:

See Also:



8873
8874
8875
8876
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 8873

def update_bot(params = {}, options = {})
  req = build_request(:update_bot, params)
  req.send_request(options)
end

#update_bot_alias(params = {}) ⇒ Types::UpdateBotAliasResponse

Updates the configuration of an existing bot alias.

Examples:

Request syntax with placeholder values


resp = client.update_bot_alias({
  bot_alias_id: "BotAliasId", # required
  bot_alias_name: "Name", # required
  description: "Description",
  bot_version: "BotVersion",
  bot_alias_locale_settings: {
    "LocaleId" => {
      enabled: false, # required
      code_hook_specification: {
        lambda_code_hook: { # required
          lambda_arn: "LambdaARN", # required
          code_hook_interface_version: "CodeHookInterfaceVersion", # required
        },
      },
    },
  },
  conversation_log_settings: {
    text_log_settings: [
      {
        enabled: false, # required
        destination: { # required
          cloud_watch: { # required
            cloud_watch_log_group_arn: "CloudWatchLogGroupArn", # required
            log_prefix: "LogPrefix", # required
          },
        },
        selective_logging_enabled: false,
      },
    ],
    audio_log_settings: [
      {
        enabled: false, # required
        destination: { # required
          s3_bucket: { # required
            kms_key_arn: "KmsKeyArn",
            s3_bucket_arn: "S3BucketArn", # required
            log_prefix: "LogPrefix", # required
          },
        },
        selective_logging_enabled: false,
      },
    ],
  },
  sentiment_analysis_settings: {
    detect_sentiment: false, # required
  },
  bot_id: "Id", # required
})

Response structure


resp.bot_alias_id #=> String
resp.bot_alias_name #=> String
resp.description #=> String
resp.bot_version #=> String
resp.bot_alias_locale_settings #=> Hash
resp.bot_alias_locale_settings["LocaleId"].enabled #=> Boolean
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.lambda_arn #=> String
resp.bot_alias_locale_settings["LocaleId"].code_hook_specification.lambda_code_hook.code_hook_interface_version #=> String
resp.conversation_log_settings.text_log_settings #=> Array
resp.conversation_log_settings.text_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.cloud_watch_log_group_arn #=> String
resp.conversation_log_settings.text_log_settings[0].destination.cloud_watch.log_prefix #=> String
resp.conversation_log_settings.text_log_settings[0].selective_logging_enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings #=> Array
resp.conversation_log_settings.audio_log_settings[0].enabled #=> Boolean
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.kms_key_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.s3_bucket_arn #=> String
resp.conversation_log_settings.audio_log_settings[0].destination.s3_bucket.log_prefix #=> String
resp.conversation_log_settings.audio_log_settings[0].selective_logging_enabled #=> Boolean
resp.sentiment_analysis_settings.detect_sentiment #=> Boolean
resp.bot_alias_status #=> String, one of "Creating", "Available", "Deleting", "Failed"
resp.bot_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_alias_id (required, String)

    The unique identifier of the bot alias.

  • :bot_alias_name (required, String)

    The new name to assign to the bot alias.

  • :description (String)

    The new description to assign to the bot alias.

  • :bot_version (String)

    The new bot version to assign to the bot alias.

  • :bot_alias_locale_settings (Hash<String,Types::BotAliasLocaleSettings>)

    The new Lambda functions to use in each locale for the bot alias.

  • :conversation_log_settings (Types::ConversationLogSettings)

    The new settings for storing conversation logs in Amazon CloudWatch Logs and Amazon S3 buckets.

  • :sentiment_analysis_settings (Types::SentimentAnalysisSettings)

    Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of user utterances.

  • :bot_id (required, String)

    The identifier of the bot with the updated alias.

Returns:

See Also:



9002
9003
9004
9005
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9002

def update_bot_alias(params = {}, options = {})
  req = build_request(:update_bot_alias, params)
  req.send_request(options)
end

#update_bot_locale(params = {}) ⇒ Types::UpdateBotLocaleResponse

Updates the settings that a bot has for a specific locale.

Examples:

Request syntax with placeholder values


resp = client.update_bot_locale({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  description: "Description",
  nlu_intent_confidence_threshold: 1.0, # required
  voice_settings: {
    voice_id: "VoiceId", # required
    engine: "standard", # accepts standard, neural, long-form, generative
  },
  generative_ai_settings: {
    runtime_settings: {
      slot_resolution_improvement: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
    },
    buildtime_settings: {
      descriptive_bot_builder: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
      sample_utterance_generation: {
        enabled: false, # required
        bedrock_model_specification: {
          model_arn: "BedrockModelArn", # required
          guardrail: {
            identifier: "BedrockGuardrailIdentifier", # required
            version: "BedrockGuardrailVersion", # required
          },
          trace_status: "ENABLED", # accepts ENABLED, DISABLED
          custom_prompt: "BedrockModelCustomPrompt",
        },
      },
    },
  },
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.locale_name #=> String
resp.description #=> String
resp.nlu_intent_confidence_threshold #=> Float
resp.voice_settings.voice_id #=> String
resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
resp.failure_reasons #=> Array
resp.failure_reasons[0] #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.recommended_actions #=> Array
resp.recommended_actions[0] #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.enabled #=> Boolean
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.descriptive_bot_builder.bedrock_model_specification.custom_prompt #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.enabled #=> Boolean
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.model_arn #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.identifier #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.guardrail.version #=> String
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.trace_status #=> String, one of "ENABLED", "DISABLED"
resp.generative_ai_settings.buildtime_settings.sample_utterance_generation.bedrock_model_specification.custom_prompt #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot that contains the locale.

  • :bot_version (required, String)

    The version of the bot that contains the locale to be updated. The version can only be the DRAFT version.

  • :locale_id (required, String)

    The identifier of the language and locale to update. The string must match one of the supported locales. For more information, see Supported languages.

  • :description (String)

    The new description of the locale.

  • :nlu_intent_confidence_threshold (required, Float)

    The new confidence threshold where Amazon Lex inserts the AMAZON.FallbackIntent and AMAZON.KendraSearchIntent intents in the list of possible intents for an utterance.

  • :voice_settings (Types::VoiceSettings)

    The new Amazon Polly voice Amazon Lex should use for voice interaction with the user.

  • :generative_ai_settings (Types::GenerativeAISettings)

    Contains settings for generative AI features powered by Amazon Bedrock for your bot locale. Use this object to turn generative AI features on and off. Pricing may differ if you turn a feature on. For more information, see LINK.

Returns:

See Also:



9155
9156
9157
9158
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9155

def update_bot_locale(params = {}, options = {})
  req = build_request(:update_bot_locale, params)
  req.send_request(options)
end

#update_bot_recommendation(params = {}) ⇒ Types::UpdateBotRecommendationResponse

Updates an existing bot recommendation request.

Examples:

Request syntax with placeholder values


resp = client.update_bot_recommendation({
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  bot_recommendation_id: "Id", # required
  encryption_setting: { # required
    kms_key_arn: "KmsKeyArn",
    bot_locale_export_password: "FilePassword",
    associated_transcripts_password: "FilePassword",
  },
})

Response structure


resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.bot_recommendation_status #=> String, one of "Processing", "Deleting", "Deleted", "Downloading", "Updating", "Available", "Failed", "Stopping", "Stopped"
resp.bot_recommendation_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.s3_bucket_name #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes #=> Array
resp.transcript_source_setting.s3_bucket_transcript_source.path_format.object_prefixes[0] #=> String
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_format #=> String, one of "Lex"
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.start_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.transcript_filter.lex_transcript_filter.date_range_filter.end_date_time #=> Time
resp.transcript_source_setting.s3_bucket_transcript_source.kms_key_arn #=> String
resp.encryption_setting.kms_key_arn #=> String
resp.encryption_setting.bot_locale_export_password #=> String
resp.encryption_setting.associated_transcripts_password #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :bot_id (required, String)

    The unique identifier of the bot containing the bot recommendation to be updated.

  • :bot_version (required, String)

    The version of the bot containing the bot recommendation to be updated.

  • :locale_id (required, String)

    The identifier of the language and locale of the bot recommendation to update. The string must match one of the supported locales. For more information, see Supported languages

  • :bot_recommendation_id (required, String)

    The unique identifier of the bot recommendation to be updated.

  • :encryption_setting (required, Types::EncryptionSetting)

    The object representing the passwords that will be used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.

Returns:

See Also:



9237
9238
9239
9240
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9237

def update_bot_recommendation(params = {}, options = {})
  req = build_request(:update_bot_recommendation, params)
  req.send_request(options)
end

#update_export(params = {}) ⇒ Types::UpdateExportResponse

Updates the password used to protect an export zip archive.

The password is not required. If you don't supply a password, Amazon Lex generates a zip file that is not protected by a password. This is the archive that is available at the pre-signed S3 URL provided by the DescribeExport operation.

Examples:

Request syntax with placeholder values


resp = client.update_export({
  export_id: "Id", # required
  file_password: "ImportExportFilePassword",
})

Response structure


resp.export_id #=> String
resp.resource_specification.bot_export_specification.bot_id #=> String
resp.resource_specification.bot_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.bot_id #=> String
resp.resource_specification.bot_locale_export_specification.bot_version #=> String
resp.resource_specification.bot_locale_export_specification.locale_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_id #=> String
resp.resource_specification.custom_vocabulary_export_specification.bot_version #=> String
resp.resource_specification.custom_vocabulary_export_specification.locale_id #=> String
resp.resource_specification.test_set_export_specification.test_set_id #=> String
resp.file_format #=> String, one of "LexJson", "TSV", "CSV"
resp.export_status #=> String, one of "InProgress", "Completed", "Failed", "Deleting"
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :export_id (required, String)

    The unique identifier Amazon Lex assigned to the export.

  • :file_password (String)

    The new password to use to encrypt the export zip archive.

Returns:

See Also:



9296
9297
9298
9299
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9296

def update_export(params = {}, options = {})
  req = build_request(:update_export, params)
  req.send_request(options)
end

#update_intent(params = {}) ⇒ Types::UpdateIntentResponse

Updates the settings for an intent.

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :intent_id (required, String)

    The unique identifier of the intent to update.

  • :intent_name (required, String)

    The new name for the intent.

  • :description (String)

    The new description of the intent.

  • :parent_intent_signature (String)

    The signature of the new built-in intent to use as the parent of this intent.

  • :sample_utterances (Array<Types::SampleUtterance>)

    New utterances used to invoke the intent.

  • :dialog_code_hook (Types::DialogCodeHookSettings)

    The new Lambda function to use between each turn of the conversation with the bot.

  • :fulfillment_code_hook (Types::FulfillmentCodeHookSettings)

    The new Lambda function to call when all of the intents required slots are provided and the intent is ready for fulfillment.

  • :slot_priorities (Array<Types::SlotPriority>)

    A new list of slots and their priorities that are contained by the intent.

  • :intent_confirmation_setting (Types::IntentConfirmationSetting)

    New prompts that Amazon Lex sends to the user to confirm the completion of an intent.

  • :intent_closing_setting (Types::IntentClosingSetting)

    The new response that Amazon Lex sends the user when the intent is closed.

  • :input_contexts (Array<Types::InputContext>)

    A new list of contexts that must be active in order for Amazon Lex to consider the intent.

  • :output_contexts (Array<Types::OutputContext>)

    A new list of contexts that Amazon Lex activates when the intent is fulfilled.

  • :kendra_configuration (Types::KendraConfiguration)

    New configuration settings for connecting to an Amazon Kendra index.

  • :bot_id (required, String)

    The identifier of the bot that contains the intent.

  • :bot_version (required, String)

    The version of the bot that contains the intent. Must be DRAFT.

  • :locale_id (required, String)

    The identifier of the language and locale where this intent is used. The string must match one of the supported locales. For more information, see Supported languages.

  • :initial_response_setting (Types::InitialResponseSetting)

    Configuration settings for a response sent to the user before Amazon Lex starts eliciting slots.

  • :qn_a_intent_configuration (Types::QnAIntentConfiguration)

    Specifies the configuration of the built-in Amazon.QnAIntent. The AMAZON.QnAIntent intent is called when Amazon Lex can't determine another intent to invoke. If you specify this field, you can't specify the kendraConfiguration field.

Returns:

See Also:



9402
9403
9404
9405
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9402

def update_intent(params = {}, options = {})
  req = build_request(:update_intent, params)
  req.send_request(options)
end

#update_resource_policy(params = {}) ⇒ Types::UpdateResourcePolicyResponse

Replaces the existing resource policy for a bot or bot alias with a new one. If the policy doesn't exist, Amazon Lex returns an exception.

Examples:

Request syntax with placeholder values


resp = client.update_resource_policy({
  resource_arn: "AmazonResourceName", # required
  policy: "Policy", # required
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

  • :policy (required, String)

    A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see IAM JSON policy reference .

    If the policy isn't valid, Amazon Lex returns a validation exception.

  • :expected_revision_id (String)

    The identifier of the revision of the policy to update. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.

    If you don't specify a revision, Amazon Lex overwrites the contents of the policy with the new values.

Returns:

See Also:



9458
9459
9460
9461
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 9458

def update_resource_policy(params = {}, options = {})
  req = build_request(:update_resource_policy, params)
  req.send_request(options)
end

#update_slot(params = {}) ⇒ Types::UpdateSlotResponse

Updates the settings for a slot.

Examples:

Response structure


resp.slot_id #=> String
resp.slot_name #=> String
resp.description #=> String
resp.slot_type_id #=> String
resp.value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.value_elicitation_setting.slot_constraint #=> String, one of "Required", "Optional"
resp.value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.value_elicitation_setting.sample_utterances #=> Array
resp.value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.capture_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.active #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].condition.expression_string #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branches[0].response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.type #=> String, one of "ElicitIntent", "StartIntent", "ElicitSlot", "EvaluateConditional", "InvokeDialogCodeHook", "ConfirmIntent", "FulfillIntent", "CloseIntent", "EndConversation"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.slot_to_elicit #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.suppress_next_message #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.name #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].shape #=> String, one of "Scalar", "List"
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].value.interpreted_value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slots["Name"].values[0] #=> Types::SlotValueOverride
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes #=> Hash
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.session_attributes["NonEmptyString"] #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].custom_payload.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].ssml_message.value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.title #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.value_elicitation_setting.slot_capture_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.allow_interrupt #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.enable_code_hook_invocation #=> Boolean
resp.value_elicitation_setting.slot_capture_setting.elicitation_code_hook.invocation_label #=> String
resp.value_elicitation_setting.slot_resolution_setting.slot_resolution_strategy #=> String, one of "EnhancedFallback", "Default"
resp.obfuscation_setting.obfuscation_setting_type #=> String, one of "None", "DefaultObfuscation"
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.intent_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.multiple_values_setting.allow_multiple_values #=> Boolean
resp.sub_slot_setting.expression #=> String
resp.sub_slot_setting.slot_specifications #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification #=> Hash
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_audio_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].allowed_input_types.allow_dtmf_input #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.max_length_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.audio_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.max_length #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.deletion_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].audio_and_dtmf_input_specification.dtmf_specification.end_character #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.prompt_attempts_specification["PromptAttempt"].text_input_specification.start_timeout_ms #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_id (required, String)

    The unique identifier for the slot to update.

  • :slot_name (required, String)

    The new name for the slot.

  • :description (String)

    The new description for the slot.

  • :slot_type_id (String)

    The unique identifier of the new slot type to associate with this slot.

  • :value_elicitation_setting (required, Types::SlotValueElicitationSetting)

    A new set of prompts that Amazon Lex sends to the user to elicit a response the provides a value for the slot.

  • :obfuscation_setting (Types::ObfuscationSetting)

    New settings that determine how slot values are formatted in Amazon CloudWatch logs.

  • :bot_id (required, String)

    The unique identifier of the bot that contains the slot.

  • :bot_version (required, String)

    The version of the bot that contains the slot. Must always be DRAFT.

  • :locale_id (required, String)

    The identifier of the language and locale that contains the slot. The string must match one of the supported locales. For more information, see Supported languages.

  • :intent_id (required, String)

    The identifier of the intent that contains the slot.

  • :multiple_values_setting (Types::MultipleValuesSetting)

    Determines whether the slot accepts multiple values in one response. Multiple value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

    If the multipleValuesSetting is not set, the default value is false.

  • :sub_slot_setting (Types::SubSlotSetting)

    Specifications for the constituent sub slots and the expression for the composite slot.

Returns:

See Also:



10273
10274
10275
10276
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 10273

def update_slot(params = {}, options = {})
  req = build_request(:update_slot, params)
  req.send_request(options)
end

#update_slot_type(params = {}) ⇒ Types::UpdateSlotTypeResponse

Updates the configuration of an existing slot type.

Examples:

Request syntax with placeholder values


resp = client.update_slot_type({
  slot_type_id: "Id", # required
  slot_type_name: "Name", # required
  description: "Description",
  slot_type_values: [
    {
      sample_value: {
        value: "Value", # required
      },
      synonyms: [
        {
          value: "Value", # required
        },
      ],
    },
  ],
  value_selection_setting: {
    resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution, Concatenation
    regex_filter: {
      pattern: "RegexPattern", # required
    },
    advanced_recognition_setting: {
      audio_recognition_strategy: "UseSlotValuesAsCustomVocabulary", # accepts UseSlotValuesAsCustomVocabulary
    },
  },
  parent_slot_type_signature: "SlotTypeSignature",
  bot_id: "Id", # required
  bot_version: "DraftBotVersion", # required
  locale_id: "LocaleId", # required
  external_source_setting: {
    grammar_slot_type_setting: {
      source: {
        s3_bucket_name: "S3BucketName", # required
        s3_object_key: "S3ObjectPath", # required
        kms_key_arn: "KmsKeyArn",
      },
    },
  },
  composite_slot_type_setting: {
    sub_slots: [
      {
        name: "Name", # required
        slot_type_id: "BuiltInOrCustomSlotTypeId", # required
      },
    ],
  },
})

Response structure


resp.slot_type_id #=> String
resp.slot_type_name #=> String
resp.description #=> String
resp.slot_type_values #=> Array
resp.slot_type_values[0].sample_value.value #=> String
resp.slot_type_values[0].synonyms #=> Array
resp.slot_type_values[0].synonyms[0].value #=> String
resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
resp.value_selection_setting.regex_filter.pattern #=> String
resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
resp.parent_slot_type_signature #=> String
resp.bot_id #=> String
resp.bot_version #=> String
resp.locale_id #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time
resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
resp.composite_slot_type_setting.sub_slots #=> Array
resp.composite_slot_type_setting.sub_slots[0].name #=> String
resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :slot_type_id (required, String)

    The unique identifier of the slot type to update.

  • :slot_type_name (required, String)

    The new name of the slot type.

  • :description (String)

    The new description of the slot type.

  • :slot_type_values (Array<Types::SlotTypeValue>)

    A new list of values and their optional synonyms that define the values that the slot type can take.

  • :value_selection_setting (Types::SlotValueSelectionSetting)

    The strategy that Amazon Lex should use when deciding on a value from the list of slot type values.

  • :parent_slot_type_signature (String)

    The new built-in slot type that should be used as the parent of this slot type.

  • :bot_id (required, String)

    The identifier of the bot that contains the slot type.

  • :bot_version (required, String)

    The version of the bot that contains the slot type. Must be DRAFT.

  • :locale_id (required, String)

    The identifier of the language and locale that contains the slot type. The string must match one of the supported locales. For more information, see Supported languages.

  • :external_source_setting (Types::ExternalSourceSetting)

    Provides information about the external source of the slot type's definition.

  • :composite_slot_type_setting (Types::CompositeSlotTypeSetting)

    Specifications for a composite slot type.

Returns:

See Also:



10418
10419
10420
10421
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 10418

def update_slot_type(params = {}, options = {})
  req = build_request(:update_slot_type, params)
  req.send_request(options)
end

#update_test_set(params = {}) ⇒ Types::UpdateTestSetResponse

The action to update the test set.

Examples:

Request syntax with placeholder values


resp = client.update_test_set({
  test_set_id: "Id", # required
  test_set_name: "Name", # required
  description: "Description",
})

Response structure


resp.test_set_id #=> String
resp.test_set_name #=> String
resp.description #=> String
resp.modality #=> String, one of "Text", "Audio"
resp.status #=> String, one of "Importing", "PendingAnnotation", "Deleting", "ValidationError", "Ready"
resp.role_arn #=> String
resp.num_turns #=> Integer
resp.storage_location.s3_bucket_name #=> String
resp.storage_location.s3_path #=> String
resp.storage_location.kms_key_arn #=> String
resp.creation_date_time #=> Time
resp.last_updated_date_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :test_set_id (required, String)

    The test set Id for which update test operation to be performed.

  • :test_set_name (required, String)

    The new test set name.

  • :description (String)

    The new test set description.

Returns:

See Also:



10474
10475
10476
10477
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 10474

def update_test_set(params = {}, options = {})
  req = build_request(:update_test_set, params)
  req.send_request(options)
end

#wait_until(waiter_name, params = {}, options = {}) {|w.waiter| ... } ⇒ Boolean

Polls an API operation until a resource enters a desired state.

Basic Usage

A waiter will call an API operation until:

  • It is successful
  • It enters a terminal state
  • It makes the maximum number of attempts

In between attempts, the waiter will sleep.

# polls in a loop, sleeping between attempts
client.wait_until(waiter_name, params)

Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. You can pass configuration as the final arguments hash.

# poll for ~25 seconds
client.wait_until(waiter_name, params, {
  max_attempts: 5,
  delay: 5,
})

Callbacks

You can be notified before each polling attempt and before each delay. If you throw :success or :failure from these callbacks, it will terminate the waiter.

started_at = Time.now
client.wait_until(waiter_name, params, {

  # disable max attempts
  max_attempts: nil,

  # poll for 1 hour, instead of a number of attempts
  before_wait: -> (attempts, response) do
    throw :failure if Time.now - started_at > 3600
  end
})

Handling Errors

When a waiter is unsuccessful, it will raise an error. All of the failure errors extend from Waiters::Errors::WaiterFailed.

begin
  client.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

Valid Waiters

The following table lists the valid waiter names, the operations they call, and the default :delay and :max_attempts values.

waiter_name params :delay :max_attempts
bot_alias_available #describe_bot_alias 10 35
bot_available #describe_bot 10 35
bot_export_completed #describe_export 10 35
bot_import_completed #describe_import 10 35
bot_locale_built #describe_bot_locale 10 35
bot_locale_created #describe_bot_locale 10 35
bot_locale_express_testing_available #describe_bot_locale 10 35
bot_version_available #describe_bot_version 10 35

Parameters:

  • waiter_name (Symbol)
  • params (Hash) (defaults to: {})

    ({})

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :max_attempts (Integer)
  • :delay (Integer)
  • :before_attempt (Proc)
  • :before_wait (Proc)

Yields:

  • (w.waiter)

Returns:

  • (Boolean)

    Returns true if the waiter was successful.

Raises:

  • (Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

  • (Errors::TooManyAttemptsError)

    Raised when the configured maximum number of attempts have been made, and the waiter is not yet successful.

  • (Errors::UnexpectedError)

    Raised when an error is encounted while polling for a resource that is not expected.

  • (Errors::NoSuchWaiterError)

    Raised when you request to wait for an unknown state.



10596
10597
10598
10599
10600
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 10596

def wait_until(waiter_name, params = {}, options = {})
  w = waiter(waiter_name, options)
  yield(w.waiter) if block_given? # deprecated
  w.wait(params)
end