aws-sdk-core 2.11.391 → 3.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -555
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +11 -12
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -17
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -22
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1055
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -2171
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5384
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -985
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1348
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -3499
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -39
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -1048
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1290
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5371
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1926
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1337
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2074
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -25611
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1615
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2902
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1572
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1383
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -701
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3495
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6297
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5106
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1144
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1950
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -5015
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8350
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1526
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2538
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1712
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -10826
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -1021
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -540
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6880
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -140
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4995
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -100
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2160
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6587
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5281
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/savingsplans/2019-06-28/api-2.json +0 -749
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -955
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8916
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -516
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -940
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1764
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5463
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -303
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -777
@@ -1,40 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListAliases": {
|
4
|
-
"input_token": "Marker",
|
5
|
-
"limit_key": "MaxItems",
|
6
|
-
"output_token": "NextMarker",
|
7
|
-
"result_key": "Aliases"
|
8
|
-
},
|
9
|
-
"ListEventSourceMappings": {
|
10
|
-
"input_token": "Marker",
|
11
|
-
"limit_key": "MaxItems",
|
12
|
-
"output_token": "NextMarker",
|
13
|
-
"result_key": "EventSourceMappings"
|
14
|
-
},
|
15
|
-
"ListFunctions": {
|
16
|
-
"input_token": "Marker",
|
17
|
-
"limit_key": "MaxItems",
|
18
|
-
"output_token": "NextMarker",
|
19
|
-
"result_key": "Functions"
|
20
|
-
},
|
21
|
-
"ListLayerVersions": {
|
22
|
-
"input_token": "Marker",
|
23
|
-
"limit_key": "MaxItems",
|
24
|
-
"output_token": "NextMarker",
|
25
|
-
"result_key": "LayerVersions"
|
26
|
-
},
|
27
|
-
"ListLayers": {
|
28
|
-
"input_token": "Marker",
|
29
|
-
"limit_key": "MaxItems",
|
30
|
-
"output_token": "NextMarker",
|
31
|
-
"result_key": "Layers"
|
32
|
-
},
|
33
|
-
"ListVersionsByFunction": {
|
34
|
-
"input_token": "Marker",
|
35
|
-
"limit_key": "MaxItems",
|
36
|
-
"output_token": "NextMarker",
|
37
|
-
"result_key": "Versions"
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "ListFunctions",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "Invoke",
|
12
|
-
"input": {
|
13
|
-
"FunctionName": "bogus-function"
|
14
|
-
},
|
15
|
-
"errorExpectedFromService": true
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"FunctionExists": {
|
5
|
-
"delay": 1,
|
6
|
-
"operation": "GetFunction",
|
7
|
-
"maxAttempts": 20,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"state": "success",
|
11
|
-
"matcher": "status",
|
12
|
-
"expected": 200
|
13
|
-
},
|
14
|
-
{
|
15
|
-
"state": "retry",
|
16
|
-
"matcher": "error",
|
17
|
-
"expected": "ResourceNotFoundException"
|
18
|
-
}
|
19
|
-
]
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
@@ -1,2261 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2017-04-19",
|
5
|
-
"endpointPrefix":"models.lex",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceFullName":"Amazon Lex Model Building Service",
|
9
|
-
"serviceId":"Lex Model Building Service",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"signingName":"lex",
|
12
|
-
"uid":"lex-models-2017-04-19"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"CreateBotVersion":{
|
16
|
-
"name":"CreateBotVersion",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/bots/{name}/versions",
|
20
|
-
"responseCode":201
|
21
|
-
},
|
22
|
-
"input":{"shape":"CreateBotVersionRequest"},
|
23
|
-
"output":{"shape":"CreateBotVersionResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"NotFoundException"},
|
26
|
-
{"shape":"ConflictException"},
|
27
|
-
{"shape":"LimitExceededException"},
|
28
|
-
{"shape":"InternalFailureException"},
|
29
|
-
{"shape":"BadRequestException"},
|
30
|
-
{"shape":"PreconditionFailedException"}
|
31
|
-
]
|
32
|
-
},
|
33
|
-
"CreateIntentVersion":{
|
34
|
-
"name":"CreateIntentVersion",
|
35
|
-
"http":{
|
36
|
-
"method":"POST",
|
37
|
-
"requestUri":"/intents/{name}/versions",
|
38
|
-
"responseCode":201
|
39
|
-
},
|
40
|
-
"input":{"shape":"CreateIntentVersionRequest"},
|
41
|
-
"output":{"shape":"CreateIntentVersionResponse"},
|
42
|
-
"errors":[
|
43
|
-
{"shape":"NotFoundException"},
|
44
|
-
{"shape":"ConflictException"},
|
45
|
-
{"shape":"LimitExceededException"},
|
46
|
-
{"shape":"InternalFailureException"},
|
47
|
-
{"shape":"BadRequestException"},
|
48
|
-
{"shape":"PreconditionFailedException"}
|
49
|
-
]
|
50
|
-
},
|
51
|
-
"CreateSlotTypeVersion":{
|
52
|
-
"name":"CreateSlotTypeVersion",
|
53
|
-
"http":{
|
54
|
-
"method":"POST",
|
55
|
-
"requestUri":"/slottypes/{name}/versions",
|
56
|
-
"responseCode":201
|
57
|
-
},
|
58
|
-
"input":{"shape":"CreateSlotTypeVersionRequest"},
|
59
|
-
"output":{"shape":"CreateSlotTypeVersionResponse"},
|
60
|
-
"errors":[
|
61
|
-
{"shape":"NotFoundException"},
|
62
|
-
{"shape":"ConflictException"},
|
63
|
-
{"shape":"LimitExceededException"},
|
64
|
-
{"shape":"InternalFailureException"},
|
65
|
-
{"shape":"BadRequestException"},
|
66
|
-
{"shape":"PreconditionFailedException"}
|
67
|
-
]
|
68
|
-
},
|
69
|
-
"DeleteBot":{
|
70
|
-
"name":"DeleteBot",
|
71
|
-
"http":{
|
72
|
-
"method":"DELETE",
|
73
|
-
"requestUri":"/bots/{name}",
|
74
|
-
"responseCode":204
|
75
|
-
},
|
76
|
-
"input":{"shape":"DeleteBotRequest"},
|
77
|
-
"errors":[
|
78
|
-
{"shape":"NotFoundException"},
|
79
|
-
{"shape":"ConflictException"},
|
80
|
-
{"shape":"LimitExceededException"},
|
81
|
-
{"shape":"InternalFailureException"},
|
82
|
-
{"shape":"BadRequestException"},
|
83
|
-
{"shape":"ResourceInUseException"}
|
84
|
-
]
|
85
|
-
},
|
86
|
-
"DeleteBotAlias":{
|
87
|
-
"name":"DeleteBotAlias",
|
88
|
-
"http":{
|
89
|
-
"method":"DELETE",
|
90
|
-
"requestUri":"/bots/{botName}/aliases/{name}",
|
91
|
-
"responseCode":204
|
92
|
-
},
|
93
|
-
"input":{"shape":"DeleteBotAliasRequest"},
|
94
|
-
"errors":[
|
95
|
-
{"shape":"NotFoundException"},
|
96
|
-
{"shape":"ConflictException"},
|
97
|
-
{"shape":"LimitExceededException"},
|
98
|
-
{"shape":"InternalFailureException"},
|
99
|
-
{"shape":"BadRequestException"},
|
100
|
-
{"shape":"ResourceInUseException"}
|
101
|
-
]
|
102
|
-
},
|
103
|
-
"DeleteBotChannelAssociation":{
|
104
|
-
"name":"DeleteBotChannelAssociation",
|
105
|
-
"http":{
|
106
|
-
"method":"DELETE",
|
107
|
-
"requestUri":"/bots/{botName}/aliases/{aliasName}/channels/{name}",
|
108
|
-
"responseCode":204
|
109
|
-
},
|
110
|
-
"input":{"shape":"DeleteBotChannelAssociationRequest"},
|
111
|
-
"errors":[
|
112
|
-
{"shape":"NotFoundException"},
|
113
|
-
{"shape":"ConflictException"},
|
114
|
-
{"shape":"LimitExceededException"},
|
115
|
-
{"shape":"InternalFailureException"},
|
116
|
-
{"shape":"BadRequestException"}
|
117
|
-
]
|
118
|
-
},
|
119
|
-
"DeleteBotVersion":{
|
120
|
-
"name":"DeleteBotVersion",
|
121
|
-
"http":{
|
122
|
-
"method":"DELETE",
|
123
|
-
"requestUri":"/bots/{name}/versions/{version}",
|
124
|
-
"responseCode":204
|
125
|
-
},
|
126
|
-
"input":{"shape":"DeleteBotVersionRequest"},
|
127
|
-
"errors":[
|
128
|
-
{"shape":"NotFoundException"},
|
129
|
-
{"shape":"ConflictException"},
|
130
|
-
{"shape":"LimitExceededException"},
|
131
|
-
{"shape":"InternalFailureException"},
|
132
|
-
{"shape":"BadRequestException"},
|
133
|
-
{"shape":"ResourceInUseException"}
|
134
|
-
]
|
135
|
-
},
|
136
|
-
"DeleteIntent":{
|
137
|
-
"name":"DeleteIntent",
|
138
|
-
"http":{
|
139
|
-
"method":"DELETE",
|
140
|
-
"requestUri":"/intents/{name}",
|
141
|
-
"responseCode":204
|
142
|
-
},
|
143
|
-
"input":{"shape":"DeleteIntentRequest"},
|
144
|
-
"errors":[
|
145
|
-
{"shape":"NotFoundException"},
|
146
|
-
{"shape":"ConflictException"},
|
147
|
-
{"shape":"LimitExceededException"},
|
148
|
-
{"shape":"InternalFailureException"},
|
149
|
-
{"shape":"BadRequestException"},
|
150
|
-
{"shape":"ResourceInUseException"}
|
151
|
-
]
|
152
|
-
},
|
153
|
-
"DeleteIntentVersion":{
|
154
|
-
"name":"DeleteIntentVersion",
|
155
|
-
"http":{
|
156
|
-
"method":"DELETE",
|
157
|
-
"requestUri":"/intents/{name}/versions/{version}",
|
158
|
-
"responseCode":204
|
159
|
-
},
|
160
|
-
"input":{"shape":"DeleteIntentVersionRequest"},
|
161
|
-
"errors":[
|
162
|
-
{"shape":"NotFoundException"},
|
163
|
-
{"shape":"ConflictException"},
|
164
|
-
{"shape":"LimitExceededException"},
|
165
|
-
{"shape":"InternalFailureException"},
|
166
|
-
{"shape":"BadRequestException"},
|
167
|
-
{"shape":"ResourceInUseException"}
|
168
|
-
]
|
169
|
-
},
|
170
|
-
"DeleteSlotType":{
|
171
|
-
"name":"DeleteSlotType",
|
172
|
-
"http":{
|
173
|
-
"method":"DELETE",
|
174
|
-
"requestUri":"/slottypes/{name}",
|
175
|
-
"responseCode":204
|
176
|
-
},
|
177
|
-
"input":{"shape":"DeleteSlotTypeRequest"},
|
178
|
-
"errors":[
|
179
|
-
{"shape":"NotFoundException"},
|
180
|
-
{"shape":"ConflictException"},
|
181
|
-
{"shape":"LimitExceededException"},
|
182
|
-
{"shape":"InternalFailureException"},
|
183
|
-
{"shape":"BadRequestException"},
|
184
|
-
{"shape":"ResourceInUseException"}
|
185
|
-
]
|
186
|
-
},
|
187
|
-
"DeleteSlotTypeVersion":{
|
188
|
-
"name":"DeleteSlotTypeVersion",
|
189
|
-
"http":{
|
190
|
-
"method":"DELETE",
|
191
|
-
"requestUri":"/slottypes/{name}/version/{version}",
|
192
|
-
"responseCode":204
|
193
|
-
},
|
194
|
-
"input":{"shape":"DeleteSlotTypeVersionRequest"},
|
195
|
-
"errors":[
|
196
|
-
{"shape":"NotFoundException"},
|
197
|
-
{"shape":"ConflictException"},
|
198
|
-
{"shape":"LimitExceededException"},
|
199
|
-
{"shape":"InternalFailureException"},
|
200
|
-
{"shape":"BadRequestException"},
|
201
|
-
{"shape":"ResourceInUseException"}
|
202
|
-
]
|
203
|
-
},
|
204
|
-
"DeleteUtterances":{
|
205
|
-
"name":"DeleteUtterances",
|
206
|
-
"http":{
|
207
|
-
"method":"DELETE",
|
208
|
-
"requestUri":"/bots/{botName}/utterances/{userId}",
|
209
|
-
"responseCode":204
|
210
|
-
},
|
211
|
-
"input":{"shape":"DeleteUtterancesRequest"},
|
212
|
-
"errors":[
|
213
|
-
{"shape":"NotFoundException"},
|
214
|
-
{"shape":"LimitExceededException"},
|
215
|
-
{"shape":"InternalFailureException"},
|
216
|
-
{"shape":"BadRequestException"}
|
217
|
-
]
|
218
|
-
},
|
219
|
-
"GetBot":{
|
220
|
-
"name":"GetBot",
|
221
|
-
"http":{
|
222
|
-
"method":"GET",
|
223
|
-
"requestUri":"/bots/{name}/versions/{versionoralias}",
|
224
|
-
"responseCode":200
|
225
|
-
},
|
226
|
-
"input":{"shape":"GetBotRequest"},
|
227
|
-
"output":{"shape":"GetBotResponse"},
|
228
|
-
"errors":[
|
229
|
-
{"shape":"NotFoundException"},
|
230
|
-
{"shape":"LimitExceededException"},
|
231
|
-
{"shape":"InternalFailureException"},
|
232
|
-
{"shape":"BadRequestException"}
|
233
|
-
]
|
234
|
-
},
|
235
|
-
"GetBotAlias":{
|
236
|
-
"name":"GetBotAlias",
|
237
|
-
"http":{
|
238
|
-
"method":"GET",
|
239
|
-
"requestUri":"/bots/{botName}/aliases/{name}",
|
240
|
-
"responseCode":200
|
241
|
-
},
|
242
|
-
"input":{"shape":"GetBotAliasRequest"},
|
243
|
-
"output":{"shape":"GetBotAliasResponse"},
|
244
|
-
"errors":[
|
245
|
-
{"shape":"NotFoundException"},
|
246
|
-
{"shape":"LimitExceededException"},
|
247
|
-
{"shape":"InternalFailureException"},
|
248
|
-
{"shape":"BadRequestException"}
|
249
|
-
]
|
250
|
-
},
|
251
|
-
"GetBotAliases":{
|
252
|
-
"name":"GetBotAliases",
|
253
|
-
"http":{
|
254
|
-
"method":"GET",
|
255
|
-
"requestUri":"/bots/{botName}/aliases/",
|
256
|
-
"responseCode":200
|
257
|
-
},
|
258
|
-
"input":{"shape":"GetBotAliasesRequest"},
|
259
|
-
"output":{"shape":"GetBotAliasesResponse"},
|
260
|
-
"errors":[
|
261
|
-
{"shape":"LimitExceededException"},
|
262
|
-
{"shape":"InternalFailureException"},
|
263
|
-
{"shape":"BadRequestException"}
|
264
|
-
]
|
265
|
-
},
|
266
|
-
"GetBotChannelAssociation":{
|
267
|
-
"name":"GetBotChannelAssociation",
|
268
|
-
"http":{
|
269
|
-
"method":"GET",
|
270
|
-
"requestUri":"/bots/{botName}/aliases/{aliasName}/channels/{name}",
|
271
|
-
"responseCode":200
|
272
|
-
},
|
273
|
-
"input":{"shape":"GetBotChannelAssociationRequest"},
|
274
|
-
"output":{"shape":"GetBotChannelAssociationResponse"},
|
275
|
-
"errors":[
|
276
|
-
{"shape":"NotFoundException"},
|
277
|
-
{"shape":"LimitExceededException"},
|
278
|
-
{"shape":"InternalFailureException"},
|
279
|
-
{"shape":"BadRequestException"}
|
280
|
-
]
|
281
|
-
},
|
282
|
-
"GetBotChannelAssociations":{
|
283
|
-
"name":"GetBotChannelAssociations",
|
284
|
-
"http":{
|
285
|
-
"method":"GET",
|
286
|
-
"requestUri":"/bots/{botName}/aliases/{aliasName}/channels/",
|
287
|
-
"responseCode":200
|
288
|
-
},
|
289
|
-
"input":{"shape":"GetBotChannelAssociationsRequest"},
|
290
|
-
"output":{"shape":"GetBotChannelAssociationsResponse"},
|
291
|
-
"errors":[
|
292
|
-
{"shape":"LimitExceededException"},
|
293
|
-
{"shape":"InternalFailureException"},
|
294
|
-
{"shape":"BadRequestException"}
|
295
|
-
]
|
296
|
-
},
|
297
|
-
"GetBotVersions":{
|
298
|
-
"name":"GetBotVersions",
|
299
|
-
"http":{
|
300
|
-
"method":"GET",
|
301
|
-
"requestUri":"/bots/{name}/versions/",
|
302
|
-
"responseCode":200
|
303
|
-
},
|
304
|
-
"input":{"shape":"GetBotVersionsRequest"},
|
305
|
-
"output":{"shape":"GetBotVersionsResponse"},
|
306
|
-
"errors":[
|
307
|
-
{"shape":"NotFoundException"},
|
308
|
-
{"shape":"LimitExceededException"},
|
309
|
-
{"shape":"InternalFailureException"},
|
310
|
-
{"shape":"BadRequestException"}
|
311
|
-
]
|
312
|
-
},
|
313
|
-
"GetBots":{
|
314
|
-
"name":"GetBots",
|
315
|
-
"http":{
|
316
|
-
"method":"GET",
|
317
|
-
"requestUri":"/bots/",
|
318
|
-
"responseCode":200
|
319
|
-
},
|
320
|
-
"input":{"shape":"GetBotsRequest"},
|
321
|
-
"output":{"shape":"GetBotsResponse"},
|
322
|
-
"errors":[
|
323
|
-
{"shape":"NotFoundException"},
|
324
|
-
{"shape":"LimitExceededException"},
|
325
|
-
{"shape":"InternalFailureException"},
|
326
|
-
{"shape":"BadRequestException"}
|
327
|
-
]
|
328
|
-
},
|
329
|
-
"GetBuiltinIntent":{
|
330
|
-
"name":"GetBuiltinIntent",
|
331
|
-
"http":{
|
332
|
-
"method":"GET",
|
333
|
-
"requestUri":"/builtins/intents/{signature}",
|
334
|
-
"responseCode":200
|
335
|
-
},
|
336
|
-
"input":{"shape":"GetBuiltinIntentRequest"},
|
337
|
-
"output":{"shape":"GetBuiltinIntentResponse"},
|
338
|
-
"errors":[
|
339
|
-
{"shape":"NotFoundException"},
|
340
|
-
{"shape":"LimitExceededException"},
|
341
|
-
{"shape":"InternalFailureException"},
|
342
|
-
{"shape":"BadRequestException"}
|
343
|
-
]
|
344
|
-
},
|
345
|
-
"GetBuiltinIntents":{
|
346
|
-
"name":"GetBuiltinIntents",
|
347
|
-
"http":{
|
348
|
-
"method":"GET",
|
349
|
-
"requestUri":"/builtins/intents/",
|
350
|
-
"responseCode":200
|
351
|
-
},
|
352
|
-
"input":{"shape":"GetBuiltinIntentsRequest"},
|
353
|
-
"output":{"shape":"GetBuiltinIntentsResponse"},
|
354
|
-
"errors":[
|
355
|
-
{"shape":"LimitExceededException"},
|
356
|
-
{"shape":"InternalFailureException"},
|
357
|
-
{"shape":"BadRequestException"}
|
358
|
-
]
|
359
|
-
},
|
360
|
-
"GetBuiltinSlotTypes":{
|
361
|
-
"name":"GetBuiltinSlotTypes",
|
362
|
-
"http":{
|
363
|
-
"method":"GET",
|
364
|
-
"requestUri":"/builtins/slottypes/",
|
365
|
-
"responseCode":200
|
366
|
-
},
|
367
|
-
"input":{"shape":"GetBuiltinSlotTypesRequest"},
|
368
|
-
"output":{"shape":"GetBuiltinSlotTypesResponse"},
|
369
|
-
"errors":[
|
370
|
-
{"shape":"LimitExceededException"},
|
371
|
-
{"shape":"InternalFailureException"},
|
372
|
-
{"shape":"BadRequestException"}
|
373
|
-
]
|
374
|
-
},
|
375
|
-
"GetExport":{
|
376
|
-
"name":"GetExport",
|
377
|
-
"http":{
|
378
|
-
"method":"GET",
|
379
|
-
"requestUri":"/exports/",
|
380
|
-
"responseCode":200
|
381
|
-
},
|
382
|
-
"input":{"shape":"GetExportRequest"},
|
383
|
-
"output":{"shape":"GetExportResponse"},
|
384
|
-
"errors":[
|
385
|
-
{"shape":"NotFoundException"},
|
386
|
-
{"shape":"LimitExceededException"},
|
387
|
-
{"shape":"InternalFailureException"},
|
388
|
-
{"shape":"BadRequestException"}
|
389
|
-
]
|
390
|
-
},
|
391
|
-
"GetImport":{
|
392
|
-
"name":"GetImport",
|
393
|
-
"http":{
|
394
|
-
"method":"GET",
|
395
|
-
"requestUri":"/imports/{importId}",
|
396
|
-
"responseCode":200
|
397
|
-
},
|
398
|
-
"input":{"shape":"GetImportRequest"},
|
399
|
-
"output":{"shape":"GetImportResponse"},
|
400
|
-
"errors":[
|
401
|
-
{"shape":"NotFoundException"},
|
402
|
-
{"shape":"LimitExceededException"},
|
403
|
-
{"shape":"InternalFailureException"},
|
404
|
-
{"shape":"BadRequestException"}
|
405
|
-
]
|
406
|
-
},
|
407
|
-
"GetIntent":{
|
408
|
-
"name":"GetIntent",
|
409
|
-
"http":{
|
410
|
-
"method":"GET",
|
411
|
-
"requestUri":"/intents/{name}/versions/{version}",
|
412
|
-
"responseCode":200
|
413
|
-
},
|
414
|
-
"input":{"shape":"GetIntentRequest"},
|
415
|
-
"output":{"shape":"GetIntentResponse"},
|
416
|
-
"errors":[
|
417
|
-
{"shape":"NotFoundException"},
|
418
|
-
{"shape":"LimitExceededException"},
|
419
|
-
{"shape":"InternalFailureException"},
|
420
|
-
{"shape":"BadRequestException"}
|
421
|
-
]
|
422
|
-
},
|
423
|
-
"GetIntentVersions":{
|
424
|
-
"name":"GetIntentVersions",
|
425
|
-
"http":{
|
426
|
-
"method":"GET",
|
427
|
-
"requestUri":"/intents/{name}/versions/",
|
428
|
-
"responseCode":200
|
429
|
-
},
|
430
|
-
"input":{"shape":"GetIntentVersionsRequest"},
|
431
|
-
"output":{"shape":"GetIntentVersionsResponse"},
|
432
|
-
"errors":[
|
433
|
-
{"shape":"NotFoundException"},
|
434
|
-
{"shape":"LimitExceededException"},
|
435
|
-
{"shape":"InternalFailureException"},
|
436
|
-
{"shape":"BadRequestException"}
|
437
|
-
]
|
438
|
-
},
|
439
|
-
"GetIntents":{
|
440
|
-
"name":"GetIntents",
|
441
|
-
"http":{
|
442
|
-
"method":"GET",
|
443
|
-
"requestUri":"/intents/",
|
444
|
-
"responseCode":200
|
445
|
-
},
|
446
|
-
"input":{"shape":"GetIntentsRequest"},
|
447
|
-
"output":{"shape":"GetIntentsResponse"},
|
448
|
-
"errors":[
|
449
|
-
{"shape":"NotFoundException"},
|
450
|
-
{"shape":"LimitExceededException"},
|
451
|
-
{"shape":"InternalFailureException"},
|
452
|
-
{"shape":"BadRequestException"}
|
453
|
-
]
|
454
|
-
},
|
455
|
-
"GetSlotType":{
|
456
|
-
"name":"GetSlotType",
|
457
|
-
"http":{
|
458
|
-
"method":"GET",
|
459
|
-
"requestUri":"/slottypes/{name}/versions/{version}",
|
460
|
-
"responseCode":200
|
461
|
-
},
|
462
|
-
"input":{"shape":"GetSlotTypeRequest"},
|
463
|
-
"output":{"shape":"GetSlotTypeResponse"},
|
464
|
-
"errors":[
|
465
|
-
{"shape":"NotFoundException"},
|
466
|
-
{"shape":"LimitExceededException"},
|
467
|
-
{"shape":"InternalFailureException"},
|
468
|
-
{"shape":"BadRequestException"}
|
469
|
-
]
|
470
|
-
},
|
471
|
-
"GetSlotTypeVersions":{
|
472
|
-
"name":"GetSlotTypeVersions",
|
473
|
-
"http":{
|
474
|
-
"method":"GET",
|
475
|
-
"requestUri":"/slottypes/{name}/versions/",
|
476
|
-
"responseCode":200
|
477
|
-
},
|
478
|
-
"input":{"shape":"GetSlotTypeVersionsRequest"},
|
479
|
-
"output":{"shape":"GetSlotTypeVersionsResponse"},
|
480
|
-
"errors":[
|
481
|
-
{"shape":"NotFoundException"},
|
482
|
-
{"shape":"LimitExceededException"},
|
483
|
-
{"shape":"InternalFailureException"},
|
484
|
-
{"shape":"BadRequestException"}
|
485
|
-
]
|
486
|
-
},
|
487
|
-
"GetSlotTypes":{
|
488
|
-
"name":"GetSlotTypes",
|
489
|
-
"http":{
|
490
|
-
"method":"GET",
|
491
|
-
"requestUri":"/slottypes/",
|
492
|
-
"responseCode":200
|
493
|
-
},
|
494
|
-
"input":{"shape":"GetSlotTypesRequest"},
|
495
|
-
"output":{"shape":"GetSlotTypesResponse"},
|
496
|
-
"errors":[
|
497
|
-
{"shape":"NotFoundException"},
|
498
|
-
{"shape":"LimitExceededException"},
|
499
|
-
{"shape":"InternalFailureException"},
|
500
|
-
{"shape":"BadRequestException"}
|
501
|
-
]
|
502
|
-
},
|
503
|
-
"GetUtterancesView":{
|
504
|
-
"name":"GetUtterancesView",
|
505
|
-
"http":{
|
506
|
-
"method":"GET",
|
507
|
-
"requestUri":"/bots/{botname}/utterances?view=aggregation",
|
508
|
-
"responseCode":200
|
509
|
-
},
|
510
|
-
"input":{"shape":"GetUtterancesViewRequest"},
|
511
|
-
"output":{"shape":"GetUtterancesViewResponse"},
|
512
|
-
"errors":[
|
513
|
-
{"shape":"LimitExceededException"},
|
514
|
-
{"shape":"InternalFailureException"},
|
515
|
-
{"shape":"BadRequestException"}
|
516
|
-
]
|
517
|
-
},
|
518
|
-
"PutBot":{
|
519
|
-
"name":"PutBot",
|
520
|
-
"http":{
|
521
|
-
"method":"PUT",
|
522
|
-
"requestUri":"/bots/{name}/versions/$LATEST",
|
523
|
-
"responseCode":200
|
524
|
-
},
|
525
|
-
"input":{"shape":"PutBotRequest"},
|
526
|
-
"output":{"shape":"PutBotResponse"},
|
527
|
-
"errors":[
|
528
|
-
{"shape":"ConflictException"},
|
529
|
-
{"shape":"LimitExceededException"},
|
530
|
-
{"shape":"InternalFailureException"},
|
531
|
-
{"shape":"BadRequestException"},
|
532
|
-
{"shape":"PreconditionFailedException"}
|
533
|
-
]
|
534
|
-
},
|
535
|
-
"PutBotAlias":{
|
536
|
-
"name":"PutBotAlias",
|
537
|
-
"http":{
|
538
|
-
"method":"PUT",
|
539
|
-
"requestUri":"/bots/{botName}/aliases/{name}",
|
540
|
-
"responseCode":200
|
541
|
-
},
|
542
|
-
"input":{"shape":"PutBotAliasRequest"},
|
543
|
-
"output":{"shape":"PutBotAliasResponse"},
|
544
|
-
"errors":[
|
545
|
-
{"shape":"ConflictException"},
|
546
|
-
{"shape":"LimitExceededException"},
|
547
|
-
{"shape":"InternalFailureException"},
|
548
|
-
{"shape":"BadRequestException"},
|
549
|
-
{"shape":"PreconditionFailedException"}
|
550
|
-
]
|
551
|
-
},
|
552
|
-
"PutIntent":{
|
553
|
-
"name":"PutIntent",
|
554
|
-
"http":{
|
555
|
-
"method":"PUT",
|
556
|
-
"requestUri":"/intents/{name}/versions/$LATEST",
|
557
|
-
"responseCode":200
|
558
|
-
},
|
559
|
-
"input":{"shape":"PutIntentRequest"},
|
560
|
-
"output":{"shape":"PutIntentResponse"},
|
561
|
-
"errors":[
|
562
|
-
{"shape":"ConflictException"},
|
563
|
-
{"shape":"LimitExceededException"},
|
564
|
-
{"shape":"InternalFailureException"},
|
565
|
-
{"shape":"BadRequestException"},
|
566
|
-
{"shape":"PreconditionFailedException"}
|
567
|
-
]
|
568
|
-
},
|
569
|
-
"PutSlotType":{
|
570
|
-
"name":"PutSlotType",
|
571
|
-
"http":{
|
572
|
-
"method":"PUT",
|
573
|
-
"requestUri":"/slottypes/{name}/versions/$LATEST",
|
574
|
-
"responseCode":200
|
575
|
-
},
|
576
|
-
"input":{"shape":"PutSlotTypeRequest"},
|
577
|
-
"output":{"shape":"PutSlotTypeResponse"},
|
578
|
-
"errors":[
|
579
|
-
{"shape":"ConflictException"},
|
580
|
-
{"shape":"LimitExceededException"},
|
581
|
-
{"shape":"InternalFailureException"},
|
582
|
-
{"shape":"BadRequestException"},
|
583
|
-
{"shape":"PreconditionFailedException"}
|
584
|
-
]
|
585
|
-
},
|
586
|
-
"StartImport":{
|
587
|
-
"name":"StartImport",
|
588
|
-
"http":{
|
589
|
-
"method":"POST",
|
590
|
-
"requestUri":"/imports/",
|
591
|
-
"responseCode":201
|
592
|
-
},
|
593
|
-
"input":{"shape":"StartImportRequest"},
|
594
|
-
"output":{"shape":"StartImportResponse"},
|
595
|
-
"errors":[
|
596
|
-
{"shape":"LimitExceededException"},
|
597
|
-
{"shape":"InternalFailureException"},
|
598
|
-
{"shape":"BadRequestException"}
|
599
|
-
]
|
600
|
-
}
|
601
|
-
},
|
602
|
-
"shapes":{
|
603
|
-
"AliasName":{
|
604
|
-
"type":"string",
|
605
|
-
"max":100,
|
606
|
-
"min":1,
|
607
|
-
"pattern":"^([A-Za-z]_?)+$"
|
608
|
-
},
|
609
|
-
"AliasNameOrListAll":{
|
610
|
-
"type":"string",
|
611
|
-
"max":100,
|
612
|
-
"min":1,
|
613
|
-
"pattern":"^(-|^([A-Za-z]_?)+$)$"
|
614
|
-
},
|
615
|
-
"BadRequestException":{
|
616
|
-
"type":"structure",
|
617
|
-
"members":{
|
618
|
-
"message":{"shape":"String"}
|
619
|
-
},
|
620
|
-
"error":{"httpStatusCode":400},
|
621
|
-
"exception":true
|
622
|
-
},
|
623
|
-
"Blob":{"type":"blob"},
|
624
|
-
"Boolean":{"type":"boolean"},
|
625
|
-
"BotAliasMetadata":{
|
626
|
-
"type":"structure",
|
627
|
-
"members":{
|
628
|
-
"name":{"shape":"AliasName"},
|
629
|
-
"description":{"shape":"Description"},
|
630
|
-
"botVersion":{"shape":"Version"},
|
631
|
-
"botName":{"shape":"BotName"},
|
632
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
633
|
-
"createdDate":{"shape":"Timestamp"},
|
634
|
-
"checksum":{"shape":"String"}
|
635
|
-
}
|
636
|
-
},
|
637
|
-
"BotAliasMetadataList":{
|
638
|
-
"type":"list",
|
639
|
-
"member":{"shape":"BotAliasMetadata"}
|
640
|
-
},
|
641
|
-
"BotChannelAssociation":{
|
642
|
-
"type":"structure",
|
643
|
-
"members":{
|
644
|
-
"name":{"shape":"BotChannelName"},
|
645
|
-
"description":{"shape":"Description"},
|
646
|
-
"botAlias":{"shape":"AliasName"},
|
647
|
-
"botName":{"shape":"BotName"},
|
648
|
-
"createdDate":{"shape":"Timestamp"},
|
649
|
-
"type":{"shape":"ChannelType"},
|
650
|
-
"botConfiguration":{"shape":"ChannelConfigurationMap"},
|
651
|
-
"status":{"shape":"ChannelStatus"},
|
652
|
-
"failureReason":{"shape":"String"}
|
653
|
-
}
|
654
|
-
},
|
655
|
-
"BotChannelAssociationList":{
|
656
|
-
"type":"list",
|
657
|
-
"member":{"shape":"BotChannelAssociation"}
|
658
|
-
},
|
659
|
-
"BotChannelName":{
|
660
|
-
"type":"string",
|
661
|
-
"max":100,
|
662
|
-
"min":1,
|
663
|
-
"pattern":"^([A-Za-z]_?)+$"
|
664
|
-
},
|
665
|
-
"BotMetadata":{
|
666
|
-
"type":"structure",
|
667
|
-
"members":{
|
668
|
-
"name":{"shape":"BotName"},
|
669
|
-
"description":{"shape":"Description"},
|
670
|
-
"status":{"shape":"Status"},
|
671
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
672
|
-
"createdDate":{"shape":"Timestamp"},
|
673
|
-
"version":{"shape":"Version"}
|
674
|
-
}
|
675
|
-
},
|
676
|
-
"BotMetadataList":{
|
677
|
-
"type":"list",
|
678
|
-
"member":{"shape":"BotMetadata"}
|
679
|
-
},
|
680
|
-
"BotName":{
|
681
|
-
"type":"string",
|
682
|
-
"max":50,
|
683
|
-
"min":2,
|
684
|
-
"pattern":"^([A-Za-z]_?)+$"
|
685
|
-
},
|
686
|
-
"BotVersions":{
|
687
|
-
"type":"list",
|
688
|
-
"member":{"shape":"Version"},
|
689
|
-
"max":5,
|
690
|
-
"min":1
|
691
|
-
},
|
692
|
-
"BuiltinIntentMetadata":{
|
693
|
-
"type":"structure",
|
694
|
-
"members":{
|
695
|
-
"signature":{"shape":"BuiltinIntentSignature"},
|
696
|
-
"supportedLocales":{"shape":"LocaleList"}
|
697
|
-
}
|
698
|
-
},
|
699
|
-
"BuiltinIntentMetadataList":{
|
700
|
-
"type":"list",
|
701
|
-
"member":{"shape":"BuiltinIntentMetadata"}
|
702
|
-
},
|
703
|
-
"BuiltinIntentSignature":{"type":"string"},
|
704
|
-
"BuiltinIntentSlot":{
|
705
|
-
"type":"structure",
|
706
|
-
"members":{
|
707
|
-
"name":{"shape":"String"}
|
708
|
-
}
|
709
|
-
},
|
710
|
-
"BuiltinIntentSlotList":{
|
711
|
-
"type":"list",
|
712
|
-
"member":{"shape":"BuiltinIntentSlot"}
|
713
|
-
},
|
714
|
-
"BuiltinSlotTypeMetadata":{
|
715
|
-
"type":"structure",
|
716
|
-
"members":{
|
717
|
-
"signature":{"shape":"BuiltinSlotTypeSignature"},
|
718
|
-
"supportedLocales":{"shape":"LocaleList"}
|
719
|
-
}
|
720
|
-
},
|
721
|
-
"BuiltinSlotTypeMetadataList":{
|
722
|
-
"type":"list",
|
723
|
-
"member":{"shape":"BuiltinSlotTypeMetadata"}
|
724
|
-
},
|
725
|
-
"BuiltinSlotTypeSignature":{"type":"string"},
|
726
|
-
"ChannelConfigurationMap":{
|
727
|
-
"type":"map",
|
728
|
-
"key":{"shape":"String"},
|
729
|
-
"value":{"shape":"String"},
|
730
|
-
"max":10,
|
731
|
-
"min":1,
|
732
|
-
"sensitive":true
|
733
|
-
},
|
734
|
-
"ChannelStatus":{
|
735
|
-
"type":"string",
|
736
|
-
"enum":[
|
737
|
-
"IN_PROGRESS",
|
738
|
-
"CREATED",
|
739
|
-
"FAILED"
|
740
|
-
]
|
741
|
-
},
|
742
|
-
"ChannelType":{
|
743
|
-
"type":"string",
|
744
|
-
"enum":[
|
745
|
-
"Facebook",
|
746
|
-
"Slack",
|
747
|
-
"Twilio-Sms",
|
748
|
-
"Kik"
|
749
|
-
]
|
750
|
-
},
|
751
|
-
"CodeHook":{
|
752
|
-
"type":"structure",
|
753
|
-
"required":[
|
754
|
-
"uri",
|
755
|
-
"messageVersion"
|
756
|
-
],
|
757
|
-
"members":{
|
758
|
-
"uri":{"shape":"LambdaARN"},
|
759
|
-
"messageVersion":{"shape":"MessageVersion"}
|
760
|
-
}
|
761
|
-
},
|
762
|
-
"ConflictException":{
|
763
|
-
"type":"structure",
|
764
|
-
"members":{
|
765
|
-
"message":{"shape":"String"}
|
766
|
-
},
|
767
|
-
"error":{"httpStatusCode":409},
|
768
|
-
"exception":true
|
769
|
-
},
|
770
|
-
"ContentString":{
|
771
|
-
"type":"string",
|
772
|
-
"max":1000,
|
773
|
-
"min":1
|
774
|
-
},
|
775
|
-
"ContentType":{
|
776
|
-
"type":"string",
|
777
|
-
"enum":[
|
778
|
-
"PlainText",
|
779
|
-
"SSML",
|
780
|
-
"CustomPayload"
|
781
|
-
]
|
782
|
-
},
|
783
|
-
"Count":{"type":"integer"},
|
784
|
-
"CreateBotVersionRequest":{
|
785
|
-
"type":"structure",
|
786
|
-
"required":["name"],
|
787
|
-
"members":{
|
788
|
-
"name":{
|
789
|
-
"shape":"BotName",
|
790
|
-
"location":"uri",
|
791
|
-
"locationName":"name"
|
792
|
-
},
|
793
|
-
"checksum":{"shape":"String"}
|
794
|
-
}
|
795
|
-
},
|
796
|
-
"CreateBotVersionResponse":{
|
797
|
-
"type":"structure",
|
798
|
-
"members":{
|
799
|
-
"name":{"shape":"BotName"},
|
800
|
-
"description":{"shape":"Description"},
|
801
|
-
"intents":{"shape":"IntentList"},
|
802
|
-
"clarificationPrompt":{"shape":"Prompt"},
|
803
|
-
"abortStatement":{"shape":"Statement"},
|
804
|
-
"status":{"shape":"Status"},
|
805
|
-
"failureReason":{"shape":"String"},
|
806
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
807
|
-
"createdDate":{"shape":"Timestamp"},
|
808
|
-
"idleSessionTTLInSeconds":{"shape":"SessionTTL"},
|
809
|
-
"voiceId":{"shape":"String"},
|
810
|
-
"checksum":{"shape":"String"},
|
811
|
-
"version":{"shape":"Version"},
|
812
|
-
"locale":{"shape":"Locale"},
|
813
|
-
"childDirected":{"shape":"Boolean"}
|
814
|
-
}
|
815
|
-
},
|
816
|
-
"CreateIntentVersionRequest":{
|
817
|
-
"type":"structure",
|
818
|
-
"required":["name"],
|
819
|
-
"members":{
|
820
|
-
"name":{
|
821
|
-
"shape":"IntentName",
|
822
|
-
"location":"uri",
|
823
|
-
"locationName":"name"
|
824
|
-
},
|
825
|
-
"checksum":{"shape":"String"}
|
826
|
-
}
|
827
|
-
},
|
828
|
-
"CreateIntentVersionResponse":{
|
829
|
-
"type":"structure",
|
830
|
-
"members":{
|
831
|
-
"name":{"shape":"IntentName"},
|
832
|
-
"description":{"shape":"Description"},
|
833
|
-
"slots":{"shape":"SlotList"},
|
834
|
-
"sampleUtterances":{"shape":"IntentUtteranceList"},
|
835
|
-
"confirmationPrompt":{"shape":"Prompt"},
|
836
|
-
"rejectionStatement":{"shape":"Statement"},
|
837
|
-
"followUpPrompt":{"shape":"FollowUpPrompt"},
|
838
|
-
"conclusionStatement":{"shape":"Statement"},
|
839
|
-
"dialogCodeHook":{"shape":"CodeHook"},
|
840
|
-
"fulfillmentActivity":{"shape":"FulfillmentActivity"},
|
841
|
-
"parentIntentSignature":{"shape":"BuiltinIntentSignature"},
|
842
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
843
|
-
"createdDate":{"shape":"Timestamp"},
|
844
|
-
"version":{"shape":"Version"},
|
845
|
-
"checksum":{"shape":"String"}
|
846
|
-
}
|
847
|
-
},
|
848
|
-
"CreateSlotTypeVersionRequest":{
|
849
|
-
"type":"structure",
|
850
|
-
"required":["name"],
|
851
|
-
"members":{
|
852
|
-
"name":{
|
853
|
-
"shape":"SlotTypeName",
|
854
|
-
"location":"uri",
|
855
|
-
"locationName":"name"
|
856
|
-
},
|
857
|
-
"checksum":{"shape":"String"}
|
858
|
-
}
|
859
|
-
},
|
860
|
-
"CreateSlotTypeVersionResponse":{
|
861
|
-
"type":"structure",
|
862
|
-
"members":{
|
863
|
-
"name":{"shape":"SlotTypeName"},
|
864
|
-
"description":{"shape":"Description"},
|
865
|
-
"enumerationValues":{"shape":"EnumerationValues"},
|
866
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
867
|
-
"createdDate":{"shape":"Timestamp"},
|
868
|
-
"version":{"shape":"Version"},
|
869
|
-
"checksum":{"shape":"String"},
|
870
|
-
"valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
|
871
|
-
}
|
872
|
-
},
|
873
|
-
"CustomOrBuiltinSlotTypeName":{
|
874
|
-
"type":"string",
|
875
|
-
"max":100,
|
876
|
-
"min":1,
|
877
|
-
"pattern":"^((AMAZON\\.)_?|[A-Za-z]_?)+"
|
878
|
-
},
|
879
|
-
"DeleteBotAliasRequest":{
|
880
|
-
"type":"structure",
|
881
|
-
"required":[
|
882
|
-
"name",
|
883
|
-
"botName"
|
884
|
-
],
|
885
|
-
"members":{
|
886
|
-
"name":{
|
887
|
-
"shape":"AliasName",
|
888
|
-
"location":"uri",
|
889
|
-
"locationName":"name"
|
890
|
-
},
|
891
|
-
"botName":{
|
892
|
-
"shape":"BotName",
|
893
|
-
"location":"uri",
|
894
|
-
"locationName":"botName"
|
895
|
-
}
|
896
|
-
}
|
897
|
-
},
|
898
|
-
"DeleteBotChannelAssociationRequest":{
|
899
|
-
"type":"structure",
|
900
|
-
"required":[
|
901
|
-
"name",
|
902
|
-
"botName",
|
903
|
-
"botAlias"
|
904
|
-
],
|
905
|
-
"members":{
|
906
|
-
"name":{
|
907
|
-
"shape":"BotChannelName",
|
908
|
-
"location":"uri",
|
909
|
-
"locationName":"name"
|
910
|
-
},
|
911
|
-
"botName":{
|
912
|
-
"shape":"BotName",
|
913
|
-
"location":"uri",
|
914
|
-
"locationName":"botName"
|
915
|
-
},
|
916
|
-
"botAlias":{
|
917
|
-
"shape":"AliasName",
|
918
|
-
"location":"uri",
|
919
|
-
"locationName":"aliasName"
|
920
|
-
}
|
921
|
-
}
|
922
|
-
},
|
923
|
-
"DeleteBotRequest":{
|
924
|
-
"type":"structure",
|
925
|
-
"required":["name"],
|
926
|
-
"members":{
|
927
|
-
"name":{
|
928
|
-
"shape":"BotName",
|
929
|
-
"location":"uri",
|
930
|
-
"locationName":"name"
|
931
|
-
}
|
932
|
-
}
|
933
|
-
},
|
934
|
-
"DeleteBotVersionRequest":{
|
935
|
-
"type":"structure",
|
936
|
-
"required":[
|
937
|
-
"name",
|
938
|
-
"version"
|
939
|
-
],
|
940
|
-
"members":{
|
941
|
-
"name":{
|
942
|
-
"shape":"BotName",
|
943
|
-
"location":"uri",
|
944
|
-
"locationName":"name"
|
945
|
-
},
|
946
|
-
"version":{
|
947
|
-
"shape":"NumericalVersion",
|
948
|
-
"location":"uri",
|
949
|
-
"locationName":"version"
|
950
|
-
}
|
951
|
-
}
|
952
|
-
},
|
953
|
-
"DeleteIntentRequest":{
|
954
|
-
"type":"structure",
|
955
|
-
"required":["name"],
|
956
|
-
"members":{
|
957
|
-
"name":{
|
958
|
-
"shape":"IntentName",
|
959
|
-
"location":"uri",
|
960
|
-
"locationName":"name"
|
961
|
-
}
|
962
|
-
}
|
963
|
-
},
|
964
|
-
"DeleteIntentVersionRequest":{
|
965
|
-
"type":"structure",
|
966
|
-
"required":[
|
967
|
-
"name",
|
968
|
-
"version"
|
969
|
-
],
|
970
|
-
"members":{
|
971
|
-
"name":{
|
972
|
-
"shape":"IntentName",
|
973
|
-
"location":"uri",
|
974
|
-
"locationName":"name"
|
975
|
-
},
|
976
|
-
"version":{
|
977
|
-
"shape":"NumericalVersion",
|
978
|
-
"location":"uri",
|
979
|
-
"locationName":"version"
|
980
|
-
}
|
981
|
-
}
|
982
|
-
},
|
983
|
-
"DeleteSlotTypeRequest":{
|
984
|
-
"type":"structure",
|
985
|
-
"required":["name"],
|
986
|
-
"members":{
|
987
|
-
"name":{
|
988
|
-
"shape":"SlotTypeName",
|
989
|
-
"location":"uri",
|
990
|
-
"locationName":"name"
|
991
|
-
}
|
992
|
-
}
|
993
|
-
},
|
994
|
-
"DeleteSlotTypeVersionRequest":{
|
995
|
-
"type":"structure",
|
996
|
-
"required":[
|
997
|
-
"name",
|
998
|
-
"version"
|
999
|
-
],
|
1000
|
-
"members":{
|
1001
|
-
"name":{
|
1002
|
-
"shape":"SlotTypeName",
|
1003
|
-
"location":"uri",
|
1004
|
-
"locationName":"name"
|
1005
|
-
},
|
1006
|
-
"version":{
|
1007
|
-
"shape":"NumericalVersion",
|
1008
|
-
"location":"uri",
|
1009
|
-
"locationName":"version"
|
1010
|
-
}
|
1011
|
-
}
|
1012
|
-
},
|
1013
|
-
"DeleteUtterancesRequest":{
|
1014
|
-
"type":"structure",
|
1015
|
-
"required":[
|
1016
|
-
"botName",
|
1017
|
-
"userId"
|
1018
|
-
],
|
1019
|
-
"members":{
|
1020
|
-
"botName":{
|
1021
|
-
"shape":"BotName",
|
1022
|
-
"location":"uri",
|
1023
|
-
"locationName":"botName"
|
1024
|
-
},
|
1025
|
-
"userId":{
|
1026
|
-
"shape":"UserId",
|
1027
|
-
"location":"uri",
|
1028
|
-
"locationName":"userId"
|
1029
|
-
}
|
1030
|
-
}
|
1031
|
-
},
|
1032
|
-
"Description":{
|
1033
|
-
"type":"string",
|
1034
|
-
"max":200,
|
1035
|
-
"min":0
|
1036
|
-
},
|
1037
|
-
"EnumerationValue":{
|
1038
|
-
"type":"structure",
|
1039
|
-
"required":["value"],
|
1040
|
-
"members":{
|
1041
|
-
"value":{"shape":"Value"},
|
1042
|
-
"synonyms":{"shape":"SynonymList"}
|
1043
|
-
}
|
1044
|
-
},
|
1045
|
-
"EnumerationValues":{
|
1046
|
-
"type":"list",
|
1047
|
-
"member":{"shape":"EnumerationValue"},
|
1048
|
-
"max":10000,
|
1049
|
-
"min":1
|
1050
|
-
},
|
1051
|
-
"ExportStatus":{
|
1052
|
-
"type":"string",
|
1053
|
-
"enum":[
|
1054
|
-
"IN_PROGRESS",
|
1055
|
-
"READY",
|
1056
|
-
"FAILED"
|
1057
|
-
]
|
1058
|
-
},
|
1059
|
-
"ExportType":{
|
1060
|
-
"type":"string",
|
1061
|
-
"enum":[
|
1062
|
-
"ALEXA_SKILLS_KIT",
|
1063
|
-
"LEX"
|
1064
|
-
]
|
1065
|
-
},
|
1066
|
-
"FollowUpPrompt":{
|
1067
|
-
"type":"structure",
|
1068
|
-
"required":[
|
1069
|
-
"prompt",
|
1070
|
-
"rejectionStatement"
|
1071
|
-
],
|
1072
|
-
"members":{
|
1073
|
-
"prompt":{"shape":"Prompt"},
|
1074
|
-
"rejectionStatement":{"shape":"Statement"}
|
1075
|
-
}
|
1076
|
-
},
|
1077
|
-
"FulfillmentActivity":{
|
1078
|
-
"type":"structure",
|
1079
|
-
"required":["type"],
|
1080
|
-
"members":{
|
1081
|
-
"type":{"shape":"FulfillmentActivityType"},
|
1082
|
-
"codeHook":{"shape":"CodeHook"}
|
1083
|
-
}
|
1084
|
-
},
|
1085
|
-
"FulfillmentActivityType":{
|
1086
|
-
"type":"string",
|
1087
|
-
"enum":[
|
1088
|
-
"ReturnIntent",
|
1089
|
-
"CodeHook"
|
1090
|
-
]
|
1091
|
-
},
|
1092
|
-
"GetBotAliasRequest":{
|
1093
|
-
"type":"structure",
|
1094
|
-
"required":[
|
1095
|
-
"name",
|
1096
|
-
"botName"
|
1097
|
-
],
|
1098
|
-
"members":{
|
1099
|
-
"name":{
|
1100
|
-
"shape":"AliasName",
|
1101
|
-
"location":"uri",
|
1102
|
-
"locationName":"name"
|
1103
|
-
},
|
1104
|
-
"botName":{
|
1105
|
-
"shape":"BotName",
|
1106
|
-
"location":"uri",
|
1107
|
-
"locationName":"botName"
|
1108
|
-
}
|
1109
|
-
}
|
1110
|
-
},
|
1111
|
-
"GetBotAliasResponse":{
|
1112
|
-
"type":"structure",
|
1113
|
-
"members":{
|
1114
|
-
"name":{"shape":"AliasName"},
|
1115
|
-
"description":{"shape":"Description"},
|
1116
|
-
"botVersion":{"shape":"Version"},
|
1117
|
-
"botName":{"shape":"BotName"},
|
1118
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1119
|
-
"createdDate":{"shape":"Timestamp"},
|
1120
|
-
"checksum":{"shape":"String"}
|
1121
|
-
}
|
1122
|
-
},
|
1123
|
-
"GetBotAliasesRequest":{
|
1124
|
-
"type":"structure",
|
1125
|
-
"required":["botName"],
|
1126
|
-
"members":{
|
1127
|
-
"botName":{
|
1128
|
-
"shape":"BotName",
|
1129
|
-
"location":"uri",
|
1130
|
-
"locationName":"botName"
|
1131
|
-
},
|
1132
|
-
"nextToken":{
|
1133
|
-
"shape":"NextToken",
|
1134
|
-
"location":"querystring",
|
1135
|
-
"locationName":"nextToken"
|
1136
|
-
},
|
1137
|
-
"maxResults":{
|
1138
|
-
"shape":"MaxResults",
|
1139
|
-
"location":"querystring",
|
1140
|
-
"locationName":"maxResults"
|
1141
|
-
},
|
1142
|
-
"nameContains":{
|
1143
|
-
"shape":"AliasName",
|
1144
|
-
"location":"querystring",
|
1145
|
-
"locationName":"nameContains"
|
1146
|
-
}
|
1147
|
-
}
|
1148
|
-
},
|
1149
|
-
"GetBotAliasesResponse":{
|
1150
|
-
"type":"structure",
|
1151
|
-
"members":{
|
1152
|
-
"BotAliases":{"shape":"BotAliasMetadataList"},
|
1153
|
-
"nextToken":{"shape":"NextToken"}
|
1154
|
-
}
|
1155
|
-
},
|
1156
|
-
"GetBotChannelAssociationRequest":{
|
1157
|
-
"type":"structure",
|
1158
|
-
"required":[
|
1159
|
-
"name",
|
1160
|
-
"botName",
|
1161
|
-
"botAlias"
|
1162
|
-
],
|
1163
|
-
"members":{
|
1164
|
-
"name":{
|
1165
|
-
"shape":"BotChannelName",
|
1166
|
-
"location":"uri",
|
1167
|
-
"locationName":"name"
|
1168
|
-
},
|
1169
|
-
"botName":{
|
1170
|
-
"shape":"BotName",
|
1171
|
-
"location":"uri",
|
1172
|
-
"locationName":"botName"
|
1173
|
-
},
|
1174
|
-
"botAlias":{
|
1175
|
-
"shape":"AliasName",
|
1176
|
-
"location":"uri",
|
1177
|
-
"locationName":"aliasName"
|
1178
|
-
}
|
1179
|
-
}
|
1180
|
-
},
|
1181
|
-
"GetBotChannelAssociationResponse":{
|
1182
|
-
"type":"structure",
|
1183
|
-
"members":{
|
1184
|
-
"name":{"shape":"BotChannelName"},
|
1185
|
-
"description":{"shape":"Description"},
|
1186
|
-
"botAlias":{"shape":"AliasName"},
|
1187
|
-
"botName":{"shape":"BotName"},
|
1188
|
-
"createdDate":{"shape":"Timestamp"},
|
1189
|
-
"type":{"shape":"ChannelType"},
|
1190
|
-
"botConfiguration":{"shape":"ChannelConfigurationMap"},
|
1191
|
-
"status":{"shape":"ChannelStatus"},
|
1192
|
-
"failureReason":{"shape":"String"}
|
1193
|
-
}
|
1194
|
-
},
|
1195
|
-
"GetBotChannelAssociationsRequest":{
|
1196
|
-
"type":"structure",
|
1197
|
-
"required":[
|
1198
|
-
"botName",
|
1199
|
-
"botAlias"
|
1200
|
-
],
|
1201
|
-
"members":{
|
1202
|
-
"botName":{
|
1203
|
-
"shape":"BotName",
|
1204
|
-
"location":"uri",
|
1205
|
-
"locationName":"botName"
|
1206
|
-
},
|
1207
|
-
"botAlias":{
|
1208
|
-
"shape":"AliasNameOrListAll",
|
1209
|
-
"location":"uri",
|
1210
|
-
"locationName":"aliasName"
|
1211
|
-
},
|
1212
|
-
"nextToken":{
|
1213
|
-
"shape":"NextToken",
|
1214
|
-
"location":"querystring",
|
1215
|
-
"locationName":"nextToken"
|
1216
|
-
},
|
1217
|
-
"maxResults":{
|
1218
|
-
"shape":"MaxResults",
|
1219
|
-
"location":"querystring",
|
1220
|
-
"locationName":"maxResults"
|
1221
|
-
},
|
1222
|
-
"nameContains":{
|
1223
|
-
"shape":"BotChannelName",
|
1224
|
-
"location":"querystring",
|
1225
|
-
"locationName":"nameContains"
|
1226
|
-
}
|
1227
|
-
}
|
1228
|
-
},
|
1229
|
-
"GetBotChannelAssociationsResponse":{
|
1230
|
-
"type":"structure",
|
1231
|
-
"members":{
|
1232
|
-
"botChannelAssociations":{"shape":"BotChannelAssociationList"},
|
1233
|
-
"nextToken":{"shape":"NextToken"}
|
1234
|
-
}
|
1235
|
-
},
|
1236
|
-
"GetBotRequest":{
|
1237
|
-
"type":"structure",
|
1238
|
-
"required":[
|
1239
|
-
"name",
|
1240
|
-
"versionOrAlias"
|
1241
|
-
],
|
1242
|
-
"members":{
|
1243
|
-
"name":{
|
1244
|
-
"shape":"BotName",
|
1245
|
-
"location":"uri",
|
1246
|
-
"locationName":"name"
|
1247
|
-
},
|
1248
|
-
"versionOrAlias":{
|
1249
|
-
"shape":"String",
|
1250
|
-
"location":"uri",
|
1251
|
-
"locationName":"versionoralias"
|
1252
|
-
}
|
1253
|
-
}
|
1254
|
-
},
|
1255
|
-
"GetBotResponse":{
|
1256
|
-
"type":"structure",
|
1257
|
-
"members":{
|
1258
|
-
"name":{"shape":"BotName"},
|
1259
|
-
"description":{"shape":"Description"},
|
1260
|
-
"intents":{"shape":"IntentList"},
|
1261
|
-
"clarificationPrompt":{"shape":"Prompt"},
|
1262
|
-
"abortStatement":{"shape":"Statement"},
|
1263
|
-
"status":{"shape":"Status"},
|
1264
|
-
"failureReason":{"shape":"String"},
|
1265
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1266
|
-
"createdDate":{"shape":"Timestamp"},
|
1267
|
-
"idleSessionTTLInSeconds":{"shape":"SessionTTL"},
|
1268
|
-
"voiceId":{"shape":"String"},
|
1269
|
-
"checksum":{"shape":"String"},
|
1270
|
-
"version":{"shape":"Version"},
|
1271
|
-
"locale":{"shape":"Locale"},
|
1272
|
-
"childDirected":{"shape":"Boolean"}
|
1273
|
-
}
|
1274
|
-
},
|
1275
|
-
"GetBotVersionsRequest":{
|
1276
|
-
"type":"structure",
|
1277
|
-
"required":["name"],
|
1278
|
-
"members":{
|
1279
|
-
"name":{
|
1280
|
-
"shape":"BotName",
|
1281
|
-
"location":"uri",
|
1282
|
-
"locationName":"name"
|
1283
|
-
},
|
1284
|
-
"nextToken":{
|
1285
|
-
"shape":"NextToken",
|
1286
|
-
"location":"querystring",
|
1287
|
-
"locationName":"nextToken"
|
1288
|
-
},
|
1289
|
-
"maxResults":{
|
1290
|
-
"shape":"MaxResults",
|
1291
|
-
"location":"querystring",
|
1292
|
-
"locationName":"maxResults"
|
1293
|
-
}
|
1294
|
-
}
|
1295
|
-
},
|
1296
|
-
"GetBotVersionsResponse":{
|
1297
|
-
"type":"structure",
|
1298
|
-
"members":{
|
1299
|
-
"bots":{"shape":"BotMetadataList"},
|
1300
|
-
"nextToken":{"shape":"NextToken"}
|
1301
|
-
}
|
1302
|
-
},
|
1303
|
-
"GetBotsRequest":{
|
1304
|
-
"type":"structure",
|
1305
|
-
"members":{
|
1306
|
-
"nextToken":{
|
1307
|
-
"shape":"NextToken",
|
1308
|
-
"location":"querystring",
|
1309
|
-
"locationName":"nextToken"
|
1310
|
-
},
|
1311
|
-
"maxResults":{
|
1312
|
-
"shape":"MaxResults",
|
1313
|
-
"location":"querystring",
|
1314
|
-
"locationName":"maxResults"
|
1315
|
-
},
|
1316
|
-
"nameContains":{
|
1317
|
-
"shape":"BotName",
|
1318
|
-
"location":"querystring",
|
1319
|
-
"locationName":"nameContains"
|
1320
|
-
}
|
1321
|
-
}
|
1322
|
-
},
|
1323
|
-
"GetBotsResponse":{
|
1324
|
-
"type":"structure",
|
1325
|
-
"members":{
|
1326
|
-
"bots":{"shape":"BotMetadataList"},
|
1327
|
-
"nextToken":{"shape":"NextToken"}
|
1328
|
-
}
|
1329
|
-
},
|
1330
|
-
"GetBuiltinIntentRequest":{
|
1331
|
-
"type":"structure",
|
1332
|
-
"required":["signature"],
|
1333
|
-
"members":{
|
1334
|
-
"signature":{
|
1335
|
-
"shape":"BuiltinIntentSignature",
|
1336
|
-
"location":"uri",
|
1337
|
-
"locationName":"signature"
|
1338
|
-
}
|
1339
|
-
}
|
1340
|
-
},
|
1341
|
-
"GetBuiltinIntentResponse":{
|
1342
|
-
"type":"structure",
|
1343
|
-
"members":{
|
1344
|
-
"signature":{"shape":"BuiltinIntentSignature"},
|
1345
|
-
"supportedLocales":{"shape":"LocaleList"},
|
1346
|
-
"slots":{"shape":"BuiltinIntentSlotList"}
|
1347
|
-
}
|
1348
|
-
},
|
1349
|
-
"GetBuiltinIntentsRequest":{
|
1350
|
-
"type":"structure",
|
1351
|
-
"members":{
|
1352
|
-
"locale":{
|
1353
|
-
"shape":"Locale",
|
1354
|
-
"location":"querystring",
|
1355
|
-
"locationName":"locale"
|
1356
|
-
},
|
1357
|
-
"signatureContains":{
|
1358
|
-
"shape":"String",
|
1359
|
-
"location":"querystring",
|
1360
|
-
"locationName":"signatureContains"
|
1361
|
-
},
|
1362
|
-
"nextToken":{
|
1363
|
-
"shape":"NextToken",
|
1364
|
-
"location":"querystring",
|
1365
|
-
"locationName":"nextToken"
|
1366
|
-
},
|
1367
|
-
"maxResults":{
|
1368
|
-
"shape":"MaxResults",
|
1369
|
-
"location":"querystring",
|
1370
|
-
"locationName":"maxResults"
|
1371
|
-
}
|
1372
|
-
}
|
1373
|
-
},
|
1374
|
-
"GetBuiltinIntentsResponse":{
|
1375
|
-
"type":"structure",
|
1376
|
-
"members":{
|
1377
|
-
"intents":{"shape":"BuiltinIntentMetadataList"},
|
1378
|
-
"nextToken":{"shape":"NextToken"}
|
1379
|
-
}
|
1380
|
-
},
|
1381
|
-
"GetBuiltinSlotTypesRequest":{
|
1382
|
-
"type":"structure",
|
1383
|
-
"members":{
|
1384
|
-
"locale":{
|
1385
|
-
"shape":"Locale",
|
1386
|
-
"location":"querystring",
|
1387
|
-
"locationName":"locale"
|
1388
|
-
},
|
1389
|
-
"signatureContains":{
|
1390
|
-
"shape":"String",
|
1391
|
-
"location":"querystring",
|
1392
|
-
"locationName":"signatureContains"
|
1393
|
-
},
|
1394
|
-
"nextToken":{
|
1395
|
-
"shape":"NextToken",
|
1396
|
-
"location":"querystring",
|
1397
|
-
"locationName":"nextToken"
|
1398
|
-
},
|
1399
|
-
"maxResults":{
|
1400
|
-
"shape":"MaxResults",
|
1401
|
-
"location":"querystring",
|
1402
|
-
"locationName":"maxResults"
|
1403
|
-
}
|
1404
|
-
}
|
1405
|
-
},
|
1406
|
-
"GetBuiltinSlotTypesResponse":{
|
1407
|
-
"type":"structure",
|
1408
|
-
"members":{
|
1409
|
-
"slotTypes":{"shape":"BuiltinSlotTypeMetadataList"},
|
1410
|
-
"nextToken":{"shape":"NextToken"}
|
1411
|
-
}
|
1412
|
-
},
|
1413
|
-
"GetExportRequest":{
|
1414
|
-
"type":"structure",
|
1415
|
-
"required":[
|
1416
|
-
"name",
|
1417
|
-
"version",
|
1418
|
-
"resourceType",
|
1419
|
-
"exportType"
|
1420
|
-
],
|
1421
|
-
"members":{
|
1422
|
-
"name":{
|
1423
|
-
"shape":"Name",
|
1424
|
-
"location":"querystring",
|
1425
|
-
"locationName":"name"
|
1426
|
-
},
|
1427
|
-
"version":{
|
1428
|
-
"shape":"NumericalVersion",
|
1429
|
-
"location":"querystring",
|
1430
|
-
"locationName":"version"
|
1431
|
-
},
|
1432
|
-
"resourceType":{
|
1433
|
-
"shape":"ResourceType",
|
1434
|
-
"location":"querystring",
|
1435
|
-
"locationName":"resourceType"
|
1436
|
-
},
|
1437
|
-
"exportType":{
|
1438
|
-
"shape":"ExportType",
|
1439
|
-
"location":"querystring",
|
1440
|
-
"locationName":"exportType"
|
1441
|
-
}
|
1442
|
-
}
|
1443
|
-
},
|
1444
|
-
"GetExportResponse":{
|
1445
|
-
"type":"structure",
|
1446
|
-
"members":{
|
1447
|
-
"name":{"shape":"Name"},
|
1448
|
-
"version":{"shape":"NumericalVersion"},
|
1449
|
-
"resourceType":{"shape":"ResourceType"},
|
1450
|
-
"exportType":{"shape":"ExportType"},
|
1451
|
-
"exportStatus":{"shape":"ExportStatus"},
|
1452
|
-
"failureReason":{"shape":"String"},
|
1453
|
-
"url":{"shape":"String"}
|
1454
|
-
}
|
1455
|
-
},
|
1456
|
-
"GetImportRequest":{
|
1457
|
-
"type":"structure",
|
1458
|
-
"required":["importId"],
|
1459
|
-
"members":{
|
1460
|
-
"importId":{
|
1461
|
-
"shape":"String",
|
1462
|
-
"location":"uri",
|
1463
|
-
"locationName":"importId"
|
1464
|
-
}
|
1465
|
-
}
|
1466
|
-
},
|
1467
|
-
"GetImportResponse":{
|
1468
|
-
"type":"structure",
|
1469
|
-
"members":{
|
1470
|
-
"name":{"shape":"Name"},
|
1471
|
-
"resourceType":{"shape":"ResourceType"},
|
1472
|
-
"mergeStrategy":{"shape":"MergeStrategy"},
|
1473
|
-
"importId":{"shape":"String"},
|
1474
|
-
"importStatus":{"shape":"ImportStatus"},
|
1475
|
-
"failureReason":{"shape":"StringList"},
|
1476
|
-
"createdDate":{"shape":"Timestamp"}
|
1477
|
-
}
|
1478
|
-
},
|
1479
|
-
"GetIntentRequest":{
|
1480
|
-
"type":"structure",
|
1481
|
-
"required":[
|
1482
|
-
"name",
|
1483
|
-
"version"
|
1484
|
-
],
|
1485
|
-
"members":{
|
1486
|
-
"name":{
|
1487
|
-
"shape":"IntentName",
|
1488
|
-
"location":"uri",
|
1489
|
-
"locationName":"name"
|
1490
|
-
},
|
1491
|
-
"version":{
|
1492
|
-
"shape":"Version",
|
1493
|
-
"location":"uri",
|
1494
|
-
"locationName":"version"
|
1495
|
-
}
|
1496
|
-
}
|
1497
|
-
},
|
1498
|
-
"GetIntentResponse":{
|
1499
|
-
"type":"structure",
|
1500
|
-
"members":{
|
1501
|
-
"name":{"shape":"IntentName"},
|
1502
|
-
"description":{"shape":"Description"},
|
1503
|
-
"slots":{"shape":"SlotList"},
|
1504
|
-
"sampleUtterances":{"shape":"IntentUtteranceList"},
|
1505
|
-
"confirmationPrompt":{"shape":"Prompt"},
|
1506
|
-
"rejectionStatement":{"shape":"Statement"},
|
1507
|
-
"followUpPrompt":{"shape":"FollowUpPrompt"},
|
1508
|
-
"conclusionStatement":{"shape":"Statement"},
|
1509
|
-
"dialogCodeHook":{"shape":"CodeHook"},
|
1510
|
-
"fulfillmentActivity":{"shape":"FulfillmentActivity"},
|
1511
|
-
"parentIntentSignature":{"shape":"BuiltinIntentSignature"},
|
1512
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1513
|
-
"createdDate":{"shape":"Timestamp"},
|
1514
|
-
"version":{"shape":"Version"},
|
1515
|
-
"checksum":{"shape":"String"}
|
1516
|
-
}
|
1517
|
-
},
|
1518
|
-
"GetIntentVersionsRequest":{
|
1519
|
-
"type":"structure",
|
1520
|
-
"required":["name"],
|
1521
|
-
"members":{
|
1522
|
-
"name":{
|
1523
|
-
"shape":"IntentName",
|
1524
|
-
"location":"uri",
|
1525
|
-
"locationName":"name"
|
1526
|
-
},
|
1527
|
-
"nextToken":{
|
1528
|
-
"shape":"NextToken",
|
1529
|
-
"location":"querystring",
|
1530
|
-
"locationName":"nextToken"
|
1531
|
-
},
|
1532
|
-
"maxResults":{
|
1533
|
-
"shape":"MaxResults",
|
1534
|
-
"location":"querystring",
|
1535
|
-
"locationName":"maxResults"
|
1536
|
-
}
|
1537
|
-
}
|
1538
|
-
},
|
1539
|
-
"GetIntentVersionsResponse":{
|
1540
|
-
"type":"structure",
|
1541
|
-
"members":{
|
1542
|
-
"intents":{"shape":"IntentMetadataList"},
|
1543
|
-
"nextToken":{"shape":"NextToken"}
|
1544
|
-
}
|
1545
|
-
},
|
1546
|
-
"GetIntentsRequest":{
|
1547
|
-
"type":"structure",
|
1548
|
-
"members":{
|
1549
|
-
"nextToken":{
|
1550
|
-
"shape":"NextToken",
|
1551
|
-
"location":"querystring",
|
1552
|
-
"locationName":"nextToken"
|
1553
|
-
},
|
1554
|
-
"maxResults":{
|
1555
|
-
"shape":"MaxResults",
|
1556
|
-
"location":"querystring",
|
1557
|
-
"locationName":"maxResults"
|
1558
|
-
},
|
1559
|
-
"nameContains":{
|
1560
|
-
"shape":"IntentName",
|
1561
|
-
"location":"querystring",
|
1562
|
-
"locationName":"nameContains"
|
1563
|
-
}
|
1564
|
-
}
|
1565
|
-
},
|
1566
|
-
"GetIntentsResponse":{
|
1567
|
-
"type":"structure",
|
1568
|
-
"members":{
|
1569
|
-
"intents":{"shape":"IntentMetadataList"},
|
1570
|
-
"nextToken":{"shape":"NextToken"}
|
1571
|
-
}
|
1572
|
-
},
|
1573
|
-
"GetSlotTypeRequest":{
|
1574
|
-
"type":"structure",
|
1575
|
-
"required":[
|
1576
|
-
"name",
|
1577
|
-
"version"
|
1578
|
-
],
|
1579
|
-
"members":{
|
1580
|
-
"name":{
|
1581
|
-
"shape":"SlotTypeName",
|
1582
|
-
"location":"uri",
|
1583
|
-
"locationName":"name"
|
1584
|
-
},
|
1585
|
-
"version":{
|
1586
|
-
"shape":"Version",
|
1587
|
-
"location":"uri",
|
1588
|
-
"locationName":"version"
|
1589
|
-
}
|
1590
|
-
}
|
1591
|
-
},
|
1592
|
-
"GetSlotTypeResponse":{
|
1593
|
-
"type":"structure",
|
1594
|
-
"members":{
|
1595
|
-
"name":{"shape":"SlotTypeName"},
|
1596
|
-
"description":{"shape":"Description"},
|
1597
|
-
"enumerationValues":{"shape":"EnumerationValues"},
|
1598
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1599
|
-
"createdDate":{"shape":"Timestamp"},
|
1600
|
-
"version":{"shape":"Version"},
|
1601
|
-
"checksum":{"shape":"String"},
|
1602
|
-
"valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"}
|
1603
|
-
}
|
1604
|
-
},
|
1605
|
-
"GetSlotTypeVersionsRequest":{
|
1606
|
-
"type":"structure",
|
1607
|
-
"required":["name"],
|
1608
|
-
"members":{
|
1609
|
-
"name":{
|
1610
|
-
"shape":"SlotTypeName",
|
1611
|
-
"location":"uri",
|
1612
|
-
"locationName":"name"
|
1613
|
-
},
|
1614
|
-
"nextToken":{
|
1615
|
-
"shape":"NextToken",
|
1616
|
-
"location":"querystring",
|
1617
|
-
"locationName":"nextToken"
|
1618
|
-
},
|
1619
|
-
"maxResults":{
|
1620
|
-
"shape":"MaxResults",
|
1621
|
-
"location":"querystring",
|
1622
|
-
"locationName":"maxResults"
|
1623
|
-
}
|
1624
|
-
}
|
1625
|
-
},
|
1626
|
-
"GetSlotTypeVersionsResponse":{
|
1627
|
-
"type":"structure",
|
1628
|
-
"members":{
|
1629
|
-
"slotTypes":{"shape":"SlotTypeMetadataList"},
|
1630
|
-
"nextToken":{"shape":"NextToken"}
|
1631
|
-
}
|
1632
|
-
},
|
1633
|
-
"GetSlotTypesRequest":{
|
1634
|
-
"type":"structure",
|
1635
|
-
"members":{
|
1636
|
-
"nextToken":{
|
1637
|
-
"shape":"NextToken",
|
1638
|
-
"location":"querystring",
|
1639
|
-
"locationName":"nextToken"
|
1640
|
-
},
|
1641
|
-
"maxResults":{
|
1642
|
-
"shape":"MaxResults",
|
1643
|
-
"location":"querystring",
|
1644
|
-
"locationName":"maxResults"
|
1645
|
-
},
|
1646
|
-
"nameContains":{
|
1647
|
-
"shape":"SlotTypeName",
|
1648
|
-
"location":"querystring",
|
1649
|
-
"locationName":"nameContains"
|
1650
|
-
}
|
1651
|
-
}
|
1652
|
-
},
|
1653
|
-
"GetSlotTypesResponse":{
|
1654
|
-
"type":"structure",
|
1655
|
-
"members":{
|
1656
|
-
"slotTypes":{"shape":"SlotTypeMetadataList"},
|
1657
|
-
"nextToken":{"shape":"NextToken"}
|
1658
|
-
}
|
1659
|
-
},
|
1660
|
-
"GetUtterancesViewRequest":{
|
1661
|
-
"type":"structure",
|
1662
|
-
"required":[
|
1663
|
-
"botName",
|
1664
|
-
"botVersions",
|
1665
|
-
"statusType"
|
1666
|
-
],
|
1667
|
-
"members":{
|
1668
|
-
"botName":{
|
1669
|
-
"shape":"BotName",
|
1670
|
-
"location":"uri",
|
1671
|
-
"locationName":"botname"
|
1672
|
-
},
|
1673
|
-
"botVersions":{
|
1674
|
-
"shape":"BotVersions",
|
1675
|
-
"location":"querystring",
|
1676
|
-
"locationName":"bot_versions"
|
1677
|
-
},
|
1678
|
-
"statusType":{
|
1679
|
-
"shape":"StatusType",
|
1680
|
-
"location":"querystring",
|
1681
|
-
"locationName":"status_type"
|
1682
|
-
}
|
1683
|
-
}
|
1684
|
-
},
|
1685
|
-
"GetUtterancesViewResponse":{
|
1686
|
-
"type":"structure",
|
1687
|
-
"members":{
|
1688
|
-
"botName":{"shape":"BotName"},
|
1689
|
-
"utterances":{"shape":"ListsOfUtterances"}
|
1690
|
-
}
|
1691
|
-
},
|
1692
|
-
"GroupNumber":{
|
1693
|
-
"type":"integer",
|
1694
|
-
"box":true,
|
1695
|
-
"max":5,
|
1696
|
-
"min":1
|
1697
|
-
},
|
1698
|
-
"ImportStatus":{
|
1699
|
-
"type":"string",
|
1700
|
-
"enum":[
|
1701
|
-
"IN_PROGRESS",
|
1702
|
-
"COMPLETE",
|
1703
|
-
"FAILED"
|
1704
|
-
]
|
1705
|
-
},
|
1706
|
-
"Intent":{
|
1707
|
-
"type":"structure",
|
1708
|
-
"required":[
|
1709
|
-
"intentName",
|
1710
|
-
"intentVersion"
|
1711
|
-
],
|
1712
|
-
"members":{
|
1713
|
-
"intentName":{"shape":"IntentName"},
|
1714
|
-
"intentVersion":{"shape":"Version"}
|
1715
|
-
}
|
1716
|
-
},
|
1717
|
-
"IntentList":{
|
1718
|
-
"type":"list",
|
1719
|
-
"member":{"shape":"Intent"}
|
1720
|
-
},
|
1721
|
-
"IntentMetadata":{
|
1722
|
-
"type":"structure",
|
1723
|
-
"members":{
|
1724
|
-
"name":{"shape":"IntentName"},
|
1725
|
-
"description":{"shape":"Description"},
|
1726
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1727
|
-
"createdDate":{"shape":"Timestamp"},
|
1728
|
-
"version":{"shape":"Version"}
|
1729
|
-
}
|
1730
|
-
},
|
1731
|
-
"IntentMetadataList":{
|
1732
|
-
"type":"list",
|
1733
|
-
"member":{"shape":"IntentMetadata"}
|
1734
|
-
},
|
1735
|
-
"IntentName":{
|
1736
|
-
"type":"string",
|
1737
|
-
"max":100,
|
1738
|
-
"min":1,
|
1739
|
-
"pattern":"^([A-Za-z]_?)+$"
|
1740
|
-
},
|
1741
|
-
"IntentUtteranceList":{
|
1742
|
-
"type":"list",
|
1743
|
-
"member":{"shape":"Utterance"},
|
1744
|
-
"max":1500,
|
1745
|
-
"min":0
|
1746
|
-
},
|
1747
|
-
"InternalFailureException":{
|
1748
|
-
"type":"structure",
|
1749
|
-
"members":{
|
1750
|
-
"message":{"shape":"String"}
|
1751
|
-
},
|
1752
|
-
"error":{"httpStatusCode":500},
|
1753
|
-
"exception":true,
|
1754
|
-
"fault":true
|
1755
|
-
},
|
1756
|
-
"LambdaARN":{
|
1757
|
-
"type":"string",
|
1758
|
-
"max":2048,
|
1759
|
-
"min":20,
|
1760
|
-
"pattern":"arn:aws:lambda:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:function:[a-zA-Z0-9-_]+(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?(:[a-zA-Z0-9-_]+)?"
|
1761
|
-
},
|
1762
|
-
"LimitExceededException":{
|
1763
|
-
"type":"structure",
|
1764
|
-
"members":{
|
1765
|
-
"retryAfterSeconds":{
|
1766
|
-
"shape":"String",
|
1767
|
-
"location":"header",
|
1768
|
-
"locationName":"Retry-After"
|
1769
|
-
},
|
1770
|
-
"message":{"shape":"String"}
|
1771
|
-
},
|
1772
|
-
"error":{"httpStatusCode":429},
|
1773
|
-
"exception":true
|
1774
|
-
},
|
1775
|
-
"ListOfUtterance":{
|
1776
|
-
"type":"list",
|
1777
|
-
"member":{"shape":"UtteranceData"}
|
1778
|
-
},
|
1779
|
-
"ListsOfUtterances":{
|
1780
|
-
"type":"list",
|
1781
|
-
"member":{"shape":"UtteranceList"}
|
1782
|
-
},
|
1783
|
-
"Locale":{
|
1784
|
-
"type":"string",
|
1785
|
-
"enum":[
|
1786
|
-
"en-US",
|
1787
|
-
"en-GB",
|
1788
|
-
"de-DE"
|
1789
|
-
]
|
1790
|
-
},
|
1791
|
-
"LocaleList":{
|
1792
|
-
"type":"list",
|
1793
|
-
"member":{"shape":"Locale"}
|
1794
|
-
},
|
1795
|
-
"MaxResults":{
|
1796
|
-
"type":"integer",
|
1797
|
-
"box":true,
|
1798
|
-
"max":50,
|
1799
|
-
"min":1
|
1800
|
-
},
|
1801
|
-
"MergeStrategy":{
|
1802
|
-
"type":"string",
|
1803
|
-
"enum":[
|
1804
|
-
"OVERWRITE_LATEST",
|
1805
|
-
"FAIL_ON_CONFLICT"
|
1806
|
-
]
|
1807
|
-
},
|
1808
|
-
"Message":{
|
1809
|
-
"type":"structure",
|
1810
|
-
"required":[
|
1811
|
-
"contentType",
|
1812
|
-
"content"
|
1813
|
-
],
|
1814
|
-
"members":{
|
1815
|
-
"contentType":{"shape":"ContentType"},
|
1816
|
-
"content":{"shape":"ContentString"},
|
1817
|
-
"groupNumber":{"shape":"GroupNumber"}
|
1818
|
-
}
|
1819
|
-
},
|
1820
|
-
"MessageList":{
|
1821
|
-
"type":"list",
|
1822
|
-
"member":{"shape":"Message"},
|
1823
|
-
"max":15,
|
1824
|
-
"min":1
|
1825
|
-
},
|
1826
|
-
"MessageVersion":{
|
1827
|
-
"type":"string",
|
1828
|
-
"max":5,
|
1829
|
-
"min":1
|
1830
|
-
},
|
1831
|
-
"Name":{
|
1832
|
-
"type":"string",
|
1833
|
-
"max":100,
|
1834
|
-
"min":1,
|
1835
|
-
"pattern":"[a-zA-Z_]+"
|
1836
|
-
},
|
1837
|
-
"NextToken":{"type":"string"},
|
1838
|
-
"NotFoundException":{
|
1839
|
-
"type":"structure",
|
1840
|
-
"members":{
|
1841
|
-
"message":{"shape":"String"}
|
1842
|
-
},
|
1843
|
-
"error":{"httpStatusCode":404},
|
1844
|
-
"exception":true
|
1845
|
-
},
|
1846
|
-
"NumericalVersion":{
|
1847
|
-
"type":"string",
|
1848
|
-
"max":64,
|
1849
|
-
"min":1,
|
1850
|
-
"pattern":"[0-9]+"
|
1851
|
-
},
|
1852
|
-
"PreconditionFailedException":{
|
1853
|
-
"type":"structure",
|
1854
|
-
"members":{
|
1855
|
-
"message":{"shape":"String"}
|
1856
|
-
},
|
1857
|
-
"error":{"httpStatusCode":412},
|
1858
|
-
"exception":true
|
1859
|
-
},
|
1860
|
-
"Priority":{
|
1861
|
-
"type":"integer",
|
1862
|
-
"max":100,
|
1863
|
-
"min":0
|
1864
|
-
},
|
1865
|
-
"ProcessBehavior":{
|
1866
|
-
"type":"string",
|
1867
|
-
"enum":[
|
1868
|
-
"SAVE",
|
1869
|
-
"BUILD"
|
1870
|
-
]
|
1871
|
-
},
|
1872
|
-
"Prompt":{
|
1873
|
-
"type":"structure",
|
1874
|
-
"required":[
|
1875
|
-
"messages",
|
1876
|
-
"maxAttempts"
|
1877
|
-
],
|
1878
|
-
"members":{
|
1879
|
-
"messages":{"shape":"MessageList"},
|
1880
|
-
"maxAttempts":{"shape":"PromptMaxAttempts"},
|
1881
|
-
"responseCard":{"shape":"ResponseCard"}
|
1882
|
-
}
|
1883
|
-
},
|
1884
|
-
"PromptMaxAttempts":{
|
1885
|
-
"type":"integer",
|
1886
|
-
"max":5,
|
1887
|
-
"min":1
|
1888
|
-
},
|
1889
|
-
"PutBotAliasRequest":{
|
1890
|
-
"type":"structure",
|
1891
|
-
"required":[
|
1892
|
-
"name",
|
1893
|
-
"botVersion",
|
1894
|
-
"botName"
|
1895
|
-
],
|
1896
|
-
"members":{
|
1897
|
-
"name":{
|
1898
|
-
"shape":"AliasName",
|
1899
|
-
"location":"uri",
|
1900
|
-
"locationName":"name"
|
1901
|
-
},
|
1902
|
-
"description":{"shape":"Description"},
|
1903
|
-
"botVersion":{"shape":"Version"},
|
1904
|
-
"botName":{
|
1905
|
-
"shape":"BotName",
|
1906
|
-
"location":"uri",
|
1907
|
-
"locationName":"botName"
|
1908
|
-
},
|
1909
|
-
"checksum":{"shape":"String"}
|
1910
|
-
}
|
1911
|
-
},
|
1912
|
-
"PutBotAliasResponse":{
|
1913
|
-
"type":"structure",
|
1914
|
-
"members":{
|
1915
|
-
"name":{"shape":"AliasName"},
|
1916
|
-
"description":{"shape":"Description"},
|
1917
|
-
"botVersion":{"shape":"Version"},
|
1918
|
-
"botName":{"shape":"BotName"},
|
1919
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1920
|
-
"createdDate":{"shape":"Timestamp"},
|
1921
|
-
"checksum":{"shape":"String"}
|
1922
|
-
}
|
1923
|
-
},
|
1924
|
-
"PutBotRequest":{
|
1925
|
-
"type":"structure",
|
1926
|
-
"required":[
|
1927
|
-
"name",
|
1928
|
-
"locale",
|
1929
|
-
"childDirected"
|
1930
|
-
],
|
1931
|
-
"members":{
|
1932
|
-
"name":{
|
1933
|
-
"shape":"BotName",
|
1934
|
-
"location":"uri",
|
1935
|
-
"locationName":"name"
|
1936
|
-
},
|
1937
|
-
"description":{"shape":"Description"},
|
1938
|
-
"intents":{"shape":"IntentList"},
|
1939
|
-
"clarificationPrompt":{"shape":"Prompt"},
|
1940
|
-
"abortStatement":{"shape":"Statement"},
|
1941
|
-
"idleSessionTTLInSeconds":{"shape":"SessionTTL"},
|
1942
|
-
"voiceId":{"shape":"String"},
|
1943
|
-
"checksum":{"shape":"String"},
|
1944
|
-
"processBehavior":{"shape":"ProcessBehavior"},
|
1945
|
-
"locale":{"shape":"Locale"},
|
1946
|
-
"childDirected":{"shape":"Boolean"},
|
1947
|
-
"createVersion":{"shape":"Boolean"}
|
1948
|
-
}
|
1949
|
-
},
|
1950
|
-
"PutBotResponse":{
|
1951
|
-
"type":"structure",
|
1952
|
-
"members":{
|
1953
|
-
"name":{"shape":"BotName"},
|
1954
|
-
"description":{"shape":"Description"},
|
1955
|
-
"intents":{"shape":"IntentList"},
|
1956
|
-
"clarificationPrompt":{"shape":"Prompt"},
|
1957
|
-
"abortStatement":{"shape":"Statement"},
|
1958
|
-
"status":{"shape":"Status"},
|
1959
|
-
"failureReason":{"shape":"String"},
|
1960
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
1961
|
-
"createdDate":{"shape":"Timestamp"},
|
1962
|
-
"idleSessionTTLInSeconds":{"shape":"SessionTTL"},
|
1963
|
-
"voiceId":{"shape":"String"},
|
1964
|
-
"checksum":{"shape":"String"},
|
1965
|
-
"version":{"shape":"Version"},
|
1966
|
-
"locale":{"shape":"Locale"},
|
1967
|
-
"childDirected":{"shape":"Boolean"},
|
1968
|
-
"createVersion":{"shape":"Boolean"}
|
1969
|
-
}
|
1970
|
-
},
|
1971
|
-
"PutIntentRequest":{
|
1972
|
-
"type":"structure",
|
1973
|
-
"required":["name"],
|
1974
|
-
"members":{
|
1975
|
-
"name":{
|
1976
|
-
"shape":"IntentName",
|
1977
|
-
"location":"uri",
|
1978
|
-
"locationName":"name"
|
1979
|
-
},
|
1980
|
-
"description":{"shape":"Description"},
|
1981
|
-
"slots":{"shape":"SlotList"},
|
1982
|
-
"sampleUtterances":{"shape":"IntentUtteranceList"},
|
1983
|
-
"confirmationPrompt":{"shape":"Prompt"},
|
1984
|
-
"rejectionStatement":{"shape":"Statement"},
|
1985
|
-
"followUpPrompt":{"shape":"FollowUpPrompt"},
|
1986
|
-
"conclusionStatement":{"shape":"Statement"},
|
1987
|
-
"dialogCodeHook":{"shape":"CodeHook"},
|
1988
|
-
"fulfillmentActivity":{"shape":"FulfillmentActivity"},
|
1989
|
-
"parentIntentSignature":{"shape":"BuiltinIntentSignature"},
|
1990
|
-
"checksum":{"shape":"String"},
|
1991
|
-
"createVersion":{"shape":"Boolean"}
|
1992
|
-
}
|
1993
|
-
},
|
1994
|
-
"PutIntentResponse":{
|
1995
|
-
"type":"structure",
|
1996
|
-
"members":{
|
1997
|
-
"name":{"shape":"IntentName"},
|
1998
|
-
"description":{"shape":"Description"},
|
1999
|
-
"slots":{"shape":"SlotList"},
|
2000
|
-
"sampleUtterances":{"shape":"IntentUtteranceList"},
|
2001
|
-
"confirmationPrompt":{"shape":"Prompt"},
|
2002
|
-
"rejectionStatement":{"shape":"Statement"},
|
2003
|
-
"followUpPrompt":{"shape":"FollowUpPrompt"},
|
2004
|
-
"conclusionStatement":{"shape":"Statement"},
|
2005
|
-
"dialogCodeHook":{"shape":"CodeHook"},
|
2006
|
-
"fulfillmentActivity":{"shape":"FulfillmentActivity"},
|
2007
|
-
"parentIntentSignature":{"shape":"BuiltinIntentSignature"},
|
2008
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
2009
|
-
"createdDate":{"shape":"Timestamp"},
|
2010
|
-
"version":{"shape":"Version"},
|
2011
|
-
"checksum":{"shape":"String"},
|
2012
|
-
"createVersion":{"shape":"Boolean"}
|
2013
|
-
}
|
2014
|
-
},
|
2015
|
-
"PutSlotTypeRequest":{
|
2016
|
-
"type":"structure",
|
2017
|
-
"required":["name"],
|
2018
|
-
"members":{
|
2019
|
-
"name":{
|
2020
|
-
"shape":"SlotTypeName",
|
2021
|
-
"location":"uri",
|
2022
|
-
"locationName":"name"
|
2023
|
-
},
|
2024
|
-
"description":{"shape":"Description"},
|
2025
|
-
"enumerationValues":{"shape":"EnumerationValues"},
|
2026
|
-
"checksum":{"shape":"String"},
|
2027
|
-
"valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"},
|
2028
|
-
"createVersion":{"shape":"Boolean"}
|
2029
|
-
}
|
2030
|
-
},
|
2031
|
-
"PutSlotTypeResponse":{
|
2032
|
-
"type":"structure",
|
2033
|
-
"members":{
|
2034
|
-
"name":{"shape":"SlotTypeName"},
|
2035
|
-
"description":{"shape":"Description"},
|
2036
|
-
"enumerationValues":{"shape":"EnumerationValues"},
|
2037
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
2038
|
-
"createdDate":{"shape":"Timestamp"},
|
2039
|
-
"version":{"shape":"Version"},
|
2040
|
-
"checksum":{"shape":"String"},
|
2041
|
-
"valueSelectionStrategy":{"shape":"SlotValueSelectionStrategy"},
|
2042
|
-
"createVersion":{"shape":"Boolean"}
|
2043
|
-
}
|
2044
|
-
},
|
2045
|
-
"ReferenceType":{
|
2046
|
-
"type":"string",
|
2047
|
-
"enum":[
|
2048
|
-
"Intent",
|
2049
|
-
"Bot",
|
2050
|
-
"BotAlias",
|
2051
|
-
"BotChannel"
|
2052
|
-
]
|
2053
|
-
},
|
2054
|
-
"ResourceInUseException":{
|
2055
|
-
"type":"structure",
|
2056
|
-
"members":{
|
2057
|
-
"referenceType":{"shape":"ReferenceType"},
|
2058
|
-
"exampleReference":{"shape":"ResourceReference"}
|
2059
|
-
},
|
2060
|
-
"error":{"httpStatusCode":400},
|
2061
|
-
"exception":true
|
2062
|
-
},
|
2063
|
-
"ResourceReference":{
|
2064
|
-
"type":"structure",
|
2065
|
-
"members":{
|
2066
|
-
"name":{"shape":"Name"},
|
2067
|
-
"version":{"shape":"Version"}
|
2068
|
-
}
|
2069
|
-
},
|
2070
|
-
"ResourceType":{
|
2071
|
-
"type":"string",
|
2072
|
-
"enum":[
|
2073
|
-
"BOT",
|
2074
|
-
"INTENT",
|
2075
|
-
"SLOT_TYPE"
|
2076
|
-
]
|
2077
|
-
},
|
2078
|
-
"ResponseCard":{
|
2079
|
-
"type":"string",
|
2080
|
-
"max":50000,
|
2081
|
-
"min":1
|
2082
|
-
},
|
2083
|
-
"SessionTTL":{
|
2084
|
-
"type":"integer",
|
2085
|
-
"max":86400,
|
2086
|
-
"min":60
|
2087
|
-
},
|
2088
|
-
"Slot":{
|
2089
|
-
"type":"structure",
|
2090
|
-
"required":[
|
2091
|
-
"name",
|
2092
|
-
"slotConstraint"
|
2093
|
-
],
|
2094
|
-
"members":{
|
2095
|
-
"name":{"shape":"SlotName"},
|
2096
|
-
"description":{"shape":"Description"},
|
2097
|
-
"slotConstraint":{"shape":"SlotConstraint"},
|
2098
|
-
"slotType":{"shape":"CustomOrBuiltinSlotTypeName"},
|
2099
|
-
"slotTypeVersion":{"shape":"Version"},
|
2100
|
-
"valueElicitationPrompt":{"shape":"Prompt"},
|
2101
|
-
"priority":{"shape":"Priority"},
|
2102
|
-
"sampleUtterances":{"shape":"SlotUtteranceList"},
|
2103
|
-
"responseCard":{"shape":"ResponseCard"}
|
2104
|
-
}
|
2105
|
-
},
|
2106
|
-
"SlotConstraint":{
|
2107
|
-
"type":"string",
|
2108
|
-
"enum":[
|
2109
|
-
"Required",
|
2110
|
-
"Optional"
|
2111
|
-
]
|
2112
|
-
},
|
2113
|
-
"SlotList":{
|
2114
|
-
"type":"list",
|
2115
|
-
"member":{"shape":"Slot"},
|
2116
|
-
"max":100,
|
2117
|
-
"min":0
|
2118
|
-
},
|
2119
|
-
"SlotName":{
|
2120
|
-
"type":"string",
|
2121
|
-
"max":100,
|
2122
|
-
"min":1,
|
2123
|
-
"pattern":"^([A-Za-z](-|_|.)?)+$"
|
2124
|
-
},
|
2125
|
-
"SlotTypeMetadata":{
|
2126
|
-
"type":"structure",
|
2127
|
-
"members":{
|
2128
|
-
"name":{"shape":"SlotTypeName"},
|
2129
|
-
"description":{"shape":"Description"},
|
2130
|
-
"lastUpdatedDate":{"shape":"Timestamp"},
|
2131
|
-
"createdDate":{"shape":"Timestamp"},
|
2132
|
-
"version":{"shape":"Version"}
|
2133
|
-
}
|
2134
|
-
},
|
2135
|
-
"SlotTypeMetadataList":{
|
2136
|
-
"type":"list",
|
2137
|
-
"member":{"shape":"SlotTypeMetadata"}
|
2138
|
-
},
|
2139
|
-
"SlotTypeName":{
|
2140
|
-
"type":"string",
|
2141
|
-
"max":100,
|
2142
|
-
"min":1,
|
2143
|
-
"pattern":"^([A-Za-z]_?)+$"
|
2144
|
-
},
|
2145
|
-
"SlotUtteranceList":{
|
2146
|
-
"type":"list",
|
2147
|
-
"member":{"shape":"Utterance"},
|
2148
|
-
"max":10,
|
2149
|
-
"min":0
|
2150
|
-
},
|
2151
|
-
"SlotValueSelectionStrategy":{
|
2152
|
-
"type":"string",
|
2153
|
-
"enum":[
|
2154
|
-
"ORIGINAL_VALUE",
|
2155
|
-
"TOP_RESOLUTION"
|
2156
|
-
]
|
2157
|
-
},
|
2158
|
-
"StartImportRequest":{
|
2159
|
-
"type":"structure",
|
2160
|
-
"required":[
|
2161
|
-
"payload",
|
2162
|
-
"resourceType",
|
2163
|
-
"mergeStrategy"
|
2164
|
-
],
|
2165
|
-
"members":{
|
2166
|
-
"payload":{"shape":"Blob"},
|
2167
|
-
"resourceType":{"shape":"ResourceType"},
|
2168
|
-
"mergeStrategy":{"shape":"MergeStrategy"}
|
2169
|
-
}
|
2170
|
-
},
|
2171
|
-
"StartImportResponse":{
|
2172
|
-
"type":"structure",
|
2173
|
-
"members":{
|
2174
|
-
"name":{"shape":"Name"},
|
2175
|
-
"resourceType":{"shape":"ResourceType"},
|
2176
|
-
"mergeStrategy":{"shape":"MergeStrategy"},
|
2177
|
-
"importId":{"shape":"String"},
|
2178
|
-
"importStatus":{"shape":"ImportStatus"},
|
2179
|
-
"createdDate":{"shape":"Timestamp"}
|
2180
|
-
}
|
2181
|
-
},
|
2182
|
-
"Statement":{
|
2183
|
-
"type":"structure",
|
2184
|
-
"required":["messages"],
|
2185
|
-
"members":{
|
2186
|
-
"messages":{"shape":"MessageList"},
|
2187
|
-
"responseCard":{"shape":"ResponseCard"}
|
2188
|
-
}
|
2189
|
-
},
|
2190
|
-
"Status":{
|
2191
|
-
"type":"string",
|
2192
|
-
"enum":[
|
2193
|
-
"BUILDING",
|
2194
|
-
"READY",
|
2195
|
-
"READY_BASIC_TESTING",
|
2196
|
-
"FAILED",
|
2197
|
-
"NOT_BUILT"
|
2198
|
-
]
|
2199
|
-
},
|
2200
|
-
"StatusType":{
|
2201
|
-
"type":"string",
|
2202
|
-
"enum":[
|
2203
|
-
"Detected",
|
2204
|
-
"Missed"
|
2205
|
-
]
|
2206
|
-
},
|
2207
|
-
"String":{"type":"string"},
|
2208
|
-
"StringList":{
|
2209
|
-
"type":"list",
|
2210
|
-
"member":{"shape":"String"}
|
2211
|
-
},
|
2212
|
-
"SynonymList":{
|
2213
|
-
"type":"list",
|
2214
|
-
"member":{"shape":"Value"}
|
2215
|
-
},
|
2216
|
-
"Timestamp":{"type":"timestamp"},
|
2217
|
-
"UserId":{
|
2218
|
-
"type":"string",
|
2219
|
-
"max":100,
|
2220
|
-
"min":2
|
2221
|
-
},
|
2222
|
-
"Utterance":{
|
2223
|
-
"type":"string",
|
2224
|
-
"max":200,
|
2225
|
-
"min":1
|
2226
|
-
},
|
2227
|
-
"UtteranceData":{
|
2228
|
-
"type":"structure",
|
2229
|
-
"members":{
|
2230
|
-
"utteranceString":{"shape":"UtteranceString"},
|
2231
|
-
"count":{"shape":"Count"},
|
2232
|
-
"distinctUsers":{"shape":"Count"},
|
2233
|
-
"firstUtteredDate":{"shape":"Timestamp"},
|
2234
|
-
"lastUtteredDate":{"shape":"Timestamp"}
|
2235
|
-
}
|
2236
|
-
},
|
2237
|
-
"UtteranceList":{
|
2238
|
-
"type":"structure",
|
2239
|
-
"members":{
|
2240
|
-
"botVersion":{"shape":"Version"},
|
2241
|
-
"utterances":{"shape":"ListOfUtterance"}
|
2242
|
-
}
|
2243
|
-
},
|
2244
|
-
"UtteranceString":{
|
2245
|
-
"type":"string",
|
2246
|
-
"max":2000,
|
2247
|
-
"min":1
|
2248
|
-
},
|
2249
|
-
"Value":{
|
2250
|
-
"type":"string",
|
2251
|
-
"max":140,
|
2252
|
-
"min":1
|
2253
|
-
},
|
2254
|
-
"Version":{
|
2255
|
-
"type":"string",
|
2256
|
-
"max":64,
|
2257
|
-
"min":1,
|
2258
|
-
"pattern":"\\$LATEST|[0-9]+"
|
2259
|
-
}
|
2260
|
-
}
|
2261
|
-
}
|