aws-sdk-lexmodelsv2 1.26.0 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelsv2/client.rb +822 -7
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +44 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +1758 -340
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- metadata +2 -2
| @@ -6504,6 +6504,10 @@ module Aws::LexModelsV2 | |
| 6504 6504 | 
             
                #   If the `multipleValuesSetting` is not set, the default value is
         | 
| 6505 6505 | 
             
                #   `false`.
         | 
| 6506 6506 | 
             
                #
         | 
| 6507 | 
            +
                # @option params [Types::SubSlotSetting] :sub_slot_setting
         | 
| 6508 | 
            +
                #   Specifications for the constituent sub slots and the expression for
         | 
| 6509 | 
            +
                #   the composite slot.
         | 
| 6510 | 
            +
                #
         | 
| 6507 6511 | 
             
                # @return [Types::CreateSlotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 6508 6512 | 
             
                #
         | 
| 6509 6513 | 
             
                #   * {Types::CreateSlotResponse#slot_id #slot_id} => String
         | 
| @@ -6518,6 +6522,7 @@ module Aws::LexModelsV2 | |
| 6518 6522 | 
             
                #   * {Types::CreateSlotResponse#intent_id #intent_id} => String
         | 
| 6519 6523 | 
             
                #   * {Types::CreateSlotResponse#creation_date_time #creation_date_time} => Time
         | 
| 6520 6524 | 
             
                #   * {Types::CreateSlotResponse#multiple_values_setting #multiple_values_setting} => Types::MultipleValuesSetting
         | 
| 6525 | 
            +
                #   * {Types::CreateSlotResponse#sub_slot_setting #sub_slot_setting} => Types::SubSlotSetting
         | 
| 6521 6526 | 
             
                #
         | 
| 6522 6527 | 
             
                # @example Request syntax with placeholder values
         | 
| 6523 6528 | 
             
                #
         | 
| @@ -8032,6 +8037,247 @@ module Aws::LexModelsV2 | |
| 8032 8037 | 
             
                #     multiple_values_setting: {
         | 
| 8033 8038 | 
             
                #       allow_multiple_values: false,
         | 
| 8034 8039 | 
             
                #     },
         | 
| 8040 | 
            +
                #     sub_slot_setting: {
         | 
| 8041 | 
            +
                #       expression: "SubSlotExpression",
         | 
| 8042 | 
            +
                #       slot_specifications: {
         | 
| 8043 | 
            +
                #         "Name" => {
         | 
| 8044 | 
            +
                #           slot_type_id: "BuiltInOrCustomSlotTypeId", # required
         | 
| 8045 | 
            +
                #           value_elicitation_setting: { # required
         | 
| 8046 | 
            +
                #             default_value_specification: {
         | 
| 8047 | 
            +
                #               default_value_list: [ # required
         | 
| 8048 | 
            +
                #                 {
         | 
| 8049 | 
            +
                #                   default_value: "SlotDefaultValueString", # required
         | 
| 8050 | 
            +
                #                 },
         | 
| 8051 | 
            +
                #               ],
         | 
| 8052 | 
            +
                #             },
         | 
| 8053 | 
            +
                #             prompt_specification: { # required
         | 
| 8054 | 
            +
                #               message_groups: [ # required
         | 
| 8055 | 
            +
                #                 {
         | 
| 8056 | 
            +
                #                   message: { # required
         | 
| 8057 | 
            +
                #                     plain_text_message: {
         | 
| 8058 | 
            +
                #                       value: "PlainTextMessageValue", # required
         | 
| 8059 | 
            +
                #                     },
         | 
| 8060 | 
            +
                #                     custom_payload: {
         | 
| 8061 | 
            +
                #                       value: "CustomPayloadValue", # required
         | 
| 8062 | 
            +
                #                     },
         | 
| 8063 | 
            +
                #                     ssml_message: {
         | 
| 8064 | 
            +
                #                       value: "SSMLMessageValue", # required
         | 
| 8065 | 
            +
                #                     },
         | 
| 8066 | 
            +
                #                     image_response_card: {
         | 
| 8067 | 
            +
                #                       title: "AttachmentTitle", # required
         | 
| 8068 | 
            +
                #                       subtitle: "AttachmentTitle",
         | 
| 8069 | 
            +
                #                       image_url: "AttachmentUrl",
         | 
| 8070 | 
            +
                #                       buttons: [
         | 
| 8071 | 
            +
                #                         {
         | 
| 8072 | 
            +
                #                           text: "ButtonText", # required
         | 
| 8073 | 
            +
                #                           value: "ButtonValue", # required
         | 
| 8074 | 
            +
                #                         },
         | 
| 8075 | 
            +
                #                       ],
         | 
| 8076 | 
            +
                #                     },
         | 
| 8077 | 
            +
                #                   },
         | 
| 8078 | 
            +
                #                   variations: [
         | 
| 8079 | 
            +
                #                     {
         | 
| 8080 | 
            +
                #                       plain_text_message: {
         | 
| 8081 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 8082 | 
            +
                #                       },
         | 
| 8083 | 
            +
                #                       custom_payload: {
         | 
| 8084 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 8085 | 
            +
                #                       },
         | 
| 8086 | 
            +
                #                       ssml_message: {
         | 
| 8087 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 8088 | 
            +
                #                       },
         | 
| 8089 | 
            +
                #                       image_response_card: {
         | 
| 8090 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 8091 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 8092 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 8093 | 
            +
                #                         buttons: [
         | 
| 8094 | 
            +
                #                           {
         | 
| 8095 | 
            +
                #                             text: "ButtonText", # required
         | 
| 8096 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 8097 | 
            +
                #                           },
         | 
| 8098 | 
            +
                #                         ],
         | 
| 8099 | 
            +
                #                       },
         | 
| 8100 | 
            +
                #                     },
         | 
| 8101 | 
            +
                #                   ],
         | 
| 8102 | 
            +
                #                 },
         | 
| 8103 | 
            +
                #               ],
         | 
| 8104 | 
            +
                #               max_retries: 1, # required
         | 
| 8105 | 
            +
                #               allow_interrupt: false,
         | 
| 8106 | 
            +
                #               message_selection_strategy: "Random", # accepts Random, Ordered
         | 
| 8107 | 
            +
                #             },
         | 
| 8108 | 
            +
                #             sample_utterances: [
         | 
| 8109 | 
            +
                #               {
         | 
| 8110 | 
            +
                #                 utterance: "Utterance", # required
         | 
| 8111 | 
            +
                #               },
         | 
| 8112 | 
            +
                #             ],
         | 
| 8113 | 
            +
                #             wait_and_continue_specification: {
         | 
| 8114 | 
            +
                #               waiting_response: { # required
         | 
| 8115 | 
            +
                #                 message_groups: [ # required
         | 
| 8116 | 
            +
                #                   {
         | 
| 8117 | 
            +
                #                     message: { # required
         | 
| 8118 | 
            +
                #                       plain_text_message: {
         | 
| 8119 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 8120 | 
            +
                #                       },
         | 
| 8121 | 
            +
                #                       custom_payload: {
         | 
| 8122 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 8123 | 
            +
                #                       },
         | 
| 8124 | 
            +
                #                       ssml_message: {
         | 
| 8125 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 8126 | 
            +
                #                       },
         | 
| 8127 | 
            +
                #                       image_response_card: {
         | 
| 8128 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 8129 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 8130 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 8131 | 
            +
                #                         buttons: [
         | 
| 8132 | 
            +
                #                           {
         | 
| 8133 | 
            +
                #                             text: "ButtonText", # required
         | 
| 8134 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 8135 | 
            +
                #                           },
         | 
| 8136 | 
            +
                #                         ],
         | 
| 8137 | 
            +
                #                       },
         | 
| 8138 | 
            +
                #                     },
         | 
| 8139 | 
            +
                #                     variations: [
         | 
| 8140 | 
            +
                #                       {
         | 
| 8141 | 
            +
                #                         plain_text_message: {
         | 
| 8142 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 8143 | 
            +
                #                         },
         | 
| 8144 | 
            +
                #                         custom_payload: {
         | 
| 8145 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 8146 | 
            +
                #                         },
         | 
| 8147 | 
            +
                #                         ssml_message: {
         | 
| 8148 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 8149 | 
            +
                #                         },
         | 
| 8150 | 
            +
                #                         image_response_card: {
         | 
| 8151 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 8152 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 8153 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 8154 | 
            +
                #                           buttons: [
         | 
| 8155 | 
            +
                #                             {
         | 
| 8156 | 
            +
                #                               text: "ButtonText", # required
         | 
| 8157 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 8158 | 
            +
                #                             },
         | 
| 8159 | 
            +
                #                           ],
         | 
| 8160 | 
            +
                #                         },
         | 
| 8161 | 
            +
                #                       },
         | 
| 8162 | 
            +
                #                     ],
         | 
| 8163 | 
            +
                #                   },
         | 
| 8164 | 
            +
                #                 ],
         | 
| 8165 | 
            +
                #                 allow_interrupt: false,
         | 
| 8166 | 
            +
                #               },
         | 
| 8167 | 
            +
                #               continue_response: { # required
         | 
| 8168 | 
            +
                #                 message_groups: [ # required
         | 
| 8169 | 
            +
                #                   {
         | 
| 8170 | 
            +
                #                     message: { # required
         | 
| 8171 | 
            +
                #                       plain_text_message: {
         | 
| 8172 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 8173 | 
            +
                #                       },
         | 
| 8174 | 
            +
                #                       custom_payload: {
         | 
| 8175 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 8176 | 
            +
                #                       },
         | 
| 8177 | 
            +
                #                       ssml_message: {
         | 
| 8178 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 8179 | 
            +
                #                       },
         | 
| 8180 | 
            +
                #                       image_response_card: {
         | 
| 8181 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 8182 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 8183 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 8184 | 
            +
                #                         buttons: [
         | 
| 8185 | 
            +
                #                           {
         | 
| 8186 | 
            +
                #                             text: "ButtonText", # required
         | 
| 8187 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 8188 | 
            +
                #                           },
         | 
| 8189 | 
            +
                #                         ],
         | 
| 8190 | 
            +
                #                       },
         | 
| 8191 | 
            +
                #                     },
         | 
| 8192 | 
            +
                #                     variations: [
         | 
| 8193 | 
            +
                #                       {
         | 
| 8194 | 
            +
                #                         plain_text_message: {
         | 
| 8195 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 8196 | 
            +
                #                         },
         | 
| 8197 | 
            +
                #                         custom_payload: {
         | 
| 8198 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 8199 | 
            +
                #                         },
         | 
| 8200 | 
            +
                #                         ssml_message: {
         | 
| 8201 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 8202 | 
            +
                #                         },
         | 
| 8203 | 
            +
                #                         image_response_card: {
         | 
| 8204 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 8205 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 8206 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 8207 | 
            +
                #                           buttons: [
         | 
| 8208 | 
            +
                #                             {
         | 
| 8209 | 
            +
                #                               text: "ButtonText", # required
         | 
| 8210 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 8211 | 
            +
                #                             },
         | 
| 8212 | 
            +
                #                           ],
         | 
| 8213 | 
            +
                #                         },
         | 
| 8214 | 
            +
                #                       },
         | 
| 8215 | 
            +
                #                     ],
         | 
| 8216 | 
            +
                #                   },
         | 
| 8217 | 
            +
                #                 ],
         | 
| 8218 | 
            +
                #                 allow_interrupt: false,
         | 
| 8219 | 
            +
                #               },
         | 
| 8220 | 
            +
                #               still_waiting_response: {
         | 
| 8221 | 
            +
                #                 message_groups: [ # required
         | 
| 8222 | 
            +
                #                   {
         | 
| 8223 | 
            +
                #                     message: { # required
         | 
| 8224 | 
            +
                #                       plain_text_message: {
         | 
| 8225 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 8226 | 
            +
                #                       },
         | 
| 8227 | 
            +
                #                       custom_payload: {
         | 
| 8228 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 8229 | 
            +
                #                       },
         | 
| 8230 | 
            +
                #                       ssml_message: {
         | 
| 8231 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 8232 | 
            +
                #                       },
         | 
| 8233 | 
            +
                #                       image_response_card: {
         | 
| 8234 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 8235 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 8236 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 8237 | 
            +
                #                         buttons: [
         | 
| 8238 | 
            +
                #                           {
         | 
| 8239 | 
            +
                #                             text: "ButtonText", # required
         | 
| 8240 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 8241 | 
            +
                #                           },
         | 
| 8242 | 
            +
                #                         ],
         | 
| 8243 | 
            +
                #                       },
         | 
| 8244 | 
            +
                #                     },
         | 
| 8245 | 
            +
                #                     variations: [
         | 
| 8246 | 
            +
                #                       {
         | 
| 8247 | 
            +
                #                         plain_text_message: {
         | 
| 8248 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 8249 | 
            +
                #                         },
         | 
| 8250 | 
            +
                #                         custom_payload: {
         | 
| 8251 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 8252 | 
            +
                #                         },
         | 
| 8253 | 
            +
                #                         ssml_message: {
         | 
| 8254 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 8255 | 
            +
                #                         },
         | 
| 8256 | 
            +
                #                         image_response_card: {
         | 
| 8257 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 8258 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 8259 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 8260 | 
            +
                #                           buttons: [
         | 
| 8261 | 
            +
                #                             {
         | 
| 8262 | 
            +
                #                               text: "ButtonText", # required
         | 
| 8263 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 8264 | 
            +
                #                             },
         | 
| 8265 | 
            +
                #                           ],
         | 
| 8266 | 
            +
                #                         },
         | 
| 8267 | 
            +
                #                       },
         | 
| 8268 | 
            +
                #                     ],
         | 
| 8269 | 
            +
                #                   },
         | 
| 8270 | 
            +
                #                 ],
         | 
| 8271 | 
            +
                #                 frequency_in_seconds: 1, # required
         | 
| 8272 | 
            +
                #                 timeout_in_seconds: 1, # required
         | 
| 8273 | 
            +
                #                 allow_interrupt: false,
         | 
| 8274 | 
            +
                #               },
         | 
| 8275 | 
            +
                #               active: false,
         | 
| 8276 | 
            +
                #             },
         | 
| 8277 | 
            +
                #           },
         | 
| 8278 | 
            +
                #         },
         | 
| 8279 | 
            +
                #       },
         | 
| 8280 | 
            +
                #     },
         | 
| 8035 8281 | 
             
                #   })
         | 
| 8036 8282 | 
             
                #
         | 
| 8037 8283 | 
             
                # @example Response structure
         | 
| @@ -8646,6 +8892,102 @@ module Aws::LexModelsV2 | |
| 8646 8892 | 
             
                #   resp.intent_id #=> String
         | 
| 8647 8893 | 
             
                #   resp.creation_date_time #=> Time
         | 
| 8648 8894 | 
             
                #   resp.multiple_values_setting.allow_multiple_values #=> Boolean
         | 
| 8895 | 
            +
                #   resp.sub_slot_setting.expression #=> String
         | 
| 8896 | 
            +
                #   resp.sub_slot_setting.slot_specifications #=> Hash
         | 
| 8897 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
         | 
| 8898 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
         | 
| 8899 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
         | 
| 8900 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
         | 
| 8901 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
         | 
| 8902 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
         | 
| 8903 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
         | 
| 8904 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
         | 
| 8905 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 8906 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 8907 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 8908 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 8909 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 8910 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
         | 
| 8911 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 8912 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 8913 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 8914 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 8915 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 8916 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 8917 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 8918 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 8919 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 8920 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
         | 
| 8921 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
         | 
| 8922 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
         | 
| 8923 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
         | 
| 8924 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
         | 
| 8925 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
         | 
| 8926 | 
            +
                #   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
         | 
| 8927 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 8928 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 8929 | 
            +
                #   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
         | 
| 8930 | 
            +
                #   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
         | 
| 8931 | 
            +
                #   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
         | 
| 8932 | 
            +
                #   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
         | 
| 8933 | 
            +
                #   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
         | 
| 8934 | 
            +
                #   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
         | 
| 8935 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
         | 
| 8936 | 
            +
                #   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
         | 
| 8937 | 
            +
                #   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
         | 
| 8938 | 
            +
                #   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
         | 
| 8939 | 
            +
                #   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
         | 
| 8940 | 
            +
                #   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
         | 
| 8941 | 
            +
                #   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
         | 
| 8942 | 
            +
                #   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
         | 
| 8943 | 
            +
                #   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
         | 
| 8944 | 
            +
                #   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
         | 
| 8945 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
         | 
| 8946 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
         | 
| 8947 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 8948 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 8949 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 8950 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 8951 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 8952 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 8953 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 8954 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 8955 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 8956 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
         | 
| 8957 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 8958 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 8959 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 8960 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 8961 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 8962 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 8963 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 8964 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 8965 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 8966 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
         | 
| 8967 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
         | 
| 8968 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 8969 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 8970 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 8971 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 8972 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 8973 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 8974 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 8975 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 8976 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 8977 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
         | 
| 8978 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 8979 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 8980 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 8981 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 8982 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 8983 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 8984 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 8985 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 8986 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 8987 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
         | 
| 8988 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
         | 
| 8989 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
         | 
| 8990 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
         | 
| 8649 8991 | 
             
                #
         | 
| 8650 8992 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateSlot AWS API Documentation
         | 
| 8651 8993 | 
             
                #
         | 
| @@ -8717,6 +9059,9 @@ module Aws::LexModelsV2 | |
| 8717 9059 | 
             
                # @option params [Types::ExternalSourceSetting] :external_source_setting
         | 
| 8718 9060 | 
             
                #   Sets the type of external information used to create the slot type.
         | 
| 8719 9061 | 
             
                #
         | 
| 9062 | 
            +
                # @option params [Types::CompositeSlotTypeSetting] :composite_slot_type_setting
         | 
| 9063 | 
            +
                #   Specifications for a composite slot type.
         | 
| 9064 | 
            +
                #
         | 
| 8720 9065 | 
             
                # @return [Types::CreateSlotTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 8721 9066 | 
             
                #
         | 
| 8722 9067 | 
             
                #   * {Types::CreateSlotTypeResponse#slot_type_id #slot_type_id} => String
         | 
| @@ -8730,6 +9075,7 @@ module Aws::LexModelsV2 | |
| 8730 9075 | 
             
                #   * {Types::CreateSlotTypeResponse#locale_id #locale_id} => String
         | 
| 8731 9076 | 
             
                #   * {Types::CreateSlotTypeResponse#creation_date_time #creation_date_time} => Time
         | 
| 8732 9077 | 
             
                #   * {Types::CreateSlotTypeResponse#external_source_setting #external_source_setting} => Types::ExternalSourceSetting
         | 
| 9078 | 
            +
                #   * {Types::CreateSlotTypeResponse#composite_slot_type_setting #composite_slot_type_setting} => Types::CompositeSlotTypeSetting
         | 
| 8733 9079 | 
             
                #
         | 
| 8734 9080 | 
             
                # @example Request syntax with placeholder values
         | 
| 8735 9081 | 
             
                #
         | 
| @@ -8749,7 +9095,7 @@ module Aws::LexModelsV2 | |
| 8749 9095 | 
             
                #       },
         | 
| 8750 9096 | 
             
                #     ],
         | 
| 8751 9097 | 
             
                #     value_selection_setting: {
         | 
| 8752 | 
            -
                #       resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution
         | 
| 9098 | 
            +
                #       resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution, Concatenation
         | 
| 8753 9099 | 
             
                #       regex_filter: {
         | 
| 8754 9100 | 
             
                #         pattern: "RegexPattern", # required
         | 
| 8755 9101 | 
             
                #       },
         | 
| @@ -8770,6 +9116,14 @@ module Aws::LexModelsV2 | |
| 8770 9116 | 
             
                #         },
         | 
| 8771 9117 | 
             
                #       },
         | 
| 8772 9118 | 
             
                #     },
         | 
| 9119 | 
            +
                #     composite_slot_type_setting: {
         | 
| 9120 | 
            +
                #       sub_slots: [
         | 
| 9121 | 
            +
                #         {
         | 
| 9122 | 
            +
                #           name: "Name", # required
         | 
| 9123 | 
            +
                #           slot_type_id: "BuiltInOrCustomSlotTypeId", # required
         | 
| 9124 | 
            +
                #         },
         | 
| 9125 | 
            +
                #       ],
         | 
| 9126 | 
            +
                #     },
         | 
| 8773 9127 | 
             
                #   })
         | 
| 8774 9128 | 
             
                #
         | 
| 8775 9129 | 
             
                # @example Response structure
         | 
| @@ -8781,7 +9135,7 @@ module Aws::LexModelsV2 | |
| 8781 9135 | 
             
                #   resp.slot_type_values[0].sample_value.value #=> String
         | 
| 8782 9136 | 
             
                #   resp.slot_type_values[0].synonyms #=> Array
         | 
| 8783 9137 | 
             
                #   resp.slot_type_values[0].synonyms[0].value #=> String
         | 
| 8784 | 
            -
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution"
         | 
| 9138 | 
            +
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
         | 
| 8785 9139 | 
             
                #   resp.value_selection_setting.regex_filter.pattern #=> String
         | 
| 8786 9140 | 
             
                #   resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
         | 
| 8787 9141 | 
             
                #   resp.parent_slot_type_signature #=> String
         | 
| @@ -8792,6 +9146,9 @@ module Aws::LexModelsV2 | |
| 8792 9146 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
         | 
| 8793 9147 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
         | 
| 8794 9148 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
         | 
| 9149 | 
            +
                #   resp.composite_slot_type_setting.sub_slots #=> Array
         | 
| 9150 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].name #=> String
         | 
| 9151 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String
         | 
| 8795 9152 | 
             
                #
         | 
| 8796 9153 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateSlotType AWS API Documentation
         | 
| 8797 9154 | 
             
                #
         | 
| @@ -11552,6 +11909,7 @@ module Aws::LexModelsV2 | |
| 11552 11909 | 
             
                #   * {Types::DescribeSlotResponse#creation_date_time #creation_date_time} => Time
         | 
| 11553 11910 | 
             
                #   * {Types::DescribeSlotResponse#last_updated_date_time #last_updated_date_time} => Time
         | 
| 11554 11911 | 
             
                #   * {Types::DescribeSlotResponse#multiple_values_setting #multiple_values_setting} => Types::MultipleValuesSetting
         | 
| 11912 | 
            +
                #   * {Types::DescribeSlotResponse#sub_slot_setting #sub_slot_setting} => Types::SubSlotSetting
         | 
| 11555 11913 | 
             
                #
         | 
| 11556 11914 | 
             
                # @example Request syntax with placeholder values
         | 
| 11557 11915 | 
             
                #
         | 
| @@ -12176,6 +12534,102 @@ module Aws::LexModelsV2 | |
| 12176 12534 | 
             
                #   resp.creation_date_time #=> Time
         | 
| 12177 12535 | 
             
                #   resp.last_updated_date_time #=> Time
         | 
| 12178 12536 | 
             
                #   resp.multiple_values_setting.allow_multiple_values #=> Boolean
         | 
| 12537 | 
            +
                #   resp.sub_slot_setting.expression #=> String
         | 
| 12538 | 
            +
                #   resp.sub_slot_setting.slot_specifications #=> Hash
         | 
| 12539 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
         | 
| 12540 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
         | 
| 12541 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
         | 
| 12542 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
         | 
| 12543 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
         | 
| 12544 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
         | 
| 12545 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
         | 
| 12546 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
         | 
| 12547 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 12548 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 12549 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 12550 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 12551 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 12552 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
         | 
| 12553 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 12554 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 12555 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 12556 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 12557 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 12558 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 12559 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 12560 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 12561 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 12562 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
         | 
| 12563 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
         | 
| 12564 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
         | 
| 12565 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
         | 
| 12566 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
         | 
| 12567 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
         | 
| 12568 | 
            +
                #   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
         | 
| 12569 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 12570 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 12571 | 
            +
                #   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
         | 
| 12572 | 
            +
                #   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
         | 
| 12573 | 
            +
                #   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
         | 
| 12574 | 
            +
                #   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
         | 
| 12575 | 
            +
                #   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
         | 
| 12576 | 
            +
                #   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
         | 
| 12577 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
         | 
| 12578 | 
            +
                #   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
         | 
| 12579 | 
            +
                #   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
         | 
| 12580 | 
            +
                #   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
         | 
| 12581 | 
            +
                #   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
         | 
| 12582 | 
            +
                #   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
         | 
| 12583 | 
            +
                #   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
         | 
| 12584 | 
            +
                #   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
         | 
| 12585 | 
            +
                #   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
         | 
| 12586 | 
            +
                #   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
         | 
| 12587 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
         | 
| 12588 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
         | 
| 12589 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 12590 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 12591 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 12592 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 12593 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 12594 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 12595 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 12596 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 12597 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 12598 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
         | 
| 12599 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 12600 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 12601 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 12602 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 12603 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 12604 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 12605 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 12606 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 12607 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 12608 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
         | 
| 12609 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
         | 
| 12610 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 12611 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 12612 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 12613 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 12614 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 12615 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 12616 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 12617 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 12618 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 12619 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
         | 
| 12620 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 12621 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 12622 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 12623 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 12624 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 12625 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 12626 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 12627 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 12628 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 12629 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
         | 
| 12630 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
         | 
| 12631 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
         | 
| 12632 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
         | 
| 12179 12633 | 
             
                #
         | 
| 12180 12634 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeSlot AWS API Documentation
         | 
| 12181 12635 | 
             
                #
         | 
| @@ -12220,6 +12674,7 @@ module Aws::LexModelsV2 | |
| 12220 12674 | 
             
                #   * {Types::DescribeSlotTypeResponse#creation_date_time #creation_date_time} => Time
         | 
| 12221 12675 | 
             
                #   * {Types::DescribeSlotTypeResponse#last_updated_date_time #last_updated_date_time} => Time
         | 
| 12222 12676 | 
             
                #   * {Types::DescribeSlotTypeResponse#external_source_setting #external_source_setting} => Types::ExternalSourceSetting
         | 
| 12677 | 
            +
                #   * {Types::DescribeSlotTypeResponse#composite_slot_type_setting #composite_slot_type_setting} => Types::CompositeSlotTypeSetting
         | 
| 12223 12678 | 
             
                #
         | 
| 12224 12679 | 
             
                # @example Request syntax with placeholder values
         | 
| 12225 12680 | 
             
                #
         | 
| @@ -12239,7 +12694,7 @@ module Aws::LexModelsV2 | |
| 12239 12694 | 
             
                #   resp.slot_type_values[0].sample_value.value #=> String
         | 
| 12240 12695 | 
             
                #   resp.slot_type_values[0].synonyms #=> Array
         | 
| 12241 12696 | 
             
                #   resp.slot_type_values[0].synonyms[0].value #=> String
         | 
| 12242 | 
            -
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution"
         | 
| 12697 | 
            +
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
         | 
| 12243 12698 | 
             
                #   resp.value_selection_setting.regex_filter.pattern #=> String
         | 
| 12244 12699 | 
             
                #   resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
         | 
| 12245 12700 | 
             
                #   resp.parent_slot_type_signature #=> String
         | 
| @@ -12251,6 +12706,9 @@ module Aws::LexModelsV2 | |
| 12251 12706 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
         | 
| 12252 12707 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
         | 
| 12253 12708 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
         | 
| 12709 | 
            +
                #   resp.composite_slot_type_setting.sub_slots #=> Array
         | 
| 12710 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].name #=> String
         | 
| 12711 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String
         | 
| 12254 12712 | 
             
                #
         | 
| 12255 12713 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeSlotType AWS API Documentation
         | 
| 12256 12714 | 
             
                #
         | 
| @@ -13324,7 +13782,7 @@ module Aws::LexModelsV2 | |
| 13324 13782 | 
             
                #   resp.slot_type_summaries[0].description #=> String
         | 
| 13325 13783 | 
             
                #   resp.slot_type_summaries[0].parent_slot_type_signature #=> String
         | 
| 13326 13784 | 
             
                #   resp.slot_type_summaries[0].last_updated_date_time #=> Time
         | 
| 13327 | 
            -
                #   resp.slot_type_summaries[0].slot_type_category #=> String, one of "Custom", "Extended", "ExternalGrammar"
         | 
| 13785 | 
            +
                #   resp.slot_type_summaries[0].slot_type_category #=> String, one of "Custom", "Extended", "ExternalGrammar", "Composite"
         | 
| 13328 13786 | 
             
                #   resp.next_token #=> String
         | 
| 13329 13787 | 
             
                #
         | 
| 13330 13788 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListSlotTypes AWS API Documentation
         | 
| @@ -19778,6 +20236,10 @@ module Aws::LexModelsV2 | |
| 19778 20236 | 
             
                #   If the `multipleValuesSetting` is not set, the default value is
         | 
| 19779 20237 | 
             
                #   `false`.
         | 
| 19780 20238 | 
             
                #
         | 
| 20239 | 
            +
                # @option params [Types::SubSlotSetting] :sub_slot_setting
         | 
| 20240 | 
            +
                #   Specifications for the constituent sub slots and the expression for
         | 
| 20241 | 
            +
                #   the composite slot.
         | 
| 20242 | 
            +
                #
         | 
| 19781 20243 | 
             
                # @return [Types::UpdateSlotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 19782 20244 | 
             
                #
         | 
| 19783 20245 | 
             
                #   * {Types::UpdateSlotResponse#slot_id #slot_id} => String
         | 
| @@ -19793,6 +20255,7 @@ module Aws::LexModelsV2 | |
| 19793 20255 | 
             
                #   * {Types::UpdateSlotResponse#creation_date_time #creation_date_time} => Time
         | 
| 19794 20256 | 
             
                #   * {Types::UpdateSlotResponse#last_updated_date_time #last_updated_date_time} => Time
         | 
| 19795 20257 | 
             
                #   * {Types::UpdateSlotResponse#multiple_values_setting #multiple_values_setting} => Types::MultipleValuesSetting
         | 
| 20258 | 
            +
                #   * {Types::UpdateSlotResponse#sub_slot_setting #sub_slot_setting} => Types::SubSlotSetting
         | 
| 19796 20259 | 
             
                #
         | 
| 19797 20260 | 
             
                # @example Request syntax with placeholder values
         | 
| 19798 20261 | 
             
                #
         | 
| @@ -21308,6 +21771,247 @@ module Aws::LexModelsV2 | |
| 21308 21771 | 
             
                #     multiple_values_setting: {
         | 
| 21309 21772 | 
             
                #       allow_multiple_values: false,
         | 
| 21310 21773 | 
             
                #     },
         | 
| 21774 | 
            +
                #     sub_slot_setting: {
         | 
| 21775 | 
            +
                #       expression: "SubSlotExpression",
         | 
| 21776 | 
            +
                #       slot_specifications: {
         | 
| 21777 | 
            +
                #         "Name" => {
         | 
| 21778 | 
            +
                #           slot_type_id: "BuiltInOrCustomSlotTypeId", # required
         | 
| 21779 | 
            +
                #           value_elicitation_setting: { # required
         | 
| 21780 | 
            +
                #             default_value_specification: {
         | 
| 21781 | 
            +
                #               default_value_list: [ # required
         | 
| 21782 | 
            +
                #                 {
         | 
| 21783 | 
            +
                #                   default_value: "SlotDefaultValueString", # required
         | 
| 21784 | 
            +
                #                 },
         | 
| 21785 | 
            +
                #               ],
         | 
| 21786 | 
            +
                #             },
         | 
| 21787 | 
            +
                #             prompt_specification: { # required
         | 
| 21788 | 
            +
                #               message_groups: [ # required
         | 
| 21789 | 
            +
                #                 {
         | 
| 21790 | 
            +
                #                   message: { # required
         | 
| 21791 | 
            +
                #                     plain_text_message: {
         | 
| 21792 | 
            +
                #                       value: "PlainTextMessageValue", # required
         | 
| 21793 | 
            +
                #                     },
         | 
| 21794 | 
            +
                #                     custom_payload: {
         | 
| 21795 | 
            +
                #                       value: "CustomPayloadValue", # required
         | 
| 21796 | 
            +
                #                     },
         | 
| 21797 | 
            +
                #                     ssml_message: {
         | 
| 21798 | 
            +
                #                       value: "SSMLMessageValue", # required
         | 
| 21799 | 
            +
                #                     },
         | 
| 21800 | 
            +
                #                     image_response_card: {
         | 
| 21801 | 
            +
                #                       title: "AttachmentTitle", # required
         | 
| 21802 | 
            +
                #                       subtitle: "AttachmentTitle",
         | 
| 21803 | 
            +
                #                       image_url: "AttachmentUrl",
         | 
| 21804 | 
            +
                #                       buttons: [
         | 
| 21805 | 
            +
                #                         {
         | 
| 21806 | 
            +
                #                           text: "ButtonText", # required
         | 
| 21807 | 
            +
                #                           value: "ButtonValue", # required
         | 
| 21808 | 
            +
                #                         },
         | 
| 21809 | 
            +
                #                       ],
         | 
| 21810 | 
            +
                #                     },
         | 
| 21811 | 
            +
                #                   },
         | 
| 21812 | 
            +
                #                   variations: [
         | 
| 21813 | 
            +
                #                     {
         | 
| 21814 | 
            +
                #                       plain_text_message: {
         | 
| 21815 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 21816 | 
            +
                #                       },
         | 
| 21817 | 
            +
                #                       custom_payload: {
         | 
| 21818 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 21819 | 
            +
                #                       },
         | 
| 21820 | 
            +
                #                       ssml_message: {
         | 
| 21821 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 21822 | 
            +
                #                       },
         | 
| 21823 | 
            +
                #                       image_response_card: {
         | 
| 21824 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 21825 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 21826 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 21827 | 
            +
                #                         buttons: [
         | 
| 21828 | 
            +
                #                           {
         | 
| 21829 | 
            +
                #                             text: "ButtonText", # required
         | 
| 21830 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 21831 | 
            +
                #                           },
         | 
| 21832 | 
            +
                #                         ],
         | 
| 21833 | 
            +
                #                       },
         | 
| 21834 | 
            +
                #                     },
         | 
| 21835 | 
            +
                #                   ],
         | 
| 21836 | 
            +
                #                 },
         | 
| 21837 | 
            +
                #               ],
         | 
| 21838 | 
            +
                #               max_retries: 1, # required
         | 
| 21839 | 
            +
                #               allow_interrupt: false,
         | 
| 21840 | 
            +
                #               message_selection_strategy: "Random", # accepts Random, Ordered
         | 
| 21841 | 
            +
                #             },
         | 
| 21842 | 
            +
                #             sample_utterances: [
         | 
| 21843 | 
            +
                #               {
         | 
| 21844 | 
            +
                #                 utterance: "Utterance", # required
         | 
| 21845 | 
            +
                #               },
         | 
| 21846 | 
            +
                #             ],
         | 
| 21847 | 
            +
                #             wait_and_continue_specification: {
         | 
| 21848 | 
            +
                #               waiting_response: { # required
         | 
| 21849 | 
            +
                #                 message_groups: [ # required
         | 
| 21850 | 
            +
                #                   {
         | 
| 21851 | 
            +
                #                     message: { # required
         | 
| 21852 | 
            +
                #                       plain_text_message: {
         | 
| 21853 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 21854 | 
            +
                #                       },
         | 
| 21855 | 
            +
                #                       custom_payload: {
         | 
| 21856 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 21857 | 
            +
                #                       },
         | 
| 21858 | 
            +
                #                       ssml_message: {
         | 
| 21859 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 21860 | 
            +
                #                       },
         | 
| 21861 | 
            +
                #                       image_response_card: {
         | 
| 21862 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 21863 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 21864 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 21865 | 
            +
                #                         buttons: [
         | 
| 21866 | 
            +
                #                           {
         | 
| 21867 | 
            +
                #                             text: "ButtonText", # required
         | 
| 21868 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 21869 | 
            +
                #                           },
         | 
| 21870 | 
            +
                #                         ],
         | 
| 21871 | 
            +
                #                       },
         | 
| 21872 | 
            +
                #                     },
         | 
| 21873 | 
            +
                #                     variations: [
         | 
| 21874 | 
            +
                #                       {
         | 
| 21875 | 
            +
                #                         plain_text_message: {
         | 
| 21876 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 21877 | 
            +
                #                         },
         | 
| 21878 | 
            +
                #                         custom_payload: {
         | 
| 21879 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 21880 | 
            +
                #                         },
         | 
| 21881 | 
            +
                #                         ssml_message: {
         | 
| 21882 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 21883 | 
            +
                #                         },
         | 
| 21884 | 
            +
                #                         image_response_card: {
         | 
| 21885 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 21886 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 21887 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 21888 | 
            +
                #                           buttons: [
         | 
| 21889 | 
            +
                #                             {
         | 
| 21890 | 
            +
                #                               text: "ButtonText", # required
         | 
| 21891 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 21892 | 
            +
                #                             },
         | 
| 21893 | 
            +
                #                           ],
         | 
| 21894 | 
            +
                #                         },
         | 
| 21895 | 
            +
                #                       },
         | 
| 21896 | 
            +
                #                     ],
         | 
| 21897 | 
            +
                #                   },
         | 
| 21898 | 
            +
                #                 ],
         | 
| 21899 | 
            +
                #                 allow_interrupt: false,
         | 
| 21900 | 
            +
                #               },
         | 
| 21901 | 
            +
                #               continue_response: { # required
         | 
| 21902 | 
            +
                #                 message_groups: [ # required
         | 
| 21903 | 
            +
                #                   {
         | 
| 21904 | 
            +
                #                     message: { # required
         | 
| 21905 | 
            +
                #                       plain_text_message: {
         | 
| 21906 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 21907 | 
            +
                #                       },
         | 
| 21908 | 
            +
                #                       custom_payload: {
         | 
| 21909 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 21910 | 
            +
                #                       },
         | 
| 21911 | 
            +
                #                       ssml_message: {
         | 
| 21912 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 21913 | 
            +
                #                       },
         | 
| 21914 | 
            +
                #                       image_response_card: {
         | 
| 21915 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 21916 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 21917 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 21918 | 
            +
                #                         buttons: [
         | 
| 21919 | 
            +
                #                           {
         | 
| 21920 | 
            +
                #                             text: "ButtonText", # required
         | 
| 21921 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 21922 | 
            +
                #                           },
         | 
| 21923 | 
            +
                #                         ],
         | 
| 21924 | 
            +
                #                       },
         | 
| 21925 | 
            +
                #                     },
         | 
| 21926 | 
            +
                #                     variations: [
         | 
| 21927 | 
            +
                #                       {
         | 
| 21928 | 
            +
                #                         plain_text_message: {
         | 
| 21929 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 21930 | 
            +
                #                         },
         | 
| 21931 | 
            +
                #                         custom_payload: {
         | 
| 21932 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 21933 | 
            +
                #                         },
         | 
| 21934 | 
            +
                #                         ssml_message: {
         | 
| 21935 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 21936 | 
            +
                #                         },
         | 
| 21937 | 
            +
                #                         image_response_card: {
         | 
| 21938 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 21939 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 21940 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 21941 | 
            +
                #                           buttons: [
         | 
| 21942 | 
            +
                #                             {
         | 
| 21943 | 
            +
                #                               text: "ButtonText", # required
         | 
| 21944 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 21945 | 
            +
                #                             },
         | 
| 21946 | 
            +
                #                           ],
         | 
| 21947 | 
            +
                #                         },
         | 
| 21948 | 
            +
                #                       },
         | 
| 21949 | 
            +
                #                     ],
         | 
| 21950 | 
            +
                #                   },
         | 
| 21951 | 
            +
                #                 ],
         | 
| 21952 | 
            +
                #                 allow_interrupt: false,
         | 
| 21953 | 
            +
                #               },
         | 
| 21954 | 
            +
                #               still_waiting_response: {
         | 
| 21955 | 
            +
                #                 message_groups: [ # required
         | 
| 21956 | 
            +
                #                   {
         | 
| 21957 | 
            +
                #                     message: { # required
         | 
| 21958 | 
            +
                #                       plain_text_message: {
         | 
| 21959 | 
            +
                #                         value: "PlainTextMessageValue", # required
         | 
| 21960 | 
            +
                #                       },
         | 
| 21961 | 
            +
                #                       custom_payload: {
         | 
| 21962 | 
            +
                #                         value: "CustomPayloadValue", # required
         | 
| 21963 | 
            +
                #                       },
         | 
| 21964 | 
            +
                #                       ssml_message: {
         | 
| 21965 | 
            +
                #                         value: "SSMLMessageValue", # required
         | 
| 21966 | 
            +
                #                       },
         | 
| 21967 | 
            +
                #                       image_response_card: {
         | 
| 21968 | 
            +
                #                         title: "AttachmentTitle", # required
         | 
| 21969 | 
            +
                #                         subtitle: "AttachmentTitle",
         | 
| 21970 | 
            +
                #                         image_url: "AttachmentUrl",
         | 
| 21971 | 
            +
                #                         buttons: [
         | 
| 21972 | 
            +
                #                           {
         | 
| 21973 | 
            +
                #                             text: "ButtonText", # required
         | 
| 21974 | 
            +
                #                             value: "ButtonValue", # required
         | 
| 21975 | 
            +
                #                           },
         | 
| 21976 | 
            +
                #                         ],
         | 
| 21977 | 
            +
                #                       },
         | 
| 21978 | 
            +
                #                     },
         | 
| 21979 | 
            +
                #                     variations: [
         | 
| 21980 | 
            +
                #                       {
         | 
| 21981 | 
            +
                #                         plain_text_message: {
         | 
| 21982 | 
            +
                #                           value: "PlainTextMessageValue", # required
         | 
| 21983 | 
            +
                #                         },
         | 
| 21984 | 
            +
                #                         custom_payload: {
         | 
| 21985 | 
            +
                #                           value: "CustomPayloadValue", # required
         | 
| 21986 | 
            +
                #                         },
         | 
| 21987 | 
            +
                #                         ssml_message: {
         | 
| 21988 | 
            +
                #                           value: "SSMLMessageValue", # required
         | 
| 21989 | 
            +
                #                         },
         | 
| 21990 | 
            +
                #                         image_response_card: {
         | 
| 21991 | 
            +
                #                           title: "AttachmentTitle", # required
         | 
| 21992 | 
            +
                #                           subtitle: "AttachmentTitle",
         | 
| 21993 | 
            +
                #                           image_url: "AttachmentUrl",
         | 
| 21994 | 
            +
                #                           buttons: [
         | 
| 21995 | 
            +
                #                             {
         | 
| 21996 | 
            +
                #                               text: "ButtonText", # required
         | 
| 21997 | 
            +
                #                               value: "ButtonValue", # required
         | 
| 21998 | 
            +
                #                             },
         | 
| 21999 | 
            +
                #                           ],
         | 
| 22000 | 
            +
                #                         },
         | 
| 22001 | 
            +
                #                       },
         | 
| 22002 | 
            +
                #                     ],
         | 
| 22003 | 
            +
                #                   },
         | 
| 22004 | 
            +
                #                 ],
         | 
| 22005 | 
            +
                #                 frequency_in_seconds: 1, # required
         | 
| 22006 | 
            +
                #                 timeout_in_seconds: 1, # required
         | 
| 22007 | 
            +
                #                 allow_interrupt: false,
         | 
| 22008 | 
            +
                #               },
         | 
| 22009 | 
            +
                #               active: false,
         | 
| 22010 | 
            +
                #             },
         | 
| 22011 | 
            +
                #           },
         | 
| 22012 | 
            +
                #         },
         | 
| 22013 | 
            +
                #       },
         | 
| 22014 | 
            +
                #     },
         | 
| 21311 22015 | 
             
                #   })
         | 
| 21312 22016 | 
             
                #
         | 
| 21313 22017 | 
             
                # @example Response structure
         | 
| @@ -21923,6 +22627,102 @@ module Aws::LexModelsV2 | |
| 21923 22627 | 
             
                #   resp.creation_date_time #=> Time
         | 
| 21924 22628 | 
             
                #   resp.last_updated_date_time #=> Time
         | 
| 21925 22629 | 
             
                #   resp.multiple_values_setting.allow_multiple_values #=> Boolean
         | 
| 22630 | 
            +
                #   resp.sub_slot_setting.expression #=> String
         | 
| 22631 | 
            +
                #   resp.sub_slot_setting.slot_specifications #=> Hash
         | 
| 22632 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].slot_type_id #=> String
         | 
| 22633 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list #=> Array
         | 
| 22634 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.default_value_specification.default_value_list[0].default_value #=> String
         | 
| 22635 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups #=> Array
         | 
| 22636 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.plain_text_message.value #=> String
         | 
| 22637 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.custom_payload.value #=> String
         | 
| 22638 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.ssml_message.value #=> String
         | 
| 22639 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.title #=> String
         | 
| 22640 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 22641 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 22642 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 22643 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 22644 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 22645 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations #=> Array
         | 
| 22646 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 22647 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 22648 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 22649 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 22650 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 22651 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 22652 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 22653 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 22654 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 22655 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.max_retries #=> Integer
         | 
| 22656 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.allow_interrupt #=> Boolean
         | 
| 22657 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.prompt_specification.message_selection_strategy #=> String, one of "Random", "Ordered"
         | 
| 22658 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances #=> Array
         | 
| 22659 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.sample_utterances[0].utterance #=> String
         | 
| 22660 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups #=> Array
         | 
| 22661 | 
            +
                #   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
         | 
| 22662 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 22663 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 22664 | 
            +
                #   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
         | 
| 22665 | 
            +
                #   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
         | 
| 22666 | 
            +
                #   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
         | 
| 22667 | 
            +
                #   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
         | 
| 22668 | 
            +
                #   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
         | 
| 22669 | 
            +
                #   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
         | 
| 22670 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.message_groups[0].variations #=> Array
         | 
| 22671 | 
            +
                #   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
         | 
| 22672 | 
            +
                #   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
         | 
| 22673 | 
            +
                #   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
         | 
| 22674 | 
            +
                #   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
         | 
| 22675 | 
            +
                #   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
         | 
| 22676 | 
            +
                #   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
         | 
| 22677 | 
            +
                #   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
         | 
| 22678 | 
            +
                #   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
         | 
| 22679 | 
            +
                #   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
         | 
| 22680 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.waiting_response.allow_interrupt #=> Boolean
         | 
| 22681 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups #=> Array
         | 
| 22682 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 22683 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 22684 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 22685 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 22686 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 22687 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 22688 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 22689 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 22690 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 22691 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations #=> Array
         | 
| 22692 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 22693 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 22694 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 22695 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 22696 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 22697 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 22698 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 22699 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 22700 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 22701 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.continue_response.allow_interrupt #=> Boolean
         | 
| 22702 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups #=> Array
         | 
| 22703 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.plain_text_message.value #=> String
         | 
| 22704 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.custom_payload.value #=> String
         | 
| 22705 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.ssml_message.value #=> String
         | 
| 22706 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.title #=> String
         | 
| 22707 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.subtitle #=> String
         | 
| 22708 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.image_url #=> String
         | 
| 22709 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons #=> Array
         | 
| 22710 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].text #=> String
         | 
| 22711 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].message.image_response_card.buttons[0].value #=> String
         | 
| 22712 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations #=> Array
         | 
| 22713 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].plain_text_message.value #=> String
         | 
| 22714 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].custom_payload.value #=> String
         | 
| 22715 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].ssml_message.value #=> String
         | 
| 22716 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.title #=> String
         | 
| 22717 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.subtitle #=> String
         | 
| 22718 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.image_url #=> String
         | 
| 22719 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons #=> Array
         | 
| 22720 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].text #=> String
         | 
| 22721 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.message_groups[0].variations[0].image_response_card.buttons[0].value #=> String
         | 
| 22722 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.frequency_in_seconds #=> Integer
         | 
| 22723 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.timeout_in_seconds #=> Integer
         | 
| 22724 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.still_waiting_response.allow_interrupt #=> Boolean
         | 
| 22725 | 
            +
                #   resp.sub_slot_setting.slot_specifications["Name"].value_elicitation_setting.wait_and_continue_specification.active #=> Boolean
         | 
| 21926 22726 | 
             
                #
         | 
| 21927 22727 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateSlot AWS API Documentation
         | 
| 21928 22728 | 
             
                #
         | 
| @@ -21975,6 +22775,9 @@ module Aws::LexModelsV2 | |
| 21975 22775 | 
             
                #   Provides information about the external source of the slot type's
         | 
| 21976 22776 | 
             
                #   definition.
         | 
| 21977 22777 | 
             
                #
         | 
| 22778 | 
            +
                # @option params [Types::CompositeSlotTypeSetting] :composite_slot_type_setting
         | 
| 22779 | 
            +
                #   Specifications for a composite slot type.
         | 
| 22780 | 
            +
                #
         | 
| 21978 22781 | 
             
                # @return [Types::UpdateSlotTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 21979 22782 | 
             
                #
         | 
| 21980 22783 | 
             
                #   * {Types::UpdateSlotTypeResponse#slot_type_id #slot_type_id} => String
         | 
| @@ -21989,6 +22792,7 @@ module Aws::LexModelsV2 | |
| 21989 22792 | 
             
                #   * {Types::UpdateSlotTypeResponse#creation_date_time #creation_date_time} => Time
         | 
| 21990 22793 | 
             
                #   * {Types::UpdateSlotTypeResponse#last_updated_date_time #last_updated_date_time} => Time
         | 
| 21991 22794 | 
             
                #   * {Types::UpdateSlotTypeResponse#external_source_setting #external_source_setting} => Types::ExternalSourceSetting
         | 
| 22795 | 
            +
                #   * {Types::UpdateSlotTypeResponse#composite_slot_type_setting #composite_slot_type_setting} => Types::CompositeSlotTypeSetting
         | 
| 21992 22796 | 
             
                #
         | 
| 21993 22797 | 
             
                # @example Request syntax with placeholder values
         | 
| 21994 22798 | 
             
                #
         | 
| @@ -22009,7 +22813,7 @@ module Aws::LexModelsV2 | |
| 22009 22813 | 
             
                #       },
         | 
| 22010 22814 | 
             
                #     ],
         | 
| 22011 22815 | 
             
                #     value_selection_setting: {
         | 
| 22012 | 
            -
                #       resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution
         | 
| 22816 | 
            +
                #       resolution_strategy: "OriginalValue", # required, accepts OriginalValue, TopResolution, Concatenation
         | 
| 22013 22817 | 
             
                #       regex_filter: {
         | 
| 22014 22818 | 
             
                #         pattern: "RegexPattern", # required
         | 
| 22015 22819 | 
             
                #       },
         | 
| @@ -22030,6 +22834,14 @@ module Aws::LexModelsV2 | |
| 22030 22834 | 
             
                #         },
         | 
| 22031 22835 | 
             
                #       },
         | 
| 22032 22836 | 
             
                #     },
         | 
| 22837 | 
            +
                #     composite_slot_type_setting: {
         | 
| 22838 | 
            +
                #       sub_slots: [
         | 
| 22839 | 
            +
                #         {
         | 
| 22840 | 
            +
                #           name: "Name", # required
         | 
| 22841 | 
            +
                #           slot_type_id: "BuiltInOrCustomSlotTypeId", # required
         | 
| 22842 | 
            +
                #         },
         | 
| 22843 | 
            +
                #       ],
         | 
| 22844 | 
            +
                #     },
         | 
| 22033 22845 | 
             
                #   })
         | 
| 22034 22846 | 
             
                #
         | 
| 22035 22847 | 
             
                # @example Response structure
         | 
| @@ -22041,7 +22853,7 @@ module Aws::LexModelsV2 | |
| 22041 22853 | 
             
                #   resp.slot_type_values[0].sample_value.value #=> String
         | 
| 22042 22854 | 
             
                #   resp.slot_type_values[0].synonyms #=> Array
         | 
| 22043 22855 | 
             
                #   resp.slot_type_values[0].synonyms[0].value #=> String
         | 
| 22044 | 
            -
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution"
         | 
| 22856 | 
            +
                #   resp.value_selection_setting.resolution_strategy #=> String, one of "OriginalValue", "TopResolution", "Concatenation"
         | 
| 22045 22857 | 
             
                #   resp.value_selection_setting.regex_filter.pattern #=> String
         | 
| 22046 22858 | 
             
                #   resp.value_selection_setting.advanced_recognition_setting.audio_recognition_strategy #=> String, one of "UseSlotValuesAsCustomVocabulary"
         | 
| 22047 22859 | 
             
                #   resp.parent_slot_type_signature #=> String
         | 
| @@ -22053,6 +22865,9 @@ module Aws::LexModelsV2 | |
| 22053 22865 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_bucket_name #=> String
         | 
| 22054 22866 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.s3_object_key #=> String
         | 
| 22055 22867 | 
             
                #   resp.external_source_setting.grammar_slot_type_setting.source.kms_key_arn #=> String
         | 
| 22868 | 
            +
                #   resp.composite_slot_type_setting.sub_slots #=> Array
         | 
| 22869 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].name #=> String
         | 
| 22870 | 
            +
                #   resp.composite_slot_type_setting.sub_slots[0].slot_type_id #=> String
         | 
| 22056 22871 | 
             
                #
         | 
| 22057 22872 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateSlotType AWS API Documentation
         | 
| 22058 22873 | 
             
                #
         | 
| @@ -22076,7 +22891,7 @@ module Aws::LexModelsV2 | |
| 22076 22891 | 
             
                    params: params,
         | 
| 22077 22892 | 
             
                    config: config)
         | 
| 22078 22893 | 
             
                  context[:gem_name] = 'aws-sdk-lexmodelsv2'
         | 
| 22079 | 
            -
                  context[:gem_version] = '1. | 
| 22894 | 
            +
                  context[:gem_version] = '1.27.0'
         | 
| 22080 22895 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 22081 22896 | 
             
                end
         | 
| 22082 22897 |  |