aws-sdk-core 2.11.366 → 3.64.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 -552
- 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 +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- 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 +1 -1
- 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 +56 -21
- 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 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- 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 +149 -10
- 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 +2 -8
- 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/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 -1042
- 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 -2160
- 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 -257
- 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 -3281
- 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 -2340
- 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 -1128
- 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 -807
- 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 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- 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 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- 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/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 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- 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 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- 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 -1327
- 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 -2066
- 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 -2291
- 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 -25416
- 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 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- 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 -3152
- 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 -896
- 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 -1543
- 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 -1376
- 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 -692
- 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 -3470
- 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 -6294
- 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 -2222
- 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 -1133
- 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 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- 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 -174
- 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 -8292
- 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 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- 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 -1525
- 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 -766
- 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 -1703
- 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 -2080
- 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 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- 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 -6588
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- 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 -2138
- 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 -680
- 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 -6576
- 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 -5257
- 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/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 -670
- 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 -929
- 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 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- 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/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 -857
- 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 -5213
- 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 -299
- 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/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 -104
- 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/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/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 -769
@@ -1,14 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeImagePermissions": {
|
4
|
-
"input_token": "NextToken",
|
5
|
-
"output_token": "NextToken",
|
6
|
-
"limit_key": "MaxResults"
|
7
|
-
},
|
8
|
-
"DescribeImages": {
|
9
|
-
"input_token": "NextToken",
|
10
|
-
"output_token": "NextToken",
|
11
|
-
"limit_key": "MaxResults"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
}
|
@@ -1,55 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"FleetStarted": {
|
5
|
-
"delay": 30,
|
6
|
-
"maxAttempts": 40,
|
7
|
-
"operation": "DescribeFleets",
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"state": "success",
|
11
|
-
"matcher": "pathAll",
|
12
|
-
"argument": "Fleets[].State",
|
13
|
-
"expected": "ACTIVE"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"state": "failure",
|
17
|
-
"matcher": "pathAny",
|
18
|
-
"argument": "Fleets[].State",
|
19
|
-
"expected": "PENDING_DEACTIVATE"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"state": "failure",
|
23
|
-
"matcher": "pathAny",
|
24
|
-
"argument": "Fleets[].State",
|
25
|
-
"expected": "INACTIVE"
|
26
|
-
}
|
27
|
-
]
|
28
|
-
},
|
29
|
-
"FleetStopped": {
|
30
|
-
"delay": 30,
|
31
|
-
"maxAttempts": 40,
|
32
|
-
"operation": "DescribeFleets",
|
33
|
-
"acceptors": [
|
34
|
-
{
|
35
|
-
"state": "success",
|
36
|
-
"matcher": "pathAll",
|
37
|
-
"argument": "Fleets[].State",
|
38
|
-
"expected": "INACTIVE"
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"state": "failure",
|
42
|
-
"matcher": "pathAny",
|
43
|
-
"argument": "Fleets[].State",
|
44
|
-
"expected": "PENDING_ACTIVATE"
|
45
|
-
},
|
46
|
-
{
|
47
|
-
"state": "failure",
|
48
|
-
"matcher": "pathAny",
|
49
|
-
"argument": "Fleets[].State",
|
50
|
-
"expected": "ACTIVE"
|
51
|
-
}
|
52
|
-
]
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
@@ -1,2003 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2017-07-25",
|
5
|
-
"endpointPrefix":"appsync",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceAbbreviation":"AWSAppSync",
|
9
|
-
"serviceFullName":"AWS AppSync",
|
10
|
-
"serviceId":"AppSync",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"signingName":"appsync",
|
13
|
-
"uid":"appsync-2017-07-25"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"CreateApiKey":{
|
17
|
-
"name":"CreateApiKey",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/v1/apis/{apiId}/apikeys"
|
21
|
-
},
|
22
|
-
"input":{"shape":"CreateApiKeyRequest"},
|
23
|
-
"output":{"shape":"CreateApiKeyResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"BadRequestException"},
|
26
|
-
{"shape":"NotFoundException"},
|
27
|
-
{"shape":"LimitExceededException"},
|
28
|
-
{"shape":"UnauthorizedException"},
|
29
|
-
{"shape":"LimitExceededException"},
|
30
|
-
{"shape":"InternalFailureException"},
|
31
|
-
{"shape":"ApiKeyLimitExceededException"},
|
32
|
-
{"shape":"ApiKeyValidityOutOfBoundsException"}
|
33
|
-
]
|
34
|
-
},
|
35
|
-
"CreateDataSource":{
|
36
|
-
"name":"CreateDataSource",
|
37
|
-
"http":{
|
38
|
-
"method":"POST",
|
39
|
-
"requestUri":"/v1/apis/{apiId}/datasources"
|
40
|
-
},
|
41
|
-
"input":{"shape":"CreateDataSourceRequest"},
|
42
|
-
"output":{"shape":"CreateDataSourceResponse"},
|
43
|
-
"errors":[
|
44
|
-
{"shape":"BadRequestException"},
|
45
|
-
{"shape":"ConcurrentModificationException"},
|
46
|
-
{"shape":"NotFoundException"},
|
47
|
-
{"shape":"UnauthorizedException"},
|
48
|
-
{"shape":"InternalFailureException"}
|
49
|
-
]
|
50
|
-
},
|
51
|
-
"CreateFunction":{
|
52
|
-
"name":"CreateFunction",
|
53
|
-
"http":{
|
54
|
-
"method":"POST",
|
55
|
-
"requestUri":"/v1/apis/{apiId}/functions"
|
56
|
-
},
|
57
|
-
"input":{"shape":"CreateFunctionRequest"},
|
58
|
-
"output":{"shape":"CreateFunctionResponse"},
|
59
|
-
"errors":[
|
60
|
-
{"shape":"ConcurrentModificationException"},
|
61
|
-
{"shape":"NotFoundException"},
|
62
|
-
{"shape":"UnauthorizedException"},
|
63
|
-
{"shape":"InternalFailureException"}
|
64
|
-
]
|
65
|
-
},
|
66
|
-
"CreateGraphqlApi":{
|
67
|
-
"name":"CreateGraphqlApi",
|
68
|
-
"http":{
|
69
|
-
"method":"POST",
|
70
|
-
"requestUri":"/v1/apis"
|
71
|
-
},
|
72
|
-
"input":{"shape":"CreateGraphqlApiRequest"},
|
73
|
-
"output":{"shape":"CreateGraphqlApiResponse"},
|
74
|
-
"errors":[
|
75
|
-
{"shape":"BadRequestException"},
|
76
|
-
{"shape":"LimitExceededException"},
|
77
|
-
{"shape":"ConcurrentModificationException"},
|
78
|
-
{"shape":"UnauthorizedException"},
|
79
|
-
{"shape":"InternalFailureException"},
|
80
|
-
{"shape":"ApiLimitExceededException"}
|
81
|
-
]
|
82
|
-
},
|
83
|
-
"CreateResolver":{
|
84
|
-
"name":"CreateResolver",
|
85
|
-
"http":{
|
86
|
-
"method":"POST",
|
87
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}/resolvers"
|
88
|
-
},
|
89
|
-
"input":{"shape":"CreateResolverRequest"},
|
90
|
-
"output":{"shape":"CreateResolverResponse"},
|
91
|
-
"errors":[
|
92
|
-
{"shape":"ConcurrentModificationException"},
|
93
|
-
{"shape":"NotFoundException"},
|
94
|
-
{"shape":"UnauthorizedException"},
|
95
|
-
{"shape":"InternalFailureException"}
|
96
|
-
]
|
97
|
-
},
|
98
|
-
"CreateType":{
|
99
|
-
"name":"CreateType",
|
100
|
-
"http":{
|
101
|
-
"method":"POST",
|
102
|
-
"requestUri":"/v1/apis/{apiId}/types"
|
103
|
-
},
|
104
|
-
"input":{"shape":"CreateTypeRequest"},
|
105
|
-
"output":{"shape":"CreateTypeResponse"},
|
106
|
-
"errors":[
|
107
|
-
{"shape":"BadRequestException"},
|
108
|
-
{"shape":"ConcurrentModificationException"},
|
109
|
-
{"shape":"NotFoundException"},
|
110
|
-
{"shape":"UnauthorizedException"},
|
111
|
-
{"shape":"InternalFailureException"}
|
112
|
-
]
|
113
|
-
},
|
114
|
-
"DeleteApiKey":{
|
115
|
-
"name":"DeleteApiKey",
|
116
|
-
"http":{
|
117
|
-
"method":"DELETE",
|
118
|
-
"requestUri":"/v1/apis/{apiId}/apikeys/{id}"
|
119
|
-
},
|
120
|
-
"input":{"shape":"DeleteApiKeyRequest"},
|
121
|
-
"output":{"shape":"DeleteApiKeyResponse"},
|
122
|
-
"errors":[
|
123
|
-
{"shape":"BadRequestException"},
|
124
|
-
{"shape":"NotFoundException"},
|
125
|
-
{"shape":"UnauthorizedException"},
|
126
|
-
{"shape":"InternalFailureException"}
|
127
|
-
]
|
128
|
-
},
|
129
|
-
"DeleteDataSource":{
|
130
|
-
"name":"DeleteDataSource",
|
131
|
-
"http":{
|
132
|
-
"method":"DELETE",
|
133
|
-
"requestUri":"/v1/apis/{apiId}/datasources/{name}"
|
134
|
-
},
|
135
|
-
"input":{"shape":"DeleteDataSourceRequest"},
|
136
|
-
"output":{"shape":"DeleteDataSourceResponse"},
|
137
|
-
"errors":[
|
138
|
-
{"shape":"BadRequestException"},
|
139
|
-
{"shape":"ConcurrentModificationException"},
|
140
|
-
{"shape":"NotFoundException"},
|
141
|
-
{"shape":"UnauthorizedException"},
|
142
|
-
{"shape":"InternalFailureException"}
|
143
|
-
]
|
144
|
-
},
|
145
|
-
"DeleteFunction":{
|
146
|
-
"name":"DeleteFunction",
|
147
|
-
"http":{
|
148
|
-
"method":"DELETE",
|
149
|
-
"requestUri":"/v1/apis/{apiId}/functions/{functionId}"
|
150
|
-
},
|
151
|
-
"input":{"shape":"DeleteFunctionRequest"},
|
152
|
-
"output":{"shape":"DeleteFunctionResponse"},
|
153
|
-
"errors":[
|
154
|
-
{"shape":"ConcurrentModificationException"},
|
155
|
-
{"shape":"NotFoundException"},
|
156
|
-
{"shape":"UnauthorizedException"},
|
157
|
-
{"shape":"InternalFailureException"}
|
158
|
-
]
|
159
|
-
},
|
160
|
-
"DeleteGraphqlApi":{
|
161
|
-
"name":"DeleteGraphqlApi",
|
162
|
-
"http":{
|
163
|
-
"method":"DELETE",
|
164
|
-
"requestUri":"/v1/apis/{apiId}"
|
165
|
-
},
|
166
|
-
"input":{"shape":"DeleteGraphqlApiRequest"},
|
167
|
-
"output":{"shape":"DeleteGraphqlApiResponse"},
|
168
|
-
"errors":[
|
169
|
-
{"shape":"BadRequestException"},
|
170
|
-
{"shape":"ConcurrentModificationException"},
|
171
|
-
{"shape":"NotFoundException"},
|
172
|
-
{"shape":"UnauthorizedException"},
|
173
|
-
{"shape":"InternalFailureException"},
|
174
|
-
{"shape":"AccessDeniedException"}
|
175
|
-
]
|
176
|
-
},
|
177
|
-
"DeleteResolver":{
|
178
|
-
"name":"DeleteResolver",
|
179
|
-
"http":{
|
180
|
-
"method":"DELETE",
|
181
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}"
|
182
|
-
},
|
183
|
-
"input":{"shape":"DeleteResolverRequest"},
|
184
|
-
"output":{"shape":"DeleteResolverResponse"},
|
185
|
-
"errors":[
|
186
|
-
{"shape":"ConcurrentModificationException"},
|
187
|
-
{"shape":"NotFoundException"},
|
188
|
-
{"shape":"UnauthorizedException"},
|
189
|
-
{"shape":"InternalFailureException"}
|
190
|
-
]
|
191
|
-
},
|
192
|
-
"DeleteType":{
|
193
|
-
"name":"DeleteType",
|
194
|
-
"http":{
|
195
|
-
"method":"DELETE",
|
196
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}"
|
197
|
-
},
|
198
|
-
"input":{"shape":"DeleteTypeRequest"},
|
199
|
-
"output":{"shape":"DeleteTypeResponse"},
|
200
|
-
"errors":[
|
201
|
-
{"shape":"BadRequestException"},
|
202
|
-
{"shape":"ConcurrentModificationException"},
|
203
|
-
{"shape":"NotFoundException"},
|
204
|
-
{"shape":"UnauthorizedException"},
|
205
|
-
{"shape":"InternalFailureException"}
|
206
|
-
]
|
207
|
-
},
|
208
|
-
"GetDataSource":{
|
209
|
-
"name":"GetDataSource",
|
210
|
-
"http":{
|
211
|
-
"method":"GET",
|
212
|
-
"requestUri":"/v1/apis/{apiId}/datasources/{name}"
|
213
|
-
},
|
214
|
-
"input":{"shape":"GetDataSourceRequest"},
|
215
|
-
"output":{"shape":"GetDataSourceResponse"},
|
216
|
-
"errors":[
|
217
|
-
{"shape":"BadRequestException"},
|
218
|
-
{"shape":"ConcurrentModificationException"},
|
219
|
-
{"shape":"NotFoundException"},
|
220
|
-
{"shape":"UnauthorizedException"},
|
221
|
-
{"shape":"InternalFailureException"}
|
222
|
-
]
|
223
|
-
},
|
224
|
-
"GetFunction":{
|
225
|
-
"name":"GetFunction",
|
226
|
-
"http":{
|
227
|
-
"method":"GET",
|
228
|
-
"requestUri":"/v1/apis/{apiId}/functions/{functionId}"
|
229
|
-
},
|
230
|
-
"input":{"shape":"GetFunctionRequest"},
|
231
|
-
"output":{"shape":"GetFunctionResponse"},
|
232
|
-
"errors":[
|
233
|
-
{"shape":"ConcurrentModificationException"},
|
234
|
-
{"shape":"NotFoundException"},
|
235
|
-
{"shape":"UnauthorizedException"}
|
236
|
-
]
|
237
|
-
},
|
238
|
-
"GetGraphqlApi":{
|
239
|
-
"name":"GetGraphqlApi",
|
240
|
-
"http":{
|
241
|
-
"method":"GET",
|
242
|
-
"requestUri":"/v1/apis/{apiId}"
|
243
|
-
},
|
244
|
-
"input":{"shape":"GetGraphqlApiRequest"},
|
245
|
-
"output":{"shape":"GetGraphqlApiResponse"},
|
246
|
-
"errors":[
|
247
|
-
{"shape":"BadRequestException"},
|
248
|
-
{"shape":"NotFoundException"},
|
249
|
-
{"shape":"UnauthorizedException"},
|
250
|
-
{"shape":"InternalFailureException"},
|
251
|
-
{"shape":"AccessDeniedException"}
|
252
|
-
]
|
253
|
-
},
|
254
|
-
"GetIntrospectionSchema":{
|
255
|
-
"name":"GetIntrospectionSchema",
|
256
|
-
"http":{
|
257
|
-
"method":"GET",
|
258
|
-
"requestUri":"/v1/apis/{apiId}/schema"
|
259
|
-
},
|
260
|
-
"input":{"shape":"GetIntrospectionSchemaRequest"},
|
261
|
-
"output":{"shape":"GetIntrospectionSchemaResponse"},
|
262
|
-
"errors":[
|
263
|
-
{"shape":"GraphQLSchemaException"},
|
264
|
-
{"shape":"NotFoundException"},
|
265
|
-
{"shape":"UnauthorizedException"},
|
266
|
-
{"shape":"InternalFailureException"}
|
267
|
-
]
|
268
|
-
},
|
269
|
-
"GetResolver":{
|
270
|
-
"name":"GetResolver",
|
271
|
-
"http":{
|
272
|
-
"method":"GET",
|
273
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}"
|
274
|
-
},
|
275
|
-
"input":{"shape":"GetResolverRequest"},
|
276
|
-
"output":{"shape":"GetResolverResponse"},
|
277
|
-
"errors":[
|
278
|
-
{"shape":"ConcurrentModificationException"},
|
279
|
-
{"shape":"NotFoundException"},
|
280
|
-
{"shape":"UnauthorizedException"}
|
281
|
-
]
|
282
|
-
},
|
283
|
-
"GetSchemaCreationStatus":{
|
284
|
-
"name":"GetSchemaCreationStatus",
|
285
|
-
"http":{
|
286
|
-
"method":"GET",
|
287
|
-
"requestUri":"/v1/apis/{apiId}/schemacreation"
|
288
|
-
},
|
289
|
-
"input":{"shape":"GetSchemaCreationStatusRequest"},
|
290
|
-
"output":{"shape":"GetSchemaCreationStatusResponse"},
|
291
|
-
"errors":[
|
292
|
-
{"shape":"BadRequestException"},
|
293
|
-
{"shape":"NotFoundException"},
|
294
|
-
{"shape":"UnauthorizedException"},
|
295
|
-
{"shape":"InternalFailureException"}
|
296
|
-
]
|
297
|
-
},
|
298
|
-
"GetType":{
|
299
|
-
"name":"GetType",
|
300
|
-
"http":{
|
301
|
-
"method":"GET",
|
302
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}"
|
303
|
-
},
|
304
|
-
"input":{"shape":"GetTypeRequest"},
|
305
|
-
"output":{"shape":"GetTypeResponse"},
|
306
|
-
"errors":[
|
307
|
-
{"shape":"BadRequestException"},
|
308
|
-
{"shape":"ConcurrentModificationException"},
|
309
|
-
{"shape":"NotFoundException"},
|
310
|
-
{"shape":"UnauthorizedException"},
|
311
|
-
{"shape":"InternalFailureException"}
|
312
|
-
]
|
313
|
-
},
|
314
|
-
"ListApiKeys":{
|
315
|
-
"name":"ListApiKeys",
|
316
|
-
"http":{
|
317
|
-
"method":"GET",
|
318
|
-
"requestUri":"/v1/apis/{apiId}/apikeys"
|
319
|
-
},
|
320
|
-
"input":{"shape":"ListApiKeysRequest"},
|
321
|
-
"output":{"shape":"ListApiKeysResponse"},
|
322
|
-
"errors":[
|
323
|
-
{"shape":"BadRequestException"},
|
324
|
-
{"shape":"NotFoundException"},
|
325
|
-
{"shape":"UnauthorizedException"},
|
326
|
-
{"shape":"InternalFailureException"}
|
327
|
-
]
|
328
|
-
},
|
329
|
-
"ListDataSources":{
|
330
|
-
"name":"ListDataSources",
|
331
|
-
"http":{
|
332
|
-
"method":"GET",
|
333
|
-
"requestUri":"/v1/apis/{apiId}/datasources"
|
334
|
-
},
|
335
|
-
"input":{"shape":"ListDataSourcesRequest"},
|
336
|
-
"output":{"shape":"ListDataSourcesResponse"},
|
337
|
-
"errors":[
|
338
|
-
{"shape":"BadRequestException"},
|
339
|
-
{"shape":"NotFoundException"},
|
340
|
-
{"shape":"UnauthorizedException"},
|
341
|
-
{"shape":"InternalFailureException"}
|
342
|
-
]
|
343
|
-
},
|
344
|
-
"ListFunctions":{
|
345
|
-
"name":"ListFunctions",
|
346
|
-
"http":{
|
347
|
-
"method":"GET",
|
348
|
-
"requestUri":"/v1/apis/{apiId}/functions"
|
349
|
-
},
|
350
|
-
"input":{"shape":"ListFunctionsRequest"},
|
351
|
-
"output":{"shape":"ListFunctionsResponse"},
|
352
|
-
"errors":[
|
353
|
-
{"shape":"BadRequestException"},
|
354
|
-
{"shape":"NotFoundException"},
|
355
|
-
{"shape":"UnauthorizedException"},
|
356
|
-
{"shape":"InternalFailureException"}
|
357
|
-
]
|
358
|
-
},
|
359
|
-
"ListGraphqlApis":{
|
360
|
-
"name":"ListGraphqlApis",
|
361
|
-
"http":{
|
362
|
-
"method":"GET",
|
363
|
-
"requestUri":"/v1/apis"
|
364
|
-
},
|
365
|
-
"input":{"shape":"ListGraphqlApisRequest"},
|
366
|
-
"output":{"shape":"ListGraphqlApisResponse"},
|
367
|
-
"errors":[
|
368
|
-
{"shape":"BadRequestException"},
|
369
|
-
{"shape":"UnauthorizedException"},
|
370
|
-
{"shape":"InternalFailureException"}
|
371
|
-
]
|
372
|
-
},
|
373
|
-
"ListResolvers":{
|
374
|
-
"name":"ListResolvers",
|
375
|
-
"http":{
|
376
|
-
"method":"GET",
|
377
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}/resolvers"
|
378
|
-
},
|
379
|
-
"input":{"shape":"ListResolversRequest"},
|
380
|
-
"output":{"shape":"ListResolversResponse"},
|
381
|
-
"errors":[
|
382
|
-
{"shape":"BadRequestException"},
|
383
|
-
{"shape":"NotFoundException"},
|
384
|
-
{"shape":"UnauthorizedException"},
|
385
|
-
{"shape":"InternalFailureException"}
|
386
|
-
]
|
387
|
-
},
|
388
|
-
"ListResolversByFunction":{
|
389
|
-
"name":"ListResolversByFunction",
|
390
|
-
"http":{
|
391
|
-
"method":"GET",
|
392
|
-
"requestUri":"/v1/apis/{apiId}/functions/{functionId}/resolvers"
|
393
|
-
},
|
394
|
-
"input":{"shape":"ListResolversByFunctionRequest"},
|
395
|
-
"output":{"shape":"ListResolversByFunctionResponse"},
|
396
|
-
"errors":[
|
397
|
-
{"shape":"BadRequestException"},
|
398
|
-
{"shape":"NotFoundException"},
|
399
|
-
{"shape":"UnauthorizedException"},
|
400
|
-
{"shape":"InternalFailureException"}
|
401
|
-
]
|
402
|
-
},
|
403
|
-
"ListTagsForResource":{
|
404
|
-
"name":"ListTagsForResource",
|
405
|
-
"http":{
|
406
|
-
"method":"GET",
|
407
|
-
"requestUri":"/v1/tags/{resourceArn}"
|
408
|
-
},
|
409
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
410
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
411
|
-
"errors":[
|
412
|
-
{"shape":"BadRequestException"},
|
413
|
-
{"shape":"NotFoundException"},
|
414
|
-
{"shape":"LimitExceededException"},
|
415
|
-
{"shape":"UnauthorizedException"},
|
416
|
-
{"shape":"InternalFailureException"},
|
417
|
-
{"shape":"AccessDeniedException"}
|
418
|
-
]
|
419
|
-
},
|
420
|
-
"ListTypes":{
|
421
|
-
"name":"ListTypes",
|
422
|
-
"http":{
|
423
|
-
"method":"GET",
|
424
|
-
"requestUri":"/v1/apis/{apiId}/types"
|
425
|
-
},
|
426
|
-
"input":{"shape":"ListTypesRequest"},
|
427
|
-
"output":{"shape":"ListTypesResponse"},
|
428
|
-
"errors":[
|
429
|
-
{"shape":"BadRequestException"},
|
430
|
-
{"shape":"ConcurrentModificationException"},
|
431
|
-
{"shape":"NotFoundException"},
|
432
|
-
{"shape":"UnauthorizedException"},
|
433
|
-
{"shape":"InternalFailureException"}
|
434
|
-
]
|
435
|
-
},
|
436
|
-
"StartSchemaCreation":{
|
437
|
-
"name":"StartSchemaCreation",
|
438
|
-
"http":{
|
439
|
-
"method":"POST",
|
440
|
-
"requestUri":"/v1/apis/{apiId}/schemacreation"
|
441
|
-
},
|
442
|
-
"input":{"shape":"StartSchemaCreationRequest"},
|
443
|
-
"output":{"shape":"StartSchemaCreationResponse"},
|
444
|
-
"errors":[
|
445
|
-
{"shape":"BadRequestException"},
|
446
|
-
{"shape":"ConcurrentModificationException"},
|
447
|
-
{"shape":"NotFoundException"},
|
448
|
-
{"shape":"UnauthorizedException"},
|
449
|
-
{"shape":"InternalFailureException"}
|
450
|
-
]
|
451
|
-
},
|
452
|
-
"TagResource":{
|
453
|
-
"name":"TagResource",
|
454
|
-
"http":{
|
455
|
-
"method":"POST",
|
456
|
-
"requestUri":"/v1/tags/{resourceArn}"
|
457
|
-
},
|
458
|
-
"input":{"shape":"TagResourceRequest"},
|
459
|
-
"output":{"shape":"TagResourceResponse"},
|
460
|
-
"errors":[
|
461
|
-
{"shape":"BadRequestException"},
|
462
|
-
{"shape":"NotFoundException"},
|
463
|
-
{"shape":"LimitExceededException"},
|
464
|
-
{"shape":"UnauthorizedException"},
|
465
|
-
{"shape":"InternalFailureException"},
|
466
|
-
{"shape":"AccessDeniedException"}
|
467
|
-
]
|
468
|
-
},
|
469
|
-
"UntagResource":{
|
470
|
-
"name":"UntagResource",
|
471
|
-
"http":{
|
472
|
-
"method":"DELETE",
|
473
|
-
"requestUri":"/v1/tags/{resourceArn}"
|
474
|
-
},
|
475
|
-
"input":{"shape":"UntagResourceRequest"},
|
476
|
-
"output":{"shape":"UntagResourceResponse"},
|
477
|
-
"errors":[
|
478
|
-
{"shape":"BadRequestException"},
|
479
|
-
{"shape":"NotFoundException"},
|
480
|
-
{"shape":"LimitExceededException"},
|
481
|
-
{"shape":"UnauthorizedException"},
|
482
|
-
{"shape":"InternalFailureException"},
|
483
|
-
{"shape":"AccessDeniedException"}
|
484
|
-
]
|
485
|
-
},
|
486
|
-
"UpdateApiKey":{
|
487
|
-
"name":"UpdateApiKey",
|
488
|
-
"http":{
|
489
|
-
"method":"POST",
|
490
|
-
"requestUri":"/v1/apis/{apiId}/apikeys/{id}"
|
491
|
-
},
|
492
|
-
"input":{"shape":"UpdateApiKeyRequest"},
|
493
|
-
"output":{"shape":"UpdateApiKeyResponse"},
|
494
|
-
"errors":[
|
495
|
-
{"shape":"BadRequestException"},
|
496
|
-
{"shape":"NotFoundException"},
|
497
|
-
{"shape":"UnauthorizedException"},
|
498
|
-
{"shape":"LimitExceededException"},
|
499
|
-
{"shape":"InternalFailureException"},
|
500
|
-
{"shape":"ApiKeyValidityOutOfBoundsException"}
|
501
|
-
]
|
502
|
-
},
|
503
|
-
"UpdateDataSource":{
|
504
|
-
"name":"UpdateDataSource",
|
505
|
-
"http":{
|
506
|
-
"method":"POST",
|
507
|
-
"requestUri":"/v1/apis/{apiId}/datasources/{name}"
|
508
|
-
},
|
509
|
-
"input":{"shape":"UpdateDataSourceRequest"},
|
510
|
-
"output":{"shape":"UpdateDataSourceResponse"},
|
511
|
-
"errors":[
|
512
|
-
{"shape":"BadRequestException"},
|
513
|
-
{"shape":"ConcurrentModificationException"},
|
514
|
-
{"shape":"NotFoundException"},
|
515
|
-
{"shape":"UnauthorizedException"},
|
516
|
-
{"shape":"InternalFailureException"}
|
517
|
-
]
|
518
|
-
},
|
519
|
-
"UpdateFunction":{
|
520
|
-
"name":"UpdateFunction",
|
521
|
-
"http":{
|
522
|
-
"method":"POST",
|
523
|
-
"requestUri":"/v1/apis/{apiId}/functions/{functionId}"
|
524
|
-
},
|
525
|
-
"input":{"shape":"UpdateFunctionRequest"},
|
526
|
-
"output":{"shape":"UpdateFunctionResponse"},
|
527
|
-
"errors":[
|
528
|
-
{"shape":"ConcurrentModificationException"},
|
529
|
-
{"shape":"NotFoundException"},
|
530
|
-
{"shape":"UnauthorizedException"},
|
531
|
-
{"shape":"InternalFailureException"}
|
532
|
-
]
|
533
|
-
},
|
534
|
-
"UpdateGraphqlApi":{
|
535
|
-
"name":"UpdateGraphqlApi",
|
536
|
-
"http":{
|
537
|
-
"method":"POST",
|
538
|
-
"requestUri":"/v1/apis/{apiId}"
|
539
|
-
},
|
540
|
-
"input":{"shape":"UpdateGraphqlApiRequest"},
|
541
|
-
"output":{"shape":"UpdateGraphqlApiResponse"},
|
542
|
-
"errors":[
|
543
|
-
{"shape":"BadRequestException"},
|
544
|
-
{"shape":"ConcurrentModificationException"},
|
545
|
-
{"shape":"NotFoundException"},
|
546
|
-
{"shape":"UnauthorizedException"},
|
547
|
-
{"shape":"InternalFailureException"},
|
548
|
-
{"shape":"AccessDeniedException"}
|
549
|
-
]
|
550
|
-
},
|
551
|
-
"UpdateResolver":{
|
552
|
-
"name":"UpdateResolver",
|
553
|
-
"http":{
|
554
|
-
"method":"POST",
|
555
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}"
|
556
|
-
},
|
557
|
-
"input":{"shape":"UpdateResolverRequest"},
|
558
|
-
"output":{"shape":"UpdateResolverResponse"},
|
559
|
-
"errors":[
|
560
|
-
{"shape":"ConcurrentModificationException"},
|
561
|
-
{"shape":"NotFoundException"},
|
562
|
-
{"shape":"UnauthorizedException"},
|
563
|
-
{"shape":"InternalFailureException"}
|
564
|
-
]
|
565
|
-
},
|
566
|
-
"UpdateType":{
|
567
|
-
"name":"UpdateType",
|
568
|
-
"http":{
|
569
|
-
"method":"POST",
|
570
|
-
"requestUri":"/v1/apis/{apiId}/types/{typeName}"
|
571
|
-
},
|
572
|
-
"input":{"shape":"UpdateTypeRequest"},
|
573
|
-
"output":{"shape":"UpdateTypeResponse"},
|
574
|
-
"errors":[
|
575
|
-
{"shape":"BadRequestException"},
|
576
|
-
{"shape":"ConcurrentModificationException"},
|
577
|
-
{"shape":"NotFoundException"},
|
578
|
-
{"shape":"UnauthorizedException"},
|
579
|
-
{"shape":"InternalFailureException"}
|
580
|
-
]
|
581
|
-
}
|
582
|
-
},
|
583
|
-
"shapes":{
|
584
|
-
"AccessDeniedException":{
|
585
|
-
"type":"structure",
|
586
|
-
"members":{
|
587
|
-
"message":{"shape":"String"}
|
588
|
-
},
|
589
|
-
"error":{"httpStatusCode":403},
|
590
|
-
"exception":true
|
591
|
-
},
|
592
|
-
"AdditionalAuthenticationProvider":{
|
593
|
-
"type":"structure",
|
594
|
-
"members":{
|
595
|
-
"authenticationType":{"shape":"AuthenticationType"},
|
596
|
-
"openIDConnectConfig":{"shape":"OpenIDConnectConfig"},
|
597
|
-
"userPoolConfig":{"shape":"CognitoUserPoolConfig"}
|
598
|
-
}
|
599
|
-
},
|
600
|
-
"AdditionalAuthenticationProviders":{
|
601
|
-
"type":"list",
|
602
|
-
"member":{"shape":"AdditionalAuthenticationProvider"}
|
603
|
-
},
|
604
|
-
"ApiKey":{
|
605
|
-
"type":"structure",
|
606
|
-
"members":{
|
607
|
-
"id":{"shape":"String"},
|
608
|
-
"description":{"shape":"String"},
|
609
|
-
"expires":{"shape":"Long"}
|
610
|
-
}
|
611
|
-
},
|
612
|
-
"ApiKeyLimitExceededException":{
|
613
|
-
"type":"structure",
|
614
|
-
"members":{
|
615
|
-
"message":{"shape":"String"}
|
616
|
-
},
|
617
|
-
"error":{"httpStatusCode":400},
|
618
|
-
"exception":true
|
619
|
-
},
|
620
|
-
"ApiKeyValidityOutOfBoundsException":{
|
621
|
-
"type":"structure",
|
622
|
-
"members":{
|
623
|
-
"message":{"shape":"String"}
|
624
|
-
},
|
625
|
-
"error":{"httpStatusCode":400},
|
626
|
-
"exception":true
|
627
|
-
},
|
628
|
-
"ApiKeys":{
|
629
|
-
"type":"list",
|
630
|
-
"member":{"shape":"ApiKey"}
|
631
|
-
},
|
632
|
-
"ApiLimitExceededException":{
|
633
|
-
"type":"structure",
|
634
|
-
"members":{
|
635
|
-
"message":{"shape":"String"}
|
636
|
-
},
|
637
|
-
"error":{"httpStatusCode":400},
|
638
|
-
"exception":true
|
639
|
-
},
|
640
|
-
"AuthenticationType":{
|
641
|
-
"type":"string",
|
642
|
-
"enum":[
|
643
|
-
"API_KEY",
|
644
|
-
"AWS_IAM",
|
645
|
-
"AMAZON_COGNITO_USER_POOLS",
|
646
|
-
"OPENID_CONNECT"
|
647
|
-
]
|
648
|
-
},
|
649
|
-
"AuthorizationConfig":{
|
650
|
-
"type":"structure",
|
651
|
-
"required":["authorizationType"],
|
652
|
-
"members":{
|
653
|
-
"authorizationType":{"shape":"AuthorizationType"},
|
654
|
-
"awsIamConfig":{"shape":"AwsIamConfig"}
|
655
|
-
}
|
656
|
-
},
|
657
|
-
"AuthorizationType":{
|
658
|
-
"type":"string",
|
659
|
-
"enum":["AWS_IAM"]
|
660
|
-
},
|
661
|
-
"AwsIamConfig":{
|
662
|
-
"type":"structure",
|
663
|
-
"members":{
|
664
|
-
"signingRegion":{"shape":"String"},
|
665
|
-
"signingServiceName":{"shape":"String"}
|
666
|
-
}
|
667
|
-
},
|
668
|
-
"BadRequestException":{
|
669
|
-
"type":"structure",
|
670
|
-
"members":{
|
671
|
-
"message":{"shape":"ErrorMessage"}
|
672
|
-
},
|
673
|
-
"error":{"httpStatusCode":400},
|
674
|
-
"exception":true
|
675
|
-
},
|
676
|
-
"Blob":{"type":"blob"},
|
677
|
-
"Boolean":{"type":"boolean"},
|
678
|
-
"BooleanValue":{"type":"boolean"},
|
679
|
-
"CognitoUserPoolConfig":{
|
680
|
-
"type":"structure",
|
681
|
-
"required":[
|
682
|
-
"userPoolId",
|
683
|
-
"awsRegion"
|
684
|
-
],
|
685
|
-
"members":{
|
686
|
-
"userPoolId":{"shape":"String"},
|
687
|
-
"awsRegion":{"shape":"String"},
|
688
|
-
"appIdClientRegex":{"shape":"String"}
|
689
|
-
}
|
690
|
-
},
|
691
|
-
"ConcurrentModificationException":{
|
692
|
-
"type":"structure",
|
693
|
-
"members":{
|
694
|
-
"message":{"shape":"ErrorMessage"}
|
695
|
-
},
|
696
|
-
"error":{"httpStatusCode":409},
|
697
|
-
"exception":true
|
698
|
-
},
|
699
|
-
"CreateApiKeyRequest":{
|
700
|
-
"type":"structure",
|
701
|
-
"required":["apiId"],
|
702
|
-
"members":{
|
703
|
-
"apiId":{
|
704
|
-
"shape":"String",
|
705
|
-
"location":"uri",
|
706
|
-
"locationName":"apiId"
|
707
|
-
},
|
708
|
-
"description":{"shape":"String"},
|
709
|
-
"expires":{"shape":"Long"}
|
710
|
-
}
|
711
|
-
},
|
712
|
-
"CreateApiKeyResponse":{
|
713
|
-
"type":"structure",
|
714
|
-
"members":{
|
715
|
-
"apiKey":{"shape":"ApiKey"}
|
716
|
-
}
|
717
|
-
},
|
718
|
-
"CreateDataSourceRequest":{
|
719
|
-
"type":"structure",
|
720
|
-
"required":[
|
721
|
-
"apiId",
|
722
|
-
"name",
|
723
|
-
"type"
|
724
|
-
],
|
725
|
-
"members":{
|
726
|
-
"apiId":{
|
727
|
-
"shape":"String",
|
728
|
-
"location":"uri",
|
729
|
-
"locationName":"apiId"
|
730
|
-
},
|
731
|
-
"name":{"shape":"ResourceName"},
|
732
|
-
"description":{"shape":"String"},
|
733
|
-
"type":{"shape":"DataSourceType"},
|
734
|
-
"serviceRoleArn":{"shape":"String"},
|
735
|
-
"dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
|
736
|
-
"lambdaConfig":{"shape":"LambdaDataSourceConfig"},
|
737
|
-
"elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
|
738
|
-
"httpConfig":{"shape":"HttpDataSourceConfig"},
|
739
|
-
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"}
|
740
|
-
}
|
741
|
-
},
|
742
|
-
"CreateDataSourceResponse":{
|
743
|
-
"type":"structure",
|
744
|
-
"members":{
|
745
|
-
"dataSource":{"shape":"DataSource"}
|
746
|
-
}
|
747
|
-
},
|
748
|
-
"CreateFunctionRequest":{
|
749
|
-
"type":"structure",
|
750
|
-
"required":[
|
751
|
-
"apiId",
|
752
|
-
"name",
|
753
|
-
"dataSourceName",
|
754
|
-
"requestMappingTemplate",
|
755
|
-
"functionVersion"
|
756
|
-
],
|
757
|
-
"members":{
|
758
|
-
"apiId":{
|
759
|
-
"shape":"String",
|
760
|
-
"location":"uri",
|
761
|
-
"locationName":"apiId"
|
762
|
-
},
|
763
|
-
"name":{"shape":"ResourceName"},
|
764
|
-
"description":{"shape":"String"},
|
765
|
-
"dataSourceName":{"shape":"ResourceName"},
|
766
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
767
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
768
|
-
"functionVersion":{"shape":"String"}
|
769
|
-
}
|
770
|
-
},
|
771
|
-
"CreateFunctionResponse":{
|
772
|
-
"type":"structure",
|
773
|
-
"members":{
|
774
|
-
"functionConfiguration":{"shape":"FunctionConfiguration"}
|
775
|
-
}
|
776
|
-
},
|
777
|
-
"CreateGraphqlApiRequest":{
|
778
|
-
"type":"structure",
|
779
|
-
"required":[
|
780
|
-
"name",
|
781
|
-
"authenticationType"
|
782
|
-
],
|
783
|
-
"members":{
|
784
|
-
"name":{"shape":"String"},
|
785
|
-
"logConfig":{"shape":"LogConfig"},
|
786
|
-
"authenticationType":{"shape":"AuthenticationType"},
|
787
|
-
"userPoolConfig":{"shape":"UserPoolConfig"},
|
788
|
-
"openIDConnectConfig":{"shape":"OpenIDConnectConfig"},
|
789
|
-
"tags":{"shape":"TagMap"},
|
790
|
-
"additionalAuthenticationProviders":{"shape":"AdditionalAuthenticationProviders"}
|
791
|
-
}
|
792
|
-
},
|
793
|
-
"CreateGraphqlApiResponse":{
|
794
|
-
"type":"structure",
|
795
|
-
"members":{
|
796
|
-
"graphqlApi":{"shape":"GraphqlApi"}
|
797
|
-
}
|
798
|
-
},
|
799
|
-
"CreateResolverRequest":{
|
800
|
-
"type":"structure",
|
801
|
-
"required":[
|
802
|
-
"apiId",
|
803
|
-
"typeName",
|
804
|
-
"fieldName",
|
805
|
-
"requestMappingTemplate"
|
806
|
-
],
|
807
|
-
"members":{
|
808
|
-
"apiId":{
|
809
|
-
"shape":"String",
|
810
|
-
"location":"uri",
|
811
|
-
"locationName":"apiId"
|
812
|
-
},
|
813
|
-
"typeName":{
|
814
|
-
"shape":"ResourceName",
|
815
|
-
"location":"uri",
|
816
|
-
"locationName":"typeName"
|
817
|
-
},
|
818
|
-
"fieldName":{"shape":"ResourceName"},
|
819
|
-
"dataSourceName":{"shape":"ResourceName"},
|
820
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
821
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
822
|
-
"kind":{"shape":"ResolverKind"},
|
823
|
-
"pipelineConfig":{"shape":"PipelineConfig"}
|
824
|
-
}
|
825
|
-
},
|
826
|
-
"CreateResolverResponse":{
|
827
|
-
"type":"structure",
|
828
|
-
"members":{
|
829
|
-
"resolver":{"shape":"Resolver"}
|
830
|
-
}
|
831
|
-
},
|
832
|
-
"CreateTypeRequest":{
|
833
|
-
"type":"structure",
|
834
|
-
"required":[
|
835
|
-
"apiId",
|
836
|
-
"definition",
|
837
|
-
"format"
|
838
|
-
],
|
839
|
-
"members":{
|
840
|
-
"apiId":{
|
841
|
-
"shape":"String",
|
842
|
-
"location":"uri",
|
843
|
-
"locationName":"apiId"
|
844
|
-
},
|
845
|
-
"definition":{"shape":"String"},
|
846
|
-
"format":{"shape":"TypeDefinitionFormat"}
|
847
|
-
}
|
848
|
-
},
|
849
|
-
"CreateTypeResponse":{
|
850
|
-
"type":"structure",
|
851
|
-
"members":{
|
852
|
-
"type":{"shape":"Type"}
|
853
|
-
}
|
854
|
-
},
|
855
|
-
"DataSource":{
|
856
|
-
"type":"structure",
|
857
|
-
"members":{
|
858
|
-
"dataSourceArn":{"shape":"String"},
|
859
|
-
"name":{"shape":"ResourceName"},
|
860
|
-
"description":{"shape":"String"},
|
861
|
-
"type":{"shape":"DataSourceType"},
|
862
|
-
"serviceRoleArn":{"shape":"String"},
|
863
|
-
"dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
|
864
|
-
"lambdaConfig":{"shape":"LambdaDataSourceConfig"},
|
865
|
-
"elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
|
866
|
-
"httpConfig":{"shape":"HttpDataSourceConfig"},
|
867
|
-
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"}
|
868
|
-
}
|
869
|
-
},
|
870
|
-
"DataSourceType":{
|
871
|
-
"type":"string",
|
872
|
-
"enum":[
|
873
|
-
"AWS_LAMBDA",
|
874
|
-
"AMAZON_DYNAMODB",
|
875
|
-
"AMAZON_ELASTICSEARCH",
|
876
|
-
"NONE",
|
877
|
-
"HTTP",
|
878
|
-
"RELATIONAL_DATABASE"
|
879
|
-
]
|
880
|
-
},
|
881
|
-
"DataSources":{
|
882
|
-
"type":"list",
|
883
|
-
"member":{"shape":"DataSource"}
|
884
|
-
},
|
885
|
-
"DefaultAction":{
|
886
|
-
"type":"string",
|
887
|
-
"enum":[
|
888
|
-
"ALLOW",
|
889
|
-
"DENY"
|
890
|
-
]
|
891
|
-
},
|
892
|
-
"DeleteApiKeyRequest":{
|
893
|
-
"type":"structure",
|
894
|
-
"required":[
|
895
|
-
"apiId",
|
896
|
-
"id"
|
897
|
-
],
|
898
|
-
"members":{
|
899
|
-
"apiId":{
|
900
|
-
"shape":"String",
|
901
|
-
"location":"uri",
|
902
|
-
"locationName":"apiId"
|
903
|
-
},
|
904
|
-
"id":{
|
905
|
-
"shape":"String",
|
906
|
-
"location":"uri",
|
907
|
-
"locationName":"id"
|
908
|
-
}
|
909
|
-
}
|
910
|
-
},
|
911
|
-
"DeleteApiKeyResponse":{
|
912
|
-
"type":"structure",
|
913
|
-
"members":{
|
914
|
-
}
|
915
|
-
},
|
916
|
-
"DeleteDataSourceRequest":{
|
917
|
-
"type":"structure",
|
918
|
-
"required":[
|
919
|
-
"apiId",
|
920
|
-
"name"
|
921
|
-
],
|
922
|
-
"members":{
|
923
|
-
"apiId":{
|
924
|
-
"shape":"String",
|
925
|
-
"location":"uri",
|
926
|
-
"locationName":"apiId"
|
927
|
-
},
|
928
|
-
"name":{
|
929
|
-
"shape":"ResourceName",
|
930
|
-
"location":"uri",
|
931
|
-
"locationName":"name"
|
932
|
-
}
|
933
|
-
}
|
934
|
-
},
|
935
|
-
"DeleteDataSourceResponse":{
|
936
|
-
"type":"structure",
|
937
|
-
"members":{
|
938
|
-
}
|
939
|
-
},
|
940
|
-
"DeleteFunctionRequest":{
|
941
|
-
"type":"structure",
|
942
|
-
"required":[
|
943
|
-
"apiId",
|
944
|
-
"functionId"
|
945
|
-
],
|
946
|
-
"members":{
|
947
|
-
"apiId":{
|
948
|
-
"shape":"String",
|
949
|
-
"location":"uri",
|
950
|
-
"locationName":"apiId"
|
951
|
-
},
|
952
|
-
"functionId":{
|
953
|
-
"shape":"ResourceName",
|
954
|
-
"location":"uri",
|
955
|
-
"locationName":"functionId"
|
956
|
-
}
|
957
|
-
}
|
958
|
-
},
|
959
|
-
"DeleteFunctionResponse":{
|
960
|
-
"type":"structure",
|
961
|
-
"members":{
|
962
|
-
}
|
963
|
-
},
|
964
|
-
"DeleteGraphqlApiRequest":{
|
965
|
-
"type":"structure",
|
966
|
-
"required":["apiId"],
|
967
|
-
"members":{
|
968
|
-
"apiId":{
|
969
|
-
"shape":"String",
|
970
|
-
"location":"uri",
|
971
|
-
"locationName":"apiId"
|
972
|
-
}
|
973
|
-
}
|
974
|
-
},
|
975
|
-
"DeleteGraphqlApiResponse":{
|
976
|
-
"type":"structure",
|
977
|
-
"members":{
|
978
|
-
}
|
979
|
-
},
|
980
|
-
"DeleteResolverRequest":{
|
981
|
-
"type":"structure",
|
982
|
-
"required":[
|
983
|
-
"apiId",
|
984
|
-
"typeName",
|
985
|
-
"fieldName"
|
986
|
-
],
|
987
|
-
"members":{
|
988
|
-
"apiId":{
|
989
|
-
"shape":"String",
|
990
|
-
"location":"uri",
|
991
|
-
"locationName":"apiId"
|
992
|
-
},
|
993
|
-
"typeName":{
|
994
|
-
"shape":"ResourceName",
|
995
|
-
"location":"uri",
|
996
|
-
"locationName":"typeName"
|
997
|
-
},
|
998
|
-
"fieldName":{
|
999
|
-
"shape":"ResourceName",
|
1000
|
-
"location":"uri",
|
1001
|
-
"locationName":"fieldName"
|
1002
|
-
}
|
1003
|
-
}
|
1004
|
-
},
|
1005
|
-
"DeleteResolverResponse":{
|
1006
|
-
"type":"structure",
|
1007
|
-
"members":{
|
1008
|
-
}
|
1009
|
-
},
|
1010
|
-
"DeleteTypeRequest":{
|
1011
|
-
"type":"structure",
|
1012
|
-
"required":[
|
1013
|
-
"apiId",
|
1014
|
-
"typeName"
|
1015
|
-
],
|
1016
|
-
"members":{
|
1017
|
-
"apiId":{
|
1018
|
-
"shape":"String",
|
1019
|
-
"location":"uri",
|
1020
|
-
"locationName":"apiId"
|
1021
|
-
},
|
1022
|
-
"typeName":{
|
1023
|
-
"shape":"ResourceName",
|
1024
|
-
"location":"uri",
|
1025
|
-
"locationName":"typeName"
|
1026
|
-
}
|
1027
|
-
}
|
1028
|
-
},
|
1029
|
-
"DeleteTypeResponse":{
|
1030
|
-
"type":"structure",
|
1031
|
-
"members":{
|
1032
|
-
}
|
1033
|
-
},
|
1034
|
-
"DynamodbDataSourceConfig":{
|
1035
|
-
"type":"structure",
|
1036
|
-
"required":[
|
1037
|
-
"tableName",
|
1038
|
-
"awsRegion"
|
1039
|
-
],
|
1040
|
-
"members":{
|
1041
|
-
"tableName":{"shape":"String"},
|
1042
|
-
"awsRegion":{"shape":"String"},
|
1043
|
-
"useCallerCredentials":{"shape":"Boolean"}
|
1044
|
-
}
|
1045
|
-
},
|
1046
|
-
"ElasticsearchDataSourceConfig":{
|
1047
|
-
"type":"structure",
|
1048
|
-
"required":[
|
1049
|
-
"endpoint",
|
1050
|
-
"awsRegion"
|
1051
|
-
],
|
1052
|
-
"members":{
|
1053
|
-
"endpoint":{"shape":"String"},
|
1054
|
-
"awsRegion":{"shape":"String"}
|
1055
|
-
}
|
1056
|
-
},
|
1057
|
-
"ErrorMessage":{"type":"string"},
|
1058
|
-
"FieldLogLevel":{
|
1059
|
-
"type":"string",
|
1060
|
-
"enum":[
|
1061
|
-
"NONE",
|
1062
|
-
"ERROR",
|
1063
|
-
"ALL"
|
1064
|
-
]
|
1065
|
-
},
|
1066
|
-
"FunctionConfiguration":{
|
1067
|
-
"type":"structure",
|
1068
|
-
"members":{
|
1069
|
-
"functionId":{"shape":"String"},
|
1070
|
-
"functionArn":{"shape":"String"},
|
1071
|
-
"name":{"shape":"ResourceName"},
|
1072
|
-
"description":{"shape":"String"},
|
1073
|
-
"dataSourceName":{"shape":"ResourceName"},
|
1074
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
1075
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
1076
|
-
"functionVersion":{"shape":"String"}
|
1077
|
-
}
|
1078
|
-
},
|
1079
|
-
"Functions":{
|
1080
|
-
"type":"list",
|
1081
|
-
"member":{"shape":"FunctionConfiguration"}
|
1082
|
-
},
|
1083
|
-
"FunctionsIds":{
|
1084
|
-
"type":"list",
|
1085
|
-
"member":{"shape":"String"}
|
1086
|
-
},
|
1087
|
-
"GetDataSourceRequest":{
|
1088
|
-
"type":"structure",
|
1089
|
-
"required":[
|
1090
|
-
"apiId",
|
1091
|
-
"name"
|
1092
|
-
],
|
1093
|
-
"members":{
|
1094
|
-
"apiId":{
|
1095
|
-
"shape":"String",
|
1096
|
-
"location":"uri",
|
1097
|
-
"locationName":"apiId"
|
1098
|
-
},
|
1099
|
-
"name":{
|
1100
|
-
"shape":"ResourceName",
|
1101
|
-
"location":"uri",
|
1102
|
-
"locationName":"name"
|
1103
|
-
}
|
1104
|
-
}
|
1105
|
-
},
|
1106
|
-
"GetDataSourceResponse":{
|
1107
|
-
"type":"structure",
|
1108
|
-
"members":{
|
1109
|
-
"dataSource":{"shape":"DataSource"}
|
1110
|
-
}
|
1111
|
-
},
|
1112
|
-
"GetFunctionRequest":{
|
1113
|
-
"type":"structure",
|
1114
|
-
"required":[
|
1115
|
-
"apiId",
|
1116
|
-
"functionId"
|
1117
|
-
],
|
1118
|
-
"members":{
|
1119
|
-
"apiId":{
|
1120
|
-
"shape":"String",
|
1121
|
-
"location":"uri",
|
1122
|
-
"locationName":"apiId"
|
1123
|
-
},
|
1124
|
-
"functionId":{
|
1125
|
-
"shape":"ResourceName",
|
1126
|
-
"location":"uri",
|
1127
|
-
"locationName":"functionId"
|
1128
|
-
}
|
1129
|
-
}
|
1130
|
-
},
|
1131
|
-
"GetFunctionResponse":{
|
1132
|
-
"type":"structure",
|
1133
|
-
"members":{
|
1134
|
-
"functionConfiguration":{"shape":"FunctionConfiguration"}
|
1135
|
-
}
|
1136
|
-
},
|
1137
|
-
"GetGraphqlApiRequest":{
|
1138
|
-
"type":"structure",
|
1139
|
-
"required":["apiId"],
|
1140
|
-
"members":{
|
1141
|
-
"apiId":{
|
1142
|
-
"shape":"String",
|
1143
|
-
"location":"uri",
|
1144
|
-
"locationName":"apiId"
|
1145
|
-
}
|
1146
|
-
}
|
1147
|
-
},
|
1148
|
-
"GetGraphqlApiResponse":{
|
1149
|
-
"type":"structure",
|
1150
|
-
"members":{
|
1151
|
-
"graphqlApi":{"shape":"GraphqlApi"}
|
1152
|
-
}
|
1153
|
-
},
|
1154
|
-
"GetIntrospectionSchemaRequest":{
|
1155
|
-
"type":"structure",
|
1156
|
-
"required":[
|
1157
|
-
"apiId",
|
1158
|
-
"format"
|
1159
|
-
],
|
1160
|
-
"members":{
|
1161
|
-
"apiId":{
|
1162
|
-
"shape":"String",
|
1163
|
-
"location":"uri",
|
1164
|
-
"locationName":"apiId"
|
1165
|
-
},
|
1166
|
-
"format":{
|
1167
|
-
"shape":"OutputType",
|
1168
|
-
"location":"querystring",
|
1169
|
-
"locationName":"format"
|
1170
|
-
},
|
1171
|
-
"includeDirectives":{
|
1172
|
-
"shape":"BooleanValue",
|
1173
|
-
"location":"querystring",
|
1174
|
-
"locationName":"includeDirectives"
|
1175
|
-
}
|
1176
|
-
}
|
1177
|
-
},
|
1178
|
-
"GetIntrospectionSchemaResponse":{
|
1179
|
-
"type":"structure",
|
1180
|
-
"members":{
|
1181
|
-
"schema":{"shape":"Blob"}
|
1182
|
-
},
|
1183
|
-
"payload":"schema"
|
1184
|
-
},
|
1185
|
-
"GetResolverRequest":{
|
1186
|
-
"type":"structure",
|
1187
|
-
"required":[
|
1188
|
-
"apiId",
|
1189
|
-
"typeName",
|
1190
|
-
"fieldName"
|
1191
|
-
],
|
1192
|
-
"members":{
|
1193
|
-
"apiId":{
|
1194
|
-
"shape":"String",
|
1195
|
-
"location":"uri",
|
1196
|
-
"locationName":"apiId"
|
1197
|
-
},
|
1198
|
-
"typeName":{
|
1199
|
-
"shape":"ResourceName",
|
1200
|
-
"location":"uri",
|
1201
|
-
"locationName":"typeName"
|
1202
|
-
},
|
1203
|
-
"fieldName":{
|
1204
|
-
"shape":"ResourceName",
|
1205
|
-
"location":"uri",
|
1206
|
-
"locationName":"fieldName"
|
1207
|
-
}
|
1208
|
-
}
|
1209
|
-
},
|
1210
|
-
"GetResolverResponse":{
|
1211
|
-
"type":"structure",
|
1212
|
-
"members":{
|
1213
|
-
"resolver":{"shape":"Resolver"}
|
1214
|
-
}
|
1215
|
-
},
|
1216
|
-
"GetSchemaCreationStatusRequest":{
|
1217
|
-
"type":"structure",
|
1218
|
-
"required":["apiId"],
|
1219
|
-
"members":{
|
1220
|
-
"apiId":{
|
1221
|
-
"shape":"String",
|
1222
|
-
"location":"uri",
|
1223
|
-
"locationName":"apiId"
|
1224
|
-
}
|
1225
|
-
}
|
1226
|
-
},
|
1227
|
-
"GetSchemaCreationStatusResponse":{
|
1228
|
-
"type":"structure",
|
1229
|
-
"members":{
|
1230
|
-
"status":{"shape":"SchemaStatus"},
|
1231
|
-
"details":{"shape":"String"}
|
1232
|
-
}
|
1233
|
-
},
|
1234
|
-
"GetTypeRequest":{
|
1235
|
-
"type":"structure",
|
1236
|
-
"required":[
|
1237
|
-
"apiId",
|
1238
|
-
"typeName",
|
1239
|
-
"format"
|
1240
|
-
],
|
1241
|
-
"members":{
|
1242
|
-
"apiId":{
|
1243
|
-
"shape":"String",
|
1244
|
-
"location":"uri",
|
1245
|
-
"locationName":"apiId"
|
1246
|
-
},
|
1247
|
-
"typeName":{
|
1248
|
-
"shape":"ResourceName",
|
1249
|
-
"location":"uri",
|
1250
|
-
"locationName":"typeName"
|
1251
|
-
},
|
1252
|
-
"format":{
|
1253
|
-
"shape":"TypeDefinitionFormat",
|
1254
|
-
"location":"querystring",
|
1255
|
-
"locationName":"format"
|
1256
|
-
}
|
1257
|
-
}
|
1258
|
-
},
|
1259
|
-
"GetTypeResponse":{
|
1260
|
-
"type":"structure",
|
1261
|
-
"members":{
|
1262
|
-
"type":{"shape":"Type"}
|
1263
|
-
}
|
1264
|
-
},
|
1265
|
-
"GraphQLSchemaException":{
|
1266
|
-
"type":"structure",
|
1267
|
-
"members":{
|
1268
|
-
"message":{"shape":"ErrorMessage"}
|
1269
|
-
},
|
1270
|
-
"error":{"httpStatusCode":400},
|
1271
|
-
"exception":true
|
1272
|
-
},
|
1273
|
-
"GraphqlApi":{
|
1274
|
-
"type":"structure",
|
1275
|
-
"members":{
|
1276
|
-
"name":{"shape":"ResourceName"},
|
1277
|
-
"apiId":{"shape":"String"},
|
1278
|
-
"authenticationType":{"shape":"AuthenticationType"},
|
1279
|
-
"logConfig":{"shape":"LogConfig"},
|
1280
|
-
"userPoolConfig":{"shape":"UserPoolConfig"},
|
1281
|
-
"openIDConnectConfig":{"shape":"OpenIDConnectConfig"},
|
1282
|
-
"arn":{"shape":"String"},
|
1283
|
-
"uris":{"shape":"MapOfStringToString"},
|
1284
|
-
"tags":{"shape":"TagMap"},
|
1285
|
-
"additionalAuthenticationProviders":{"shape":"AdditionalAuthenticationProviders"}
|
1286
|
-
}
|
1287
|
-
},
|
1288
|
-
"GraphqlApis":{
|
1289
|
-
"type":"list",
|
1290
|
-
"member":{"shape":"GraphqlApi"}
|
1291
|
-
},
|
1292
|
-
"HttpDataSourceConfig":{
|
1293
|
-
"type":"structure",
|
1294
|
-
"members":{
|
1295
|
-
"endpoint":{"shape":"String"},
|
1296
|
-
"authorizationConfig":{"shape":"AuthorizationConfig"}
|
1297
|
-
}
|
1298
|
-
},
|
1299
|
-
"InternalFailureException":{
|
1300
|
-
"type":"structure",
|
1301
|
-
"members":{
|
1302
|
-
"message":{"shape":"String"}
|
1303
|
-
},
|
1304
|
-
"error":{"httpStatusCode":500},
|
1305
|
-
"exception":true,
|
1306
|
-
"fault":true
|
1307
|
-
},
|
1308
|
-
"LambdaDataSourceConfig":{
|
1309
|
-
"type":"structure",
|
1310
|
-
"required":["lambdaFunctionArn"],
|
1311
|
-
"members":{
|
1312
|
-
"lambdaFunctionArn":{"shape":"String"}
|
1313
|
-
}
|
1314
|
-
},
|
1315
|
-
"LimitExceededException":{
|
1316
|
-
"type":"structure",
|
1317
|
-
"members":{
|
1318
|
-
"message":{"shape":"String"}
|
1319
|
-
},
|
1320
|
-
"error":{"httpStatusCode":429},
|
1321
|
-
"exception":true
|
1322
|
-
},
|
1323
|
-
"ListApiKeysRequest":{
|
1324
|
-
"type":"structure",
|
1325
|
-
"required":["apiId"],
|
1326
|
-
"members":{
|
1327
|
-
"apiId":{
|
1328
|
-
"shape":"String",
|
1329
|
-
"location":"uri",
|
1330
|
-
"locationName":"apiId"
|
1331
|
-
},
|
1332
|
-
"nextToken":{
|
1333
|
-
"shape":"PaginationToken",
|
1334
|
-
"location":"querystring",
|
1335
|
-
"locationName":"nextToken"
|
1336
|
-
},
|
1337
|
-
"maxResults":{
|
1338
|
-
"shape":"MaxResults",
|
1339
|
-
"location":"querystring",
|
1340
|
-
"locationName":"maxResults"
|
1341
|
-
}
|
1342
|
-
}
|
1343
|
-
},
|
1344
|
-
"ListApiKeysResponse":{
|
1345
|
-
"type":"structure",
|
1346
|
-
"members":{
|
1347
|
-
"apiKeys":{"shape":"ApiKeys"},
|
1348
|
-
"nextToken":{"shape":"PaginationToken"}
|
1349
|
-
}
|
1350
|
-
},
|
1351
|
-
"ListDataSourcesRequest":{
|
1352
|
-
"type":"structure",
|
1353
|
-
"required":["apiId"],
|
1354
|
-
"members":{
|
1355
|
-
"apiId":{
|
1356
|
-
"shape":"String",
|
1357
|
-
"location":"uri",
|
1358
|
-
"locationName":"apiId"
|
1359
|
-
},
|
1360
|
-
"nextToken":{
|
1361
|
-
"shape":"PaginationToken",
|
1362
|
-
"location":"querystring",
|
1363
|
-
"locationName":"nextToken"
|
1364
|
-
},
|
1365
|
-
"maxResults":{
|
1366
|
-
"shape":"MaxResults",
|
1367
|
-
"location":"querystring",
|
1368
|
-
"locationName":"maxResults"
|
1369
|
-
}
|
1370
|
-
}
|
1371
|
-
},
|
1372
|
-
"ListDataSourcesResponse":{
|
1373
|
-
"type":"structure",
|
1374
|
-
"members":{
|
1375
|
-
"dataSources":{"shape":"DataSources"},
|
1376
|
-
"nextToken":{"shape":"PaginationToken"}
|
1377
|
-
}
|
1378
|
-
},
|
1379
|
-
"ListFunctionsRequest":{
|
1380
|
-
"type":"structure",
|
1381
|
-
"required":["apiId"],
|
1382
|
-
"members":{
|
1383
|
-
"apiId":{
|
1384
|
-
"shape":"String",
|
1385
|
-
"location":"uri",
|
1386
|
-
"locationName":"apiId"
|
1387
|
-
},
|
1388
|
-
"nextToken":{
|
1389
|
-
"shape":"PaginationToken",
|
1390
|
-
"location":"querystring",
|
1391
|
-
"locationName":"nextToken"
|
1392
|
-
},
|
1393
|
-
"maxResults":{
|
1394
|
-
"shape":"MaxResults",
|
1395
|
-
"location":"querystring",
|
1396
|
-
"locationName":"maxResults"
|
1397
|
-
}
|
1398
|
-
}
|
1399
|
-
},
|
1400
|
-
"ListFunctionsResponse":{
|
1401
|
-
"type":"structure",
|
1402
|
-
"members":{
|
1403
|
-
"functions":{"shape":"Functions"},
|
1404
|
-
"nextToken":{"shape":"PaginationToken"}
|
1405
|
-
}
|
1406
|
-
},
|
1407
|
-
"ListGraphqlApisRequest":{
|
1408
|
-
"type":"structure",
|
1409
|
-
"members":{
|
1410
|
-
"nextToken":{
|
1411
|
-
"shape":"PaginationToken",
|
1412
|
-
"location":"querystring",
|
1413
|
-
"locationName":"nextToken"
|
1414
|
-
},
|
1415
|
-
"maxResults":{
|
1416
|
-
"shape":"MaxResults",
|
1417
|
-
"location":"querystring",
|
1418
|
-
"locationName":"maxResults"
|
1419
|
-
}
|
1420
|
-
}
|
1421
|
-
},
|
1422
|
-
"ListGraphqlApisResponse":{
|
1423
|
-
"type":"structure",
|
1424
|
-
"members":{
|
1425
|
-
"graphqlApis":{"shape":"GraphqlApis"},
|
1426
|
-
"nextToken":{"shape":"PaginationToken"}
|
1427
|
-
}
|
1428
|
-
},
|
1429
|
-
"ListResolversByFunctionRequest":{
|
1430
|
-
"type":"structure",
|
1431
|
-
"required":[
|
1432
|
-
"apiId",
|
1433
|
-
"functionId"
|
1434
|
-
],
|
1435
|
-
"members":{
|
1436
|
-
"apiId":{
|
1437
|
-
"shape":"String",
|
1438
|
-
"location":"uri",
|
1439
|
-
"locationName":"apiId"
|
1440
|
-
},
|
1441
|
-
"functionId":{
|
1442
|
-
"shape":"String",
|
1443
|
-
"location":"uri",
|
1444
|
-
"locationName":"functionId"
|
1445
|
-
},
|
1446
|
-
"nextToken":{
|
1447
|
-
"shape":"PaginationToken",
|
1448
|
-
"location":"querystring",
|
1449
|
-
"locationName":"nextToken"
|
1450
|
-
},
|
1451
|
-
"maxResults":{
|
1452
|
-
"shape":"MaxResults",
|
1453
|
-
"location":"querystring",
|
1454
|
-
"locationName":"maxResults"
|
1455
|
-
}
|
1456
|
-
}
|
1457
|
-
},
|
1458
|
-
"ListResolversByFunctionResponse":{
|
1459
|
-
"type":"structure",
|
1460
|
-
"members":{
|
1461
|
-
"resolvers":{"shape":"Resolvers"},
|
1462
|
-
"nextToken":{"shape":"PaginationToken"}
|
1463
|
-
}
|
1464
|
-
},
|
1465
|
-
"ListResolversRequest":{
|
1466
|
-
"type":"structure",
|
1467
|
-
"required":[
|
1468
|
-
"apiId",
|
1469
|
-
"typeName"
|
1470
|
-
],
|
1471
|
-
"members":{
|
1472
|
-
"apiId":{
|
1473
|
-
"shape":"String",
|
1474
|
-
"location":"uri",
|
1475
|
-
"locationName":"apiId"
|
1476
|
-
},
|
1477
|
-
"typeName":{
|
1478
|
-
"shape":"String",
|
1479
|
-
"location":"uri",
|
1480
|
-
"locationName":"typeName"
|
1481
|
-
},
|
1482
|
-
"nextToken":{
|
1483
|
-
"shape":"PaginationToken",
|
1484
|
-
"location":"querystring",
|
1485
|
-
"locationName":"nextToken"
|
1486
|
-
},
|
1487
|
-
"maxResults":{
|
1488
|
-
"shape":"MaxResults",
|
1489
|
-
"location":"querystring",
|
1490
|
-
"locationName":"maxResults"
|
1491
|
-
}
|
1492
|
-
}
|
1493
|
-
},
|
1494
|
-
"ListResolversResponse":{
|
1495
|
-
"type":"structure",
|
1496
|
-
"members":{
|
1497
|
-
"resolvers":{"shape":"Resolvers"},
|
1498
|
-
"nextToken":{"shape":"PaginationToken"}
|
1499
|
-
}
|
1500
|
-
},
|
1501
|
-
"ListTagsForResourceRequest":{
|
1502
|
-
"type":"structure",
|
1503
|
-
"required":["resourceArn"],
|
1504
|
-
"members":{
|
1505
|
-
"resourceArn":{
|
1506
|
-
"shape":"ResourceArn",
|
1507
|
-
"location":"uri",
|
1508
|
-
"locationName":"resourceArn"
|
1509
|
-
}
|
1510
|
-
}
|
1511
|
-
},
|
1512
|
-
"ListTagsForResourceResponse":{
|
1513
|
-
"type":"structure",
|
1514
|
-
"members":{
|
1515
|
-
"tags":{"shape":"TagMap"}
|
1516
|
-
}
|
1517
|
-
},
|
1518
|
-
"ListTypesRequest":{
|
1519
|
-
"type":"structure",
|
1520
|
-
"required":[
|
1521
|
-
"apiId",
|
1522
|
-
"format"
|
1523
|
-
],
|
1524
|
-
"members":{
|
1525
|
-
"apiId":{
|
1526
|
-
"shape":"String",
|
1527
|
-
"location":"uri",
|
1528
|
-
"locationName":"apiId"
|
1529
|
-
},
|
1530
|
-
"format":{
|
1531
|
-
"shape":"TypeDefinitionFormat",
|
1532
|
-
"location":"querystring",
|
1533
|
-
"locationName":"format"
|
1534
|
-
},
|
1535
|
-
"nextToken":{
|
1536
|
-
"shape":"PaginationToken",
|
1537
|
-
"location":"querystring",
|
1538
|
-
"locationName":"nextToken"
|
1539
|
-
},
|
1540
|
-
"maxResults":{
|
1541
|
-
"shape":"MaxResults",
|
1542
|
-
"location":"querystring",
|
1543
|
-
"locationName":"maxResults"
|
1544
|
-
}
|
1545
|
-
}
|
1546
|
-
},
|
1547
|
-
"ListTypesResponse":{
|
1548
|
-
"type":"structure",
|
1549
|
-
"members":{
|
1550
|
-
"types":{"shape":"TypeList"},
|
1551
|
-
"nextToken":{"shape":"PaginationToken"}
|
1552
|
-
}
|
1553
|
-
},
|
1554
|
-
"LogConfig":{
|
1555
|
-
"type":"structure",
|
1556
|
-
"required":[
|
1557
|
-
"fieldLogLevel",
|
1558
|
-
"cloudWatchLogsRoleArn"
|
1559
|
-
],
|
1560
|
-
"members":{
|
1561
|
-
"fieldLogLevel":{"shape":"FieldLogLevel"},
|
1562
|
-
"cloudWatchLogsRoleArn":{"shape":"String"},
|
1563
|
-
"excludeVerboseContent":{"shape":"Boolean"}
|
1564
|
-
}
|
1565
|
-
},
|
1566
|
-
"Long":{"type":"long"},
|
1567
|
-
"MapOfStringToString":{
|
1568
|
-
"type":"map",
|
1569
|
-
"key":{"shape":"String"},
|
1570
|
-
"value":{"shape":"String"}
|
1571
|
-
},
|
1572
|
-
"MappingTemplate":{
|
1573
|
-
"type":"string",
|
1574
|
-
"max":65536,
|
1575
|
-
"min":1
|
1576
|
-
},
|
1577
|
-
"MaxResults":{
|
1578
|
-
"type":"integer",
|
1579
|
-
"max":25,
|
1580
|
-
"min":0
|
1581
|
-
},
|
1582
|
-
"NotFoundException":{
|
1583
|
-
"type":"structure",
|
1584
|
-
"members":{
|
1585
|
-
"message":{"shape":"String"}
|
1586
|
-
},
|
1587
|
-
"error":{"httpStatusCode":404},
|
1588
|
-
"exception":true
|
1589
|
-
},
|
1590
|
-
"OpenIDConnectConfig":{
|
1591
|
-
"type":"structure",
|
1592
|
-
"required":["issuer"],
|
1593
|
-
"members":{
|
1594
|
-
"issuer":{"shape":"String"},
|
1595
|
-
"clientId":{"shape":"String"},
|
1596
|
-
"iatTTL":{"shape":"Long"},
|
1597
|
-
"authTTL":{"shape":"Long"}
|
1598
|
-
}
|
1599
|
-
},
|
1600
|
-
"OutputType":{
|
1601
|
-
"type":"string",
|
1602
|
-
"enum":[
|
1603
|
-
"SDL",
|
1604
|
-
"JSON"
|
1605
|
-
]
|
1606
|
-
},
|
1607
|
-
"PaginationToken":{
|
1608
|
-
"type":"string",
|
1609
|
-
"pattern":"[\\\\S]+"
|
1610
|
-
},
|
1611
|
-
"PipelineConfig":{
|
1612
|
-
"type":"structure",
|
1613
|
-
"members":{
|
1614
|
-
"functions":{"shape":"FunctionsIds"}
|
1615
|
-
}
|
1616
|
-
},
|
1617
|
-
"RdsHttpEndpointConfig":{
|
1618
|
-
"type":"structure",
|
1619
|
-
"members":{
|
1620
|
-
"awsRegion":{"shape":"String"},
|
1621
|
-
"dbClusterIdentifier":{"shape":"String"},
|
1622
|
-
"databaseName":{"shape":"String"},
|
1623
|
-
"schema":{"shape":"String"},
|
1624
|
-
"awsSecretStoreArn":{"shape":"String"}
|
1625
|
-
}
|
1626
|
-
},
|
1627
|
-
"RelationalDatabaseDataSourceConfig":{
|
1628
|
-
"type":"structure",
|
1629
|
-
"members":{
|
1630
|
-
"relationalDatabaseSourceType":{"shape":"RelationalDatabaseSourceType"},
|
1631
|
-
"rdsHttpEndpointConfig":{"shape":"RdsHttpEndpointConfig"}
|
1632
|
-
}
|
1633
|
-
},
|
1634
|
-
"RelationalDatabaseSourceType":{
|
1635
|
-
"type":"string",
|
1636
|
-
"enum":["RDS_HTTP_ENDPOINT"]
|
1637
|
-
},
|
1638
|
-
"Resolver":{
|
1639
|
-
"type":"structure",
|
1640
|
-
"members":{
|
1641
|
-
"typeName":{"shape":"ResourceName"},
|
1642
|
-
"fieldName":{"shape":"ResourceName"},
|
1643
|
-
"dataSourceName":{"shape":"ResourceName"},
|
1644
|
-
"resolverArn":{"shape":"String"},
|
1645
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
1646
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
1647
|
-
"kind":{"shape":"ResolverKind"},
|
1648
|
-
"pipelineConfig":{"shape":"PipelineConfig"}
|
1649
|
-
}
|
1650
|
-
},
|
1651
|
-
"ResolverKind":{
|
1652
|
-
"type":"string",
|
1653
|
-
"enum":[
|
1654
|
-
"UNIT",
|
1655
|
-
"PIPELINE"
|
1656
|
-
]
|
1657
|
-
},
|
1658
|
-
"Resolvers":{
|
1659
|
-
"type":"list",
|
1660
|
-
"member":{"shape":"Resolver"}
|
1661
|
-
},
|
1662
|
-
"ResourceArn":{
|
1663
|
-
"type":"string",
|
1664
|
-
"max":75,
|
1665
|
-
"min":70,
|
1666
|
-
"pattern":"^arn:aws:appsync:[A-Za-z0-9_/.-]{0,63}:\\d{12}:apis/[0-9A-Za-z_-]{26}$"
|
1667
|
-
},
|
1668
|
-
"ResourceName":{
|
1669
|
-
"type":"string",
|
1670
|
-
"pattern":"[_A-Za-z][_0-9A-Za-z]*"
|
1671
|
-
},
|
1672
|
-
"SchemaStatus":{
|
1673
|
-
"type":"string",
|
1674
|
-
"enum":[
|
1675
|
-
"PROCESSING",
|
1676
|
-
"ACTIVE",
|
1677
|
-
"DELETING",
|
1678
|
-
"FAILED",
|
1679
|
-
"SUCCESS",
|
1680
|
-
"NOT_APPLICABLE"
|
1681
|
-
]
|
1682
|
-
},
|
1683
|
-
"StartSchemaCreationRequest":{
|
1684
|
-
"type":"structure",
|
1685
|
-
"required":[
|
1686
|
-
"apiId",
|
1687
|
-
"definition"
|
1688
|
-
],
|
1689
|
-
"members":{
|
1690
|
-
"apiId":{
|
1691
|
-
"shape":"String",
|
1692
|
-
"location":"uri",
|
1693
|
-
"locationName":"apiId"
|
1694
|
-
},
|
1695
|
-
"definition":{"shape":"Blob"}
|
1696
|
-
}
|
1697
|
-
},
|
1698
|
-
"StartSchemaCreationResponse":{
|
1699
|
-
"type":"structure",
|
1700
|
-
"members":{
|
1701
|
-
"status":{"shape":"SchemaStatus"}
|
1702
|
-
}
|
1703
|
-
},
|
1704
|
-
"String":{"type":"string"},
|
1705
|
-
"TagKey":{
|
1706
|
-
"type":"string",
|
1707
|
-
"max":128,
|
1708
|
-
"min":1,
|
1709
|
-
"pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
|
1710
|
-
},
|
1711
|
-
"TagKeyList":{
|
1712
|
-
"type":"list",
|
1713
|
-
"member":{"shape":"TagKey"},
|
1714
|
-
"max":50,
|
1715
|
-
"min":1
|
1716
|
-
},
|
1717
|
-
"TagMap":{
|
1718
|
-
"type":"map",
|
1719
|
-
"key":{"shape":"TagKey"},
|
1720
|
-
"value":{"shape":"TagValue"},
|
1721
|
-
"max":50,
|
1722
|
-
"min":1
|
1723
|
-
},
|
1724
|
-
"TagResourceRequest":{
|
1725
|
-
"type":"structure",
|
1726
|
-
"required":[
|
1727
|
-
"resourceArn",
|
1728
|
-
"tags"
|
1729
|
-
],
|
1730
|
-
"members":{
|
1731
|
-
"resourceArn":{
|
1732
|
-
"shape":"ResourceArn",
|
1733
|
-
"location":"uri",
|
1734
|
-
"locationName":"resourceArn"
|
1735
|
-
},
|
1736
|
-
"tags":{"shape":"TagMap"}
|
1737
|
-
}
|
1738
|
-
},
|
1739
|
-
"TagResourceResponse":{
|
1740
|
-
"type":"structure",
|
1741
|
-
"members":{
|
1742
|
-
}
|
1743
|
-
},
|
1744
|
-
"TagValue":{
|
1745
|
-
"type":"string",
|
1746
|
-
"max":256
|
1747
|
-
},
|
1748
|
-
"Type":{
|
1749
|
-
"type":"structure",
|
1750
|
-
"members":{
|
1751
|
-
"name":{"shape":"ResourceName"},
|
1752
|
-
"description":{"shape":"String"},
|
1753
|
-
"arn":{"shape":"String"},
|
1754
|
-
"definition":{"shape":"String"},
|
1755
|
-
"format":{"shape":"TypeDefinitionFormat"}
|
1756
|
-
}
|
1757
|
-
},
|
1758
|
-
"TypeDefinitionFormat":{
|
1759
|
-
"type":"string",
|
1760
|
-
"enum":[
|
1761
|
-
"SDL",
|
1762
|
-
"JSON"
|
1763
|
-
]
|
1764
|
-
},
|
1765
|
-
"TypeList":{
|
1766
|
-
"type":"list",
|
1767
|
-
"member":{"shape":"Type"}
|
1768
|
-
},
|
1769
|
-
"UnauthorizedException":{
|
1770
|
-
"type":"structure",
|
1771
|
-
"members":{
|
1772
|
-
"message":{"shape":"String"}
|
1773
|
-
},
|
1774
|
-
"error":{"httpStatusCode":401},
|
1775
|
-
"exception":true
|
1776
|
-
},
|
1777
|
-
"UntagResourceRequest":{
|
1778
|
-
"type":"structure",
|
1779
|
-
"required":[
|
1780
|
-
"resourceArn",
|
1781
|
-
"tagKeys"
|
1782
|
-
],
|
1783
|
-
"members":{
|
1784
|
-
"resourceArn":{
|
1785
|
-
"shape":"ResourceArn",
|
1786
|
-
"location":"uri",
|
1787
|
-
"locationName":"resourceArn"
|
1788
|
-
},
|
1789
|
-
"tagKeys":{
|
1790
|
-
"shape":"TagKeyList",
|
1791
|
-
"location":"querystring",
|
1792
|
-
"locationName":"tagKeys"
|
1793
|
-
}
|
1794
|
-
}
|
1795
|
-
},
|
1796
|
-
"UntagResourceResponse":{
|
1797
|
-
"type":"structure",
|
1798
|
-
"members":{
|
1799
|
-
}
|
1800
|
-
},
|
1801
|
-
"UpdateApiKeyRequest":{
|
1802
|
-
"type":"structure",
|
1803
|
-
"required":[
|
1804
|
-
"apiId",
|
1805
|
-
"id"
|
1806
|
-
],
|
1807
|
-
"members":{
|
1808
|
-
"apiId":{
|
1809
|
-
"shape":"String",
|
1810
|
-
"location":"uri",
|
1811
|
-
"locationName":"apiId"
|
1812
|
-
},
|
1813
|
-
"id":{
|
1814
|
-
"shape":"String",
|
1815
|
-
"location":"uri",
|
1816
|
-
"locationName":"id"
|
1817
|
-
},
|
1818
|
-
"description":{"shape":"String"},
|
1819
|
-
"expires":{"shape":"Long"}
|
1820
|
-
}
|
1821
|
-
},
|
1822
|
-
"UpdateApiKeyResponse":{
|
1823
|
-
"type":"structure",
|
1824
|
-
"members":{
|
1825
|
-
"apiKey":{"shape":"ApiKey"}
|
1826
|
-
}
|
1827
|
-
},
|
1828
|
-
"UpdateDataSourceRequest":{
|
1829
|
-
"type":"structure",
|
1830
|
-
"required":[
|
1831
|
-
"apiId",
|
1832
|
-
"name",
|
1833
|
-
"type"
|
1834
|
-
],
|
1835
|
-
"members":{
|
1836
|
-
"apiId":{
|
1837
|
-
"shape":"String",
|
1838
|
-
"location":"uri",
|
1839
|
-
"locationName":"apiId"
|
1840
|
-
},
|
1841
|
-
"name":{
|
1842
|
-
"shape":"ResourceName",
|
1843
|
-
"location":"uri",
|
1844
|
-
"locationName":"name"
|
1845
|
-
},
|
1846
|
-
"description":{"shape":"String"},
|
1847
|
-
"type":{"shape":"DataSourceType"},
|
1848
|
-
"serviceRoleArn":{"shape":"String"},
|
1849
|
-
"dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
|
1850
|
-
"lambdaConfig":{"shape":"LambdaDataSourceConfig"},
|
1851
|
-
"elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
|
1852
|
-
"httpConfig":{"shape":"HttpDataSourceConfig"},
|
1853
|
-
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"}
|
1854
|
-
}
|
1855
|
-
},
|
1856
|
-
"UpdateDataSourceResponse":{
|
1857
|
-
"type":"structure",
|
1858
|
-
"members":{
|
1859
|
-
"dataSource":{"shape":"DataSource"}
|
1860
|
-
}
|
1861
|
-
},
|
1862
|
-
"UpdateFunctionRequest":{
|
1863
|
-
"type":"structure",
|
1864
|
-
"required":[
|
1865
|
-
"apiId",
|
1866
|
-
"name",
|
1867
|
-
"functionId",
|
1868
|
-
"dataSourceName",
|
1869
|
-
"requestMappingTemplate",
|
1870
|
-
"functionVersion"
|
1871
|
-
],
|
1872
|
-
"members":{
|
1873
|
-
"apiId":{
|
1874
|
-
"shape":"String",
|
1875
|
-
"location":"uri",
|
1876
|
-
"locationName":"apiId"
|
1877
|
-
},
|
1878
|
-
"name":{"shape":"ResourceName"},
|
1879
|
-
"description":{"shape":"String"},
|
1880
|
-
"functionId":{
|
1881
|
-
"shape":"ResourceName",
|
1882
|
-
"location":"uri",
|
1883
|
-
"locationName":"functionId"
|
1884
|
-
},
|
1885
|
-
"dataSourceName":{"shape":"ResourceName"},
|
1886
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
1887
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
1888
|
-
"functionVersion":{"shape":"String"}
|
1889
|
-
}
|
1890
|
-
},
|
1891
|
-
"UpdateFunctionResponse":{
|
1892
|
-
"type":"structure",
|
1893
|
-
"members":{
|
1894
|
-
"functionConfiguration":{"shape":"FunctionConfiguration"}
|
1895
|
-
}
|
1896
|
-
},
|
1897
|
-
"UpdateGraphqlApiRequest":{
|
1898
|
-
"type":"structure",
|
1899
|
-
"required":[
|
1900
|
-
"apiId",
|
1901
|
-
"name"
|
1902
|
-
],
|
1903
|
-
"members":{
|
1904
|
-
"apiId":{
|
1905
|
-
"shape":"String",
|
1906
|
-
"location":"uri",
|
1907
|
-
"locationName":"apiId"
|
1908
|
-
},
|
1909
|
-
"name":{"shape":"String"},
|
1910
|
-
"logConfig":{"shape":"LogConfig"},
|
1911
|
-
"authenticationType":{"shape":"AuthenticationType"},
|
1912
|
-
"userPoolConfig":{"shape":"UserPoolConfig"},
|
1913
|
-
"openIDConnectConfig":{"shape":"OpenIDConnectConfig"},
|
1914
|
-
"additionalAuthenticationProviders":{"shape":"AdditionalAuthenticationProviders"}
|
1915
|
-
}
|
1916
|
-
},
|
1917
|
-
"UpdateGraphqlApiResponse":{
|
1918
|
-
"type":"structure",
|
1919
|
-
"members":{
|
1920
|
-
"graphqlApi":{"shape":"GraphqlApi"}
|
1921
|
-
}
|
1922
|
-
},
|
1923
|
-
"UpdateResolverRequest":{
|
1924
|
-
"type":"structure",
|
1925
|
-
"required":[
|
1926
|
-
"apiId",
|
1927
|
-
"typeName",
|
1928
|
-
"fieldName",
|
1929
|
-
"requestMappingTemplate"
|
1930
|
-
],
|
1931
|
-
"members":{
|
1932
|
-
"apiId":{
|
1933
|
-
"shape":"String",
|
1934
|
-
"location":"uri",
|
1935
|
-
"locationName":"apiId"
|
1936
|
-
},
|
1937
|
-
"typeName":{
|
1938
|
-
"shape":"ResourceName",
|
1939
|
-
"location":"uri",
|
1940
|
-
"locationName":"typeName"
|
1941
|
-
},
|
1942
|
-
"fieldName":{
|
1943
|
-
"shape":"ResourceName",
|
1944
|
-
"location":"uri",
|
1945
|
-
"locationName":"fieldName"
|
1946
|
-
},
|
1947
|
-
"dataSourceName":{"shape":"ResourceName"},
|
1948
|
-
"requestMappingTemplate":{"shape":"MappingTemplate"},
|
1949
|
-
"responseMappingTemplate":{"shape":"MappingTemplate"},
|
1950
|
-
"kind":{"shape":"ResolverKind"},
|
1951
|
-
"pipelineConfig":{"shape":"PipelineConfig"}
|
1952
|
-
}
|
1953
|
-
},
|
1954
|
-
"UpdateResolverResponse":{
|
1955
|
-
"type":"structure",
|
1956
|
-
"members":{
|
1957
|
-
"resolver":{"shape":"Resolver"}
|
1958
|
-
}
|
1959
|
-
},
|
1960
|
-
"UpdateTypeRequest":{
|
1961
|
-
"type":"structure",
|
1962
|
-
"required":[
|
1963
|
-
"apiId",
|
1964
|
-
"typeName",
|
1965
|
-
"format"
|
1966
|
-
],
|
1967
|
-
"members":{
|
1968
|
-
"apiId":{
|
1969
|
-
"shape":"String",
|
1970
|
-
"location":"uri",
|
1971
|
-
"locationName":"apiId"
|
1972
|
-
},
|
1973
|
-
"typeName":{
|
1974
|
-
"shape":"ResourceName",
|
1975
|
-
"location":"uri",
|
1976
|
-
"locationName":"typeName"
|
1977
|
-
},
|
1978
|
-
"definition":{"shape":"String"},
|
1979
|
-
"format":{"shape":"TypeDefinitionFormat"}
|
1980
|
-
}
|
1981
|
-
},
|
1982
|
-
"UpdateTypeResponse":{
|
1983
|
-
"type":"structure",
|
1984
|
-
"members":{
|
1985
|
-
"type":{"shape":"Type"}
|
1986
|
-
}
|
1987
|
-
},
|
1988
|
-
"UserPoolConfig":{
|
1989
|
-
"type":"structure",
|
1990
|
-
"required":[
|
1991
|
-
"userPoolId",
|
1992
|
-
"awsRegion",
|
1993
|
-
"defaultAction"
|
1994
|
-
],
|
1995
|
-
"members":{
|
1996
|
-
"userPoolId":{"shape":"String"},
|
1997
|
-
"awsRegion":{"shape":"String"},
|
1998
|
-
"defaultAction":{"shape":"DefaultAction"},
|
1999
|
-
"appIdClientRegex":{"shape":"String"}
|
2000
|
-
}
|
2001
|
-
}
|
2002
|
-
}
|
2003
|
-
}
|