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, :session_token, and :account_id options.
    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'], ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
    • ~/.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::InstanceProfileCredentials 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)
  • :account_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.



444
445
446
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 444

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:



515
516
517
518
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 515

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:



583
584
585
586
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 583

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:



655
656
657
658
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 655

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:



714
715
716
717
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 714

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:



833
834
835
836
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 833

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:



984
985
986
987
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 984

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:



1148
1149
1150
1151
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1148

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:



1191
1192
1193
1194
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1191

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:



1251
1252
1253
1254
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1251

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:



1337
1338
1339
1340
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1337

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:



1511
1512
1513
1514
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1511

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:



1556
1557
1558
1559
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1556

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:



1663
1664
1665
1666
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/client.rb', line 1663

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