aws-sdk-connect 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +1100 -5
- data/lib/aws-sdk-connect/client_api.rb +668 -0
- data/lib/aws-sdk-connect/endpoints.rb +210 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +30 -0
- data/lib/aws-sdk-connect/types.rb +1784 -45
- data/lib/aws-sdk-connect.rb +2 -2
- metadata +2 -2
| @@ -11,6 +11,20 @@ | |
| 11 11 | 
             
            module Aws::Connect
         | 
| 12 12 | 
             
              module Endpoints
         | 
| 13 13 |  | 
| 14 | 
            +
                class ActivateEvaluationForm
         | 
| 15 | 
            +
                  def self.build(context)
         | 
| 16 | 
            +
                    unless context.config.regional_endpoint
         | 
| 17 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 18 | 
            +
                    end
         | 
| 19 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 20 | 
            +
                      region: context.config.region,
         | 
| 21 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 22 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 23 | 
            +
                      endpoint: endpoint,
         | 
| 24 | 
            +
                    )
         | 
| 25 | 
            +
                  end
         | 
| 26 | 
            +
                end
         | 
| 27 | 
            +
             | 
| 14 28 | 
             
                class AssociateApprovedOrigin
         | 
| 15 29 | 
             
                  def self.build(context)
         | 
| 16 30 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -207,6 +221,20 @@ module Aws::Connect | |
| 207 221 | 
             
                  end
         | 
| 208 222 | 
             
                end
         | 
| 209 223 |  | 
| 224 | 
            +
                class CreateEvaluationForm
         | 
| 225 | 
            +
                  def self.build(context)
         | 
| 226 | 
            +
                    unless context.config.regional_endpoint
         | 
| 227 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 228 | 
            +
                    end
         | 
| 229 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 230 | 
            +
                      region: context.config.region,
         | 
| 231 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 232 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 233 | 
            +
                      endpoint: endpoint,
         | 
| 234 | 
            +
                    )
         | 
| 235 | 
            +
                  end
         | 
| 236 | 
            +
                end
         | 
| 237 | 
            +
             | 
| 210 238 | 
             
                class CreateHoursOfOperation
         | 
| 211 239 | 
             
                  def self.build(context)
         | 
| 212 240 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -249,6 +277,20 @@ module Aws::Connect | |
| 249 277 | 
             
                  end
         | 
| 250 278 | 
             
                end
         | 
| 251 279 |  | 
| 280 | 
            +
                class CreateParticipant
         | 
| 281 | 
            +
                  def self.build(context)
         | 
| 282 | 
            +
                    unless context.config.regional_endpoint
         | 
| 283 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 284 | 
            +
                    end
         | 
| 285 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 286 | 
            +
                      region: context.config.region,
         | 
| 287 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 288 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 289 | 
            +
                      endpoint: endpoint,
         | 
| 290 | 
            +
                    )
         | 
| 291 | 
            +
                  end
         | 
| 292 | 
            +
                end
         | 
| 293 | 
            +
             | 
| 252 294 | 
             
                class CreateQueue
         | 
| 253 295 | 
             
                  def self.build(context)
         | 
| 254 296 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -403,6 +445,34 @@ module Aws::Connect | |
| 403 445 | 
             
                  end
         | 
| 404 446 | 
             
                end
         | 
| 405 447 |  | 
| 448 | 
            +
                class DeactivateEvaluationForm
         | 
| 449 | 
            +
                  def self.build(context)
         | 
| 450 | 
            +
                    unless context.config.regional_endpoint
         | 
| 451 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 452 | 
            +
                    end
         | 
| 453 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 454 | 
            +
                      region: context.config.region,
         | 
| 455 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 456 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 457 | 
            +
                      endpoint: endpoint,
         | 
| 458 | 
            +
                    )
         | 
| 459 | 
            +
                  end
         | 
| 460 | 
            +
                end
         | 
| 461 | 
            +
             | 
| 462 | 
            +
                class DeleteContactEvaluation
         | 
| 463 | 
            +
                  def self.build(context)
         | 
| 464 | 
            +
                    unless context.config.regional_endpoint
         | 
| 465 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 466 | 
            +
                    end
         | 
| 467 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 468 | 
            +
                      region: context.config.region,
         | 
| 469 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 470 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 471 | 
            +
                      endpoint: endpoint,
         | 
| 472 | 
            +
                    )
         | 
| 473 | 
            +
                  end
         | 
| 474 | 
            +
                end
         | 
| 475 | 
            +
             | 
| 406 476 | 
             
                class DeleteContactFlow
         | 
| 407 477 | 
             
                  def self.build(context)
         | 
| 408 478 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -431,6 +501,20 @@ module Aws::Connect | |
| 431 501 | 
             
                  end
         | 
| 432 502 | 
             
                end
         | 
| 433 503 |  | 
| 504 | 
            +
                class DeleteEvaluationForm
         | 
| 505 | 
            +
                  def self.build(context)
         | 
| 506 | 
            +
                    unless context.config.regional_endpoint
         | 
| 507 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 508 | 
            +
                    end
         | 
| 509 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 510 | 
            +
                      region: context.config.region,
         | 
| 511 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 512 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 513 | 
            +
                      endpoint: endpoint,
         | 
| 514 | 
            +
                    )
         | 
| 515 | 
            +
                  end
         | 
| 516 | 
            +
                end
         | 
| 517 | 
            +
             | 
| 434 518 | 
             
                class DeleteHoursOfOperation
         | 
| 435 519 | 
             
                  def self.build(context)
         | 
| 436 520 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -627,6 +711,20 @@ module Aws::Connect | |
| 627 711 | 
             
                  end
         | 
| 628 712 | 
             
                end
         | 
| 629 713 |  | 
| 714 | 
            +
                class DescribeContactEvaluation
         | 
| 715 | 
            +
                  def self.build(context)
         | 
| 716 | 
            +
                    unless context.config.regional_endpoint
         | 
| 717 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 718 | 
            +
                    end
         | 
| 719 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 720 | 
            +
                      region: context.config.region,
         | 
| 721 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 722 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 723 | 
            +
                      endpoint: endpoint,
         | 
| 724 | 
            +
                    )
         | 
| 725 | 
            +
                  end
         | 
| 726 | 
            +
                end
         | 
| 727 | 
            +
             | 
| 630 728 | 
             
                class DescribeContactFlow
         | 
| 631 729 | 
             
                  def self.build(context)
         | 
| 632 730 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -655,6 +753,20 @@ module Aws::Connect | |
| 655 753 | 
             
                  end
         | 
| 656 754 | 
             
                end
         | 
| 657 755 |  | 
| 756 | 
            +
                class DescribeEvaluationForm
         | 
| 757 | 
            +
                  def self.build(context)
         | 
| 758 | 
            +
                    unless context.config.regional_endpoint
         | 
| 759 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 760 | 
            +
                    end
         | 
| 761 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 762 | 
            +
                      region: context.config.region,
         | 
| 763 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 764 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 765 | 
            +
                      endpoint: endpoint,
         | 
| 766 | 
            +
                    )
         | 
| 767 | 
            +
                  end
         | 
| 768 | 
            +
                end
         | 
| 769 | 
            +
             | 
| 658 770 | 
             
                class DescribeHoursOfOperation
         | 
| 659 771 | 
             
                  def self.build(context)
         | 
| 660 772 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -1159,6 +1271,20 @@ module Aws::Connect | |
| 1159 1271 | 
             
                  end
         | 
| 1160 1272 | 
             
                end
         | 
| 1161 1273 |  | 
| 1274 | 
            +
                class ListContactEvaluations
         | 
| 1275 | 
            +
                  def self.build(context)
         | 
| 1276 | 
            +
                    unless context.config.regional_endpoint
         | 
| 1277 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 1278 | 
            +
                    end
         | 
| 1279 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 1280 | 
            +
                      region: context.config.region,
         | 
| 1281 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 1282 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 1283 | 
            +
                      endpoint: endpoint,
         | 
| 1284 | 
            +
                    )
         | 
| 1285 | 
            +
                  end
         | 
| 1286 | 
            +
                end
         | 
| 1287 | 
            +
             | 
| 1162 1288 | 
             
                class ListContactFlowModules
         | 
| 1163 1289 | 
             
                  def self.build(context)
         | 
| 1164 1290 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -1215,6 +1341,34 @@ module Aws::Connect | |
| 1215 1341 | 
             
                  end
         | 
| 1216 1342 | 
             
                end
         | 
| 1217 1343 |  | 
| 1344 | 
            +
                class ListEvaluationFormVersions
         | 
| 1345 | 
            +
                  def self.build(context)
         | 
| 1346 | 
            +
                    unless context.config.regional_endpoint
         | 
| 1347 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 1348 | 
            +
                    end
         | 
| 1349 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 1350 | 
            +
                      region: context.config.region,
         | 
| 1351 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 1352 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 1353 | 
            +
                      endpoint: endpoint,
         | 
| 1354 | 
            +
                    )
         | 
| 1355 | 
            +
                  end
         | 
| 1356 | 
            +
                end
         | 
| 1357 | 
            +
             | 
| 1358 | 
            +
                class ListEvaluationForms
         | 
| 1359 | 
            +
                  def self.build(context)
         | 
| 1360 | 
            +
                    unless context.config.regional_endpoint
         | 
| 1361 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 1362 | 
            +
                    end
         | 
| 1363 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 1364 | 
            +
                      region: context.config.region,
         | 
| 1365 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 1366 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 1367 | 
            +
                      endpoint: endpoint,
         | 
| 1368 | 
            +
                    )
         | 
| 1369 | 
            +
                  end
         | 
| 1370 | 
            +
                end
         | 
| 1371 | 
            +
             | 
| 1218 1372 | 
             
                class ListHoursOfOperations
         | 
| 1219 1373 | 
             
                  def self.build(context)
         | 
| 1220 1374 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -1733,6 +1887,20 @@ module Aws::Connect | |
| 1733 1887 | 
             
                  end
         | 
| 1734 1888 | 
             
                end
         | 
| 1735 1889 |  | 
| 1890 | 
            +
                class StartContactEvaluation
         | 
| 1891 | 
            +
                  def self.build(context)
         | 
| 1892 | 
            +
                    unless context.config.regional_endpoint
         | 
| 1893 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 1894 | 
            +
                    end
         | 
| 1895 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 1896 | 
            +
                      region: context.config.region,
         | 
| 1897 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 1898 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 1899 | 
            +
                      endpoint: endpoint,
         | 
| 1900 | 
            +
                    )
         | 
| 1901 | 
            +
                  end
         | 
| 1902 | 
            +
                end
         | 
| 1903 | 
            +
             | 
| 1736 1904 | 
             
                class StartContactRecording
         | 
| 1737 1905 | 
             
                  def self.build(context)
         | 
| 1738 1906 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -1831,6 +1999,20 @@ module Aws::Connect | |
| 1831 1999 | 
             
                  end
         | 
| 1832 2000 | 
             
                end
         | 
| 1833 2001 |  | 
| 2002 | 
            +
                class SubmitContactEvaluation
         | 
| 2003 | 
            +
                  def self.build(context)
         | 
| 2004 | 
            +
                    unless context.config.regional_endpoint
         | 
| 2005 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 2006 | 
            +
                    end
         | 
| 2007 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 2008 | 
            +
                      region: context.config.region,
         | 
| 2009 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 2010 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 2011 | 
            +
                      endpoint: endpoint,
         | 
| 2012 | 
            +
                    )
         | 
| 2013 | 
            +
                  end
         | 
| 2014 | 
            +
                end
         | 
| 2015 | 
            +
             | 
| 1834 2016 | 
             
                class SuspendContactRecording
         | 
| 1835 2017 | 
             
                  def self.build(context)
         | 
| 1836 2018 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -1929,6 +2111,20 @@ module Aws::Connect | |
| 1929 2111 | 
             
                  end
         | 
| 1930 2112 | 
             
                end
         | 
| 1931 2113 |  | 
| 2114 | 
            +
                class UpdateContactEvaluation
         | 
| 2115 | 
            +
                  def self.build(context)
         | 
| 2116 | 
            +
                    unless context.config.regional_endpoint
         | 
| 2117 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 2118 | 
            +
                    end
         | 
| 2119 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 2120 | 
            +
                      region: context.config.region,
         | 
| 2121 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 2122 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 2123 | 
            +
                      endpoint: endpoint,
         | 
| 2124 | 
            +
                    )
         | 
| 2125 | 
            +
                  end
         | 
| 2126 | 
            +
                end
         | 
| 2127 | 
            +
             | 
| 1932 2128 | 
             
                class UpdateContactFlowContent
         | 
| 1933 2129 | 
             
                  def self.build(context)
         | 
| 1934 2130 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -2013,6 +2209,20 @@ module Aws::Connect | |
| 2013 2209 | 
             
                  end
         | 
| 2014 2210 | 
             
                end
         | 
| 2015 2211 |  | 
| 2212 | 
            +
                class UpdateEvaluationForm
         | 
| 2213 | 
            +
                  def self.build(context)
         | 
| 2214 | 
            +
                    unless context.config.regional_endpoint
         | 
| 2215 | 
            +
                      endpoint = context.config.endpoint.to_s
         | 
| 2216 | 
            +
                    end
         | 
| 2217 | 
            +
                    Aws::Connect::EndpointParameters.new(
         | 
| 2218 | 
            +
                      region: context.config.region,
         | 
| 2219 | 
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         | 
| 2220 | 
            +
                      use_fips: context.config.use_fips_endpoint,
         | 
| 2221 | 
            +
                      endpoint: endpoint,
         | 
| 2222 | 
            +
                    )
         | 
| 2223 | 
            +
                  end
         | 
| 2224 | 
            +
                end
         | 
| 2225 | 
            +
             | 
| 2016 2226 | 
             
                class UpdateHoursOfOperation
         | 
| 2017 2227 | 
             
                  def self.build(context)
         | 
| 2018 2228 | 
             
                    unless context.config.regional_endpoint
         | 
| @@ -56,6 +56,8 @@ module Aws::Connect | |
| 56 56 |  | 
| 57 57 | 
             
                    def parameters_for_operation(context)
         | 
| 58 58 | 
             
                      case context.operation_name
         | 
| 59 | 
            +
                      when :activate_evaluation_form
         | 
| 60 | 
            +
                        Aws::Connect::Endpoints::ActivateEvaluationForm.build(context)
         | 
| 59 61 | 
             
                      when :associate_approved_origin
         | 
| 60 62 | 
             
                        Aws::Connect::Endpoints::AssociateApprovedOrigin.build(context)
         | 
| 61 63 | 
             
                      when :associate_bot
         | 
| @@ -84,12 +86,16 @@ module Aws::Connect | |
| 84 86 | 
             
                        Aws::Connect::Endpoints::CreateContactFlow.build(context)
         | 
| 85 87 | 
             
                      when :create_contact_flow_module
         | 
| 86 88 | 
             
                        Aws::Connect::Endpoints::CreateContactFlowModule.build(context)
         | 
| 89 | 
            +
                      when :create_evaluation_form
         | 
| 90 | 
            +
                        Aws::Connect::Endpoints::CreateEvaluationForm.build(context)
         | 
| 87 91 | 
             
                      when :create_hours_of_operation
         | 
| 88 92 | 
             
                        Aws::Connect::Endpoints::CreateHoursOfOperation.build(context)
         | 
| 89 93 | 
             
                      when :create_instance
         | 
| 90 94 | 
             
                        Aws::Connect::Endpoints::CreateInstance.build(context)
         | 
| 91 95 | 
             
                      when :create_integration_association
         | 
| 92 96 | 
             
                        Aws::Connect::Endpoints::CreateIntegrationAssociation.build(context)
         | 
| 97 | 
            +
                      when :create_participant
         | 
| 98 | 
            +
                        Aws::Connect::Endpoints::CreateParticipant.build(context)
         | 
| 93 99 | 
             
                      when :create_queue
         | 
| 94 100 | 
             
                        Aws::Connect::Endpoints::CreateQueue.build(context)
         | 
| 95 101 | 
             
                      when :create_quick_connect
         | 
| @@ -112,10 +118,16 @@ module Aws::Connect | |
| 112 118 | 
             
                        Aws::Connect::Endpoints::CreateUserHierarchyGroup.build(context)
         | 
| 113 119 | 
             
                      when :create_vocabulary
         | 
| 114 120 | 
             
                        Aws::Connect::Endpoints::CreateVocabulary.build(context)
         | 
| 121 | 
            +
                      when :deactivate_evaluation_form
         | 
| 122 | 
            +
                        Aws::Connect::Endpoints::DeactivateEvaluationForm.build(context)
         | 
| 123 | 
            +
                      when :delete_contact_evaluation
         | 
| 124 | 
            +
                        Aws::Connect::Endpoints::DeleteContactEvaluation.build(context)
         | 
| 115 125 | 
             
                      when :delete_contact_flow
         | 
| 116 126 | 
             
                        Aws::Connect::Endpoints::DeleteContactFlow.build(context)
         | 
| 117 127 | 
             
                      when :delete_contact_flow_module
         | 
| 118 128 | 
             
                        Aws::Connect::Endpoints::DeleteContactFlowModule.build(context)
         | 
| 129 | 
            +
                      when :delete_evaluation_form
         | 
| 130 | 
            +
                        Aws::Connect::Endpoints::DeleteEvaluationForm.build(context)
         | 
| 119 131 | 
             
                      when :delete_hours_of_operation
         | 
| 120 132 | 
             
                        Aws::Connect::Endpoints::DeleteHoursOfOperation.build(context)
         | 
| 121 133 | 
             
                      when :delete_instance
         | 
| @@ -144,10 +156,14 @@ module Aws::Connect | |
| 144 156 | 
             
                        Aws::Connect::Endpoints::DescribeAgentStatus.build(context)
         | 
| 145 157 | 
             
                      when :describe_contact
         | 
| 146 158 | 
             
                        Aws::Connect::Endpoints::DescribeContact.build(context)
         | 
| 159 | 
            +
                      when :describe_contact_evaluation
         | 
| 160 | 
            +
                        Aws::Connect::Endpoints::DescribeContactEvaluation.build(context)
         | 
| 147 161 | 
             
                      when :describe_contact_flow
         | 
| 148 162 | 
             
                        Aws::Connect::Endpoints::DescribeContactFlow.build(context)
         | 
| 149 163 | 
             
                      when :describe_contact_flow_module
         | 
| 150 164 | 
             
                        Aws::Connect::Endpoints::DescribeContactFlowModule.build(context)
         | 
| 165 | 
            +
                      when :describe_evaluation_form
         | 
| 166 | 
            +
                        Aws::Connect::Endpoints::DescribeEvaluationForm.build(context)
         | 
| 151 167 | 
             
                      when :describe_hours_of_operation
         | 
| 152 168 | 
             
                        Aws::Connect::Endpoints::DescribeHoursOfOperation.build(context)
         | 
| 153 169 | 
             
                      when :describe_instance
         | 
| @@ -220,6 +236,8 @@ module Aws::Connect | |
| 220 236 | 
             
                        Aws::Connect::Endpoints::ListApprovedOrigins.build(context)
         | 
| 221 237 | 
             
                      when :list_bots
         | 
| 222 238 | 
             
                        Aws::Connect::Endpoints::ListBots.build(context)
         | 
| 239 | 
            +
                      when :list_contact_evaluations
         | 
| 240 | 
            +
                        Aws::Connect::Endpoints::ListContactEvaluations.build(context)
         | 
| 223 241 | 
             
                      when :list_contact_flow_modules
         | 
| 224 242 | 
             
                        Aws::Connect::Endpoints::ListContactFlowModules.build(context)
         | 
| 225 243 | 
             
                      when :list_contact_flows
         | 
| @@ -228,6 +246,10 @@ module Aws::Connect | |
| 228 246 | 
             
                        Aws::Connect::Endpoints::ListContactReferences.build(context)
         | 
| 229 247 | 
             
                      when :list_default_vocabularies
         | 
| 230 248 | 
             
                        Aws::Connect::Endpoints::ListDefaultVocabularies.build(context)
         | 
| 249 | 
            +
                      when :list_evaluation_form_versions
         | 
| 250 | 
            +
                        Aws::Connect::Endpoints::ListEvaluationFormVersions.build(context)
         | 
| 251 | 
            +
                      when :list_evaluation_forms
         | 
| 252 | 
            +
                        Aws::Connect::Endpoints::ListEvaluationForms.build(context)
         | 
| 231 253 | 
             
                      when :list_hours_of_operations
         | 
| 232 254 | 
             
                        Aws::Connect::Endpoints::ListHoursOfOperations.build(context)
         | 
| 233 255 | 
             
                      when :list_instance_attributes
         | 
| @@ -302,6 +324,8 @@ module Aws::Connect | |
| 302 324 | 
             
                        Aws::Connect::Endpoints::SearchVocabularies.build(context)
         | 
| 303 325 | 
             
                      when :start_chat_contact
         | 
| 304 326 | 
             
                        Aws::Connect::Endpoints::StartChatContact.build(context)
         | 
| 327 | 
            +
                      when :start_contact_evaluation
         | 
| 328 | 
            +
                        Aws::Connect::Endpoints::StartContactEvaluation.build(context)
         | 
| 305 329 | 
             
                      when :start_contact_recording
         | 
| 306 330 | 
             
                        Aws::Connect::Endpoints::StartContactRecording.build(context)
         | 
| 307 331 | 
             
                      when :start_contact_streaming
         | 
| @@ -316,6 +340,8 @@ module Aws::Connect | |
| 316 340 | 
             
                        Aws::Connect::Endpoints::StopContactRecording.build(context)
         | 
| 317 341 | 
             
                      when :stop_contact_streaming
         | 
| 318 342 | 
             
                        Aws::Connect::Endpoints::StopContactStreaming.build(context)
         | 
| 343 | 
            +
                      when :submit_contact_evaluation
         | 
| 344 | 
            +
                        Aws::Connect::Endpoints::SubmitContactEvaluation.build(context)
         | 
| 319 345 | 
             
                      when :suspend_contact_recording
         | 
| 320 346 | 
             
                        Aws::Connect::Endpoints::SuspendContactRecording.build(context)
         | 
| 321 347 | 
             
                      when :tag_resource
         | 
| @@ -330,6 +356,8 @@ module Aws::Connect | |
| 330 356 | 
             
                        Aws::Connect::Endpoints::UpdateContact.build(context)
         | 
| 331 357 | 
             
                      when :update_contact_attributes
         | 
| 332 358 | 
             
                        Aws::Connect::Endpoints::UpdateContactAttributes.build(context)
         | 
| 359 | 
            +
                      when :update_contact_evaluation
         | 
| 360 | 
            +
                        Aws::Connect::Endpoints::UpdateContactEvaluation.build(context)
         | 
| 333 361 | 
             
                      when :update_contact_flow_content
         | 
| 334 362 | 
             
                        Aws::Connect::Endpoints::UpdateContactFlowContent.build(context)
         | 
| 335 363 | 
             
                      when :update_contact_flow_metadata
         | 
| @@ -342,6 +370,8 @@ module Aws::Connect | |
| 342 370 | 
             
                        Aws::Connect::Endpoints::UpdateContactFlowName.build(context)
         | 
| 343 371 | 
             
                      when :update_contact_schedule
         | 
| 344 372 | 
             
                        Aws::Connect::Endpoints::UpdateContactSchedule.build(context)
         | 
| 373 | 
            +
                      when :update_evaluation_form
         | 
| 374 | 
            +
                        Aws::Connect::Endpoints::UpdateEvaluationForm.build(context)
         | 
| 345 375 | 
             
                      when :update_hours_of_operation
         | 
| 346 376 | 
             
                        Aws::Connect::Endpoints::UpdateHoursOfOperation.build(context)
         | 
| 347 377 | 
             
                      when :update_instance_attribute
         |