aws-sdk-core 2.11.354 → 3.66.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 +41 -14
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +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 +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -11
- 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/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -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 -1972
- 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 -5382
- 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 -984
- 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 -248
- 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 -1305
- 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 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- 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 -2482
- 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 -25410
- 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 -2899
- 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 -817
- 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 -6291
- 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 -5103
- 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 -4781
- 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 -1881
- 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 -2514
- 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 -1695
- 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 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- 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 -6577
- 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 -175
- 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 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- 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 -5245
- 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 -8914
- 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 -505
- 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 -1699
- 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 -5163
- 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,34 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListDeploymentJobs": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"output_token": "nextToken",
|
6
|
-
"limit_key": "maxResults"
|
7
|
-
},
|
8
|
-
"ListFleets": {
|
9
|
-
"input_token": "nextToken",
|
10
|
-
"output_token": "nextToken",
|
11
|
-
"limit_key": "maxResults"
|
12
|
-
},
|
13
|
-
"ListRobotApplications": {
|
14
|
-
"input_token": "nextToken",
|
15
|
-
"output_token": "nextToken",
|
16
|
-
"limit_key": "maxResults"
|
17
|
-
},
|
18
|
-
"ListRobots": {
|
19
|
-
"input_token": "nextToken",
|
20
|
-
"output_token": "nextToken",
|
21
|
-
"limit_key": "maxResults"
|
22
|
-
},
|
23
|
-
"ListSimulationApplications": {
|
24
|
-
"input_token": "nextToken",
|
25
|
-
"output_token": "nextToken",
|
26
|
-
"limit_key": "maxResults"
|
27
|
-
},
|
28
|
-
"ListSimulationJobs": {
|
29
|
-
"input_token": "nextToken",
|
30
|
-
"output_token": "nextToken",
|
31
|
-
"limit_key": "maxResults"
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
@@ -1,3780 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2013-04-01",
|
5
|
-
"endpointPrefix":"route53",
|
6
|
-
"globalEndpoint":"route53.amazonaws.com",
|
7
|
-
"protocol":"rest-xml",
|
8
|
-
"serviceAbbreviation":"Route 53",
|
9
|
-
"serviceFullName":"Amazon Route 53",
|
10
|
-
"serviceId":"Route 53",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"uid":"route53-2013-04-01"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"AssociateVPCWithHostedZone":{
|
16
|
-
"name":"AssociateVPCWithHostedZone",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/associatevpc"
|
20
|
-
},
|
21
|
-
"input":{
|
22
|
-
"shape":"AssociateVPCWithHostedZoneRequest",
|
23
|
-
"locationName":"AssociateVPCWithHostedZoneRequest",
|
24
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
25
|
-
},
|
26
|
-
"output":{"shape":"AssociateVPCWithHostedZoneResponse"},
|
27
|
-
"errors":[
|
28
|
-
{"shape":"NoSuchHostedZone"},
|
29
|
-
{"shape":"NotAuthorizedException"},
|
30
|
-
{"shape":"InvalidVPCId"},
|
31
|
-
{"shape":"InvalidInput"},
|
32
|
-
{"shape":"PublicZoneVPCAssociation"},
|
33
|
-
{"shape":"ConflictingDomainExists"},
|
34
|
-
{"shape":"LimitsExceeded"}
|
35
|
-
]
|
36
|
-
},
|
37
|
-
"ChangeResourceRecordSets":{
|
38
|
-
"name":"ChangeResourceRecordSets",
|
39
|
-
"http":{
|
40
|
-
"method":"POST",
|
41
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/rrset/"
|
42
|
-
},
|
43
|
-
"input":{
|
44
|
-
"shape":"ChangeResourceRecordSetsRequest",
|
45
|
-
"locationName":"ChangeResourceRecordSetsRequest",
|
46
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
47
|
-
},
|
48
|
-
"output":{"shape":"ChangeResourceRecordSetsResponse"},
|
49
|
-
"errors":[
|
50
|
-
{"shape":"NoSuchHostedZone"},
|
51
|
-
{"shape":"NoSuchHealthCheck"},
|
52
|
-
{"shape":"InvalidChangeBatch"},
|
53
|
-
{"shape":"InvalidInput"},
|
54
|
-
{"shape":"PriorRequestNotComplete"}
|
55
|
-
]
|
56
|
-
},
|
57
|
-
"ChangeTagsForResource":{
|
58
|
-
"name":"ChangeTagsForResource",
|
59
|
-
"http":{
|
60
|
-
"method":"POST",
|
61
|
-
"requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
|
62
|
-
},
|
63
|
-
"input":{
|
64
|
-
"shape":"ChangeTagsForResourceRequest",
|
65
|
-
"locationName":"ChangeTagsForResourceRequest",
|
66
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
67
|
-
},
|
68
|
-
"output":{"shape":"ChangeTagsForResourceResponse"},
|
69
|
-
"errors":[
|
70
|
-
{"shape":"InvalidInput"},
|
71
|
-
{"shape":"NoSuchHealthCheck"},
|
72
|
-
{"shape":"NoSuchHostedZone"},
|
73
|
-
{"shape":"PriorRequestNotComplete"},
|
74
|
-
{"shape":"ThrottlingException"}
|
75
|
-
]
|
76
|
-
},
|
77
|
-
"CreateHealthCheck":{
|
78
|
-
"name":"CreateHealthCheck",
|
79
|
-
"http":{
|
80
|
-
"method":"POST",
|
81
|
-
"requestUri":"/2013-04-01/healthcheck",
|
82
|
-
"responseCode":201
|
83
|
-
},
|
84
|
-
"input":{
|
85
|
-
"shape":"CreateHealthCheckRequest",
|
86
|
-
"locationName":"CreateHealthCheckRequest",
|
87
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
88
|
-
},
|
89
|
-
"output":{"shape":"CreateHealthCheckResponse"},
|
90
|
-
"errors":[
|
91
|
-
{"shape":"TooManyHealthChecks"},
|
92
|
-
{"shape":"HealthCheckAlreadyExists"},
|
93
|
-
{"shape":"InvalidInput"}
|
94
|
-
]
|
95
|
-
},
|
96
|
-
"CreateHostedZone":{
|
97
|
-
"name":"CreateHostedZone",
|
98
|
-
"http":{
|
99
|
-
"method":"POST",
|
100
|
-
"requestUri":"/2013-04-01/hostedzone",
|
101
|
-
"responseCode":201
|
102
|
-
},
|
103
|
-
"input":{
|
104
|
-
"shape":"CreateHostedZoneRequest",
|
105
|
-
"locationName":"CreateHostedZoneRequest",
|
106
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
107
|
-
},
|
108
|
-
"output":{"shape":"CreateHostedZoneResponse"},
|
109
|
-
"errors":[
|
110
|
-
{"shape":"InvalidDomainName"},
|
111
|
-
{"shape":"HostedZoneAlreadyExists"},
|
112
|
-
{"shape":"TooManyHostedZones"},
|
113
|
-
{"shape":"InvalidVPCId"},
|
114
|
-
{"shape":"InvalidInput"},
|
115
|
-
{"shape":"DelegationSetNotAvailable"},
|
116
|
-
{"shape":"ConflictingDomainExists"},
|
117
|
-
{"shape":"NoSuchDelegationSet"},
|
118
|
-
{"shape":"DelegationSetNotReusable"}
|
119
|
-
]
|
120
|
-
},
|
121
|
-
"CreateQueryLoggingConfig":{
|
122
|
-
"name":"CreateQueryLoggingConfig",
|
123
|
-
"http":{
|
124
|
-
"method":"POST",
|
125
|
-
"requestUri":"/2013-04-01/queryloggingconfig",
|
126
|
-
"responseCode":201
|
127
|
-
},
|
128
|
-
"input":{
|
129
|
-
"shape":"CreateQueryLoggingConfigRequest",
|
130
|
-
"locationName":"CreateQueryLoggingConfigRequest",
|
131
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
132
|
-
},
|
133
|
-
"output":{"shape":"CreateQueryLoggingConfigResponse"},
|
134
|
-
"errors":[
|
135
|
-
{"shape":"ConcurrentModification"},
|
136
|
-
{"shape":"NoSuchHostedZone"},
|
137
|
-
{"shape":"NoSuchCloudWatchLogsLogGroup"},
|
138
|
-
{"shape":"InvalidInput"},
|
139
|
-
{"shape":"QueryLoggingConfigAlreadyExists"},
|
140
|
-
{"shape":"InsufficientCloudWatchLogsResourcePolicy"}
|
141
|
-
]
|
142
|
-
},
|
143
|
-
"CreateReusableDelegationSet":{
|
144
|
-
"name":"CreateReusableDelegationSet",
|
145
|
-
"http":{
|
146
|
-
"method":"POST",
|
147
|
-
"requestUri":"/2013-04-01/delegationset",
|
148
|
-
"responseCode":201
|
149
|
-
},
|
150
|
-
"input":{
|
151
|
-
"shape":"CreateReusableDelegationSetRequest",
|
152
|
-
"locationName":"CreateReusableDelegationSetRequest",
|
153
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
154
|
-
},
|
155
|
-
"output":{"shape":"CreateReusableDelegationSetResponse"},
|
156
|
-
"errors":[
|
157
|
-
{"shape":"DelegationSetAlreadyCreated"},
|
158
|
-
{"shape":"LimitsExceeded"},
|
159
|
-
{"shape":"HostedZoneNotFound"},
|
160
|
-
{"shape":"InvalidArgument"},
|
161
|
-
{"shape":"InvalidInput"},
|
162
|
-
{"shape":"DelegationSetNotAvailable"},
|
163
|
-
{"shape":"DelegationSetAlreadyReusable"}
|
164
|
-
]
|
165
|
-
},
|
166
|
-
"CreateTrafficPolicy":{
|
167
|
-
"name":"CreateTrafficPolicy",
|
168
|
-
"http":{
|
169
|
-
"method":"POST",
|
170
|
-
"requestUri":"/2013-04-01/trafficpolicy",
|
171
|
-
"responseCode":201
|
172
|
-
},
|
173
|
-
"input":{
|
174
|
-
"shape":"CreateTrafficPolicyRequest",
|
175
|
-
"locationName":"CreateTrafficPolicyRequest",
|
176
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
177
|
-
},
|
178
|
-
"output":{"shape":"CreateTrafficPolicyResponse"},
|
179
|
-
"errors":[
|
180
|
-
{"shape":"InvalidInput"},
|
181
|
-
{"shape":"TooManyTrafficPolicies"},
|
182
|
-
{"shape":"TrafficPolicyAlreadyExists"},
|
183
|
-
{"shape":"InvalidTrafficPolicyDocument"}
|
184
|
-
]
|
185
|
-
},
|
186
|
-
"CreateTrafficPolicyInstance":{
|
187
|
-
"name":"CreateTrafficPolicyInstance",
|
188
|
-
"http":{
|
189
|
-
"method":"POST",
|
190
|
-
"requestUri":"/2013-04-01/trafficpolicyinstance",
|
191
|
-
"responseCode":201
|
192
|
-
},
|
193
|
-
"input":{
|
194
|
-
"shape":"CreateTrafficPolicyInstanceRequest",
|
195
|
-
"locationName":"CreateTrafficPolicyInstanceRequest",
|
196
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
197
|
-
},
|
198
|
-
"output":{"shape":"CreateTrafficPolicyInstanceResponse"},
|
199
|
-
"errors":[
|
200
|
-
{"shape":"NoSuchHostedZone"},
|
201
|
-
{"shape":"InvalidInput"},
|
202
|
-
{"shape":"TooManyTrafficPolicyInstances"},
|
203
|
-
{"shape":"NoSuchTrafficPolicy"},
|
204
|
-
{"shape":"TrafficPolicyInstanceAlreadyExists"}
|
205
|
-
]
|
206
|
-
},
|
207
|
-
"CreateTrafficPolicyVersion":{
|
208
|
-
"name":"CreateTrafficPolicyVersion",
|
209
|
-
"http":{
|
210
|
-
"method":"POST",
|
211
|
-
"requestUri":"/2013-04-01/trafficpolicy/{Id}",
|
212
|
-
"responseCode":201
|
213
|
-
},
|
214
|
-
"input":{
|
215
|
-
"shape":"CreateTrafficPolicyVersionRequest",
|
216
|
-
"locationName":"CreateTrafficPolicyVersionRequest",
|
217
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
218
|
-
},
|
219
|
-
"output":{"shape":"CreateTrafficPolicyVersionResponse"},
|
220
|
-
"errors":[
|
221
|
-
{"shape":"NoSuchTrafficPolicy"},
|
222
|
-
{"shape":"InvalidInput"},
|
223
|
-
{"shape":"TooManyTrafficPolicyVersionsForCurrentPolicy"},
|
224
|
-
{"shape":"ConcurrentModification"},
|
225
|
-
{"shape":"InvalidTrafficPolicyDocument"}
|
226
|
-
]
|
227
|
-
},
|
228
|
-
"CreateVPCAssociationAuthorization":{
|
229
|
-
"name":"CreateVPCAssociationAuthorization",
|
230
|
-
"http":{
|
231
|
-
"method":"POST",
|
232
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
|
233
|
-
},
|
234
|
-
"input":{
|
235
|
-
"shape":"CreateVPCAssociationAuthorizationRequest",
|
236
|
-
"locationName":"CreateVPCAssociationAuthorizationRequest",
|
237
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
238
|
-
},
|
239
|
-
"output":{"shape":"CreateVPCAssociationAuthorizationResponse"},
|
240
|
-
"errors":[
|
241
|
-
{"shape":"ConcurrentModification"},
|
242
|
-
{"shape":"TooManyVPCAssociationAuthorizations"},
|
243
|
-
{"shape":"NoSuchHostedZone"},
|
244
|
-
{"shape":"InvalidVPCId"},
|
245
|
-
{"shape":"InvalidInput"}
|
246
|
-
]
|
247
|
-
},
|
248
|
-
"DeleteHealthCheck":{
|
249
|
-
"name":"DeleteHealthCheck",
|
250
|
-
"http":{
|
251
|
-
"method":"DELETE",
|
252
|
-
"requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
|
253
|
-
},
|
254
|
-
"input":{"shape":"DeleteHealthCheckRequest"},
|
255
|
-
"output":{"shape":"DeleteHealthCheckResponse"},
|
256
|
-
"errors":[
|
257
|
-
{"shape":"NoSuchHealthCheck"},
|
258
|
-
{"shape":"HealthCheckInUse"},
|
259
|
-
{"shape":"InvalidInput"}
|
260
|
-
]
|
261
|
-
},
|
262
|
-
"DeleteHostedZone":{
|
263
|
-
"name":"DeleteHostedZone",
|
264
|
-
"http":{
|
265
|
-
"method":"DELETE",
|
266
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}"
|
267
|
-
},
|
268
|
-
"input":{"shape":"DeleteHostedZoneRequest"},
|
269
|
-
"output":{"shape":"DeleteHostedZoneResponse"},
|
270
|
-
"errors":[
|
271
|
-
{"shape":"NoSuchHostedZone"},
|
272
|
-
{"shape":"HostedZoneNotEmpty"},
|
273
|
-
{"shape":"PriorRequestNotComplete"},
|
274
|
-
{"shape":"InvalidInput"},
|
275
|
-
{"shape":"InvalidDomainName"}
|
276
|
-
]
|
277
|
-
},
|
278
|
-
"DeleteQueryLoggingConfig":{
|
279
|
-
"name":"DeleteQueryLoggingConfig",
|
280
|
-
"http":{
|
281
|
-
"method":"DELETE",
|
282
|
-
"requestUri":"/2013-04-01/queryloggingconfig/{Id}"
|
283
|
-
},
|
284
|
-
"input":{"shape":"DeleteQueryLoggingConfigRequest"},
|
285
|
-
"output":{"shape":"DeleteQueryLoggingConfigResponse"},
|
286
|
-
"errors":[
|
287
|
-
{"shape":"ConcurrentModification"},
|
288
|
-
{"shape":"NoSuchQueryLoggingConfig"},
|
289
|
-
{"shape":"InvalidInput"}
|
290
|
-
]
|
291
|
-
},
|
292
|
-
"DeleteReusableDelegationSet":{
|
293
|
-
"name":"DeleteReusableDelegationSet",
|
294
|
-
"http":{
|
295
|
-
"method":"DELETE",
|
296
|
-
"requestUri":"/2013-04-01/delegationset/{Id}"
|
297
|
-
},
|
298
|
-
"input":{"shape":"DeleteReusableDelegationSetRequest"},
|
299
|
-
"output":{"shape":"DeleteReusableDelegationSetResponse"},
|
300
|
-
"errors":[
|
301
|
-
{"shape":"NoSuchDelegationSet"},
|
302
|
-
{"shape":"DelegationSetInUse"},
|
303
|
-
{"shape":"DelegationSetNotReusable"},
|
304
|
-
{"shape":"InvalidInput"}
|
305
|
-
]
|
306
|
-
},
|
307
|
-
"DeleteTrafficPolicy":{
|
308
|
-
"name":"DeleteTrafficPolicy",
|
309
|
-
"http":{
|
310
|
-
"method":"DELETE",
|
311
|
-
"requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
|
312
|
-
},
|
313
|
-
"input":{"shape":"DeleteTrafficPolicyRequest"},
|
314
|
-
"output":{"shape":"DeleteTrafficPolicyResponse"},
|
315
|
-
"errors":[
|
316
|
-
{"shape":"NoSuchTrafficPolicy"},
|
317
|
-
{"shape":"InvalidInput"},
|
318
|
-
{"shape":"TrafficPolicyInUse"},
|
319
|
-
{"shape":"ConcurrentModification"}
|
320
|
-
]
|
321
|
-
},
|
322
|
-
"DeleteTrafficPolicyInstance":{
|
323
|
-
"name":"DeleteTrafficPolicyInstance",
|
324
|
-
"http":{
|
325
|
-
"method":"DELETE",
|
326
|
-
"requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
|
327
|
-
},
|
328
|
-
"input":{"shape":"DeleteTrafficPolicyInstanceRequest"},
|
329
|
-
"output":{"shape":"DeleteTrafficPolicyInstanceResponse"},
|
330
|
-
"errors":[
|
331
|
-
{"shape":"NoSuchTrafficPolicyInstance"},
|
332
|
-
{"shape":"InvalidInput"},
|
333
|
-
{"shape":"PriorRequestNotComplete"}
|
334
|
-
]
|
335
|
-
},
|
336
|
-
"DeleteVPCAssociationAuthorization":{
|
337
|
-
"name":"DeleteVPCAssociationAuthorization",
|
338
|
-
"http":{
|
339
|
-
"method":"POST",
|
340
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/deauthorizevpcassociation"
|
341
|
-
},
|
342
|
-
"input":{
|
343
|
-
"shape":"DeleteVPCAssociationAuthorizationRequest",
|
344
|
-
"locationName":"DeleteVPCAssociationAuthorizationRequest",
|
345
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
346
|
-
},
|
347
|
-
"output":{"shape":"DeleteVPCAssociationAuthorizationResponse"},
|
348
|
-
"errors":[
|
349
|
-
{"shape":"ConcurrentModification"},
|
350
|
-
{"shape":"VPCAssociationAuthorizationNotFound"},
|
351
|
-
{"shape":"NoSuchHostedZone"},
|
352
|
-
{"shape":"InvalidVPCId"},
|
353
|
-
{"shape":"InvalidInput"}
|
354
|
-
]
|
355
|
-
},
|
356
|
-
"DisassociateVPCFromHostedZone":{
|
357
|
-
"name":"DisassociateVPCFromHostedZone",
|
358
|
-
"http":{
|
359
|
-
"method":"POST",
|
360
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/disassociatevpc"
|
361
|
-
},
|
362
|
-
"input":{
|
363
|
-
"shape":"DisassociateVPCFromHostedZoneRequest",
|
364
|
-
"locationName":"DisassociateVPCFromHostedZoneRequest",
|
365
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
366
|
-
},
|
367
|
-
"output":{"shape":"DisassociateVPCFromHostedZoneResponse"},
|
368
|
-
"errors":[
|
369
|
-
{"shape":"NoSuchHostedZone"},
|
370
|
-
{"shape":"InvalidVPCId"},
|
371
|
-
{"shape":"VPCAssociationNotFound"},
|
372
|
-
{"shape":"LastVPCAssociation"},
|
373
|
-
{"shape":"InvalidInput"}
|
374
|
-
]
|
375
|
-
},
|
376
|
-
"GetAccountLimit":{
|
377
|
-
"name":"GetAccountLimit",
|
378
|
-
"http":{
|
379
|
-
"method":"GET",
|
380
|
-
"requestUri":"/2013-04-01/accountlimit/{Type}"
|
381
|
-
},
|
382
|
-
"input":{"shape":"GetAccountLimitRequest"},
|
383
|
-
"output":{"shape":"GetAccountLimitResponse"},
|
384
|
-
"errors":[
|
385
|
-
{"shape":"InvalidInput"}
|
386
|
-
]
|
387
|
-
},
|
388
|
-
"GetChange":{
|
389
|
-
"name":"GetChange",
|
390
|
-
"http":{
|
391
|
-
"method":"GET",
|
392
|
-
"requestUri":"/2013-04-01/change/{Id}"
|
393
|
-
},
|
394
|
-
"input":{"shape":"GetChangeRequest"},
|
395
|
-
"output":{"shape":"GetChangeResponse"},
|
396
|
-
"errors":[
|
397
|
-
{"shape":"NoSuchChange"},
|
398
|
-
{"shape":"InvalidInput"}
|
399
|
-
]
|
400
|
-
},
|
401
|
-
"GetCheckerIpRanges":{
|
402
|
-
"name":"GetCheckerIpRanges",
|
403
|
-
"http":{
|
404
|
-
"method":"GET",
|
405
|
-
"requestUri":"/2013-04-01/checkeripranges"
|
406
|
-
},
|
407
|
-
"input":{"shape":"GetCheckerIpRangesRequest"},
|
408
|
-
"output":{"shape":"GetCheckerIpRangesResponse"}
|
409
|
-
},
|
410
|
-
"GetGeoLocation":{
|
411
|
-
"name":"GetGeoLocation",
|
412
|
-
"http":{
|
413
|
-
"method":"GET",
|
414
|
-
"requestUri":"/2013-04-01/geolocation"
|
415
|
-
},
|
416
|
-
"input":{"shape":"GetGeoLocationRequest"},
|
417
|
-
"output":{"shape":"GetGeoLocationResponse"},
|
418
|
-
"errors":[
|
419
|
-
{"shape":"NoSuchGeoLocation"},
|
420
|
-
{"shape":"InvalidInput"}
|
421
|
-
]
|
422
|
-
},
|
423
|
-
"GetHealthCheck":{
|
424
|
-
"name":"GetHealthCheck",
|
425
|
-
"http":{
|
426
|
-
"method":"GET",
|
427
|
-
"requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
|
428
|
-
},
|
429
|
-
"input":{"shape":"GetHealthCheckRequest"},
|
430
|
-
"output":{"shape":"GetHealthCheckResponse"},
|
431
|
-
"errors":[
|
432
|
-
{"shape":"NoSuchHealthCheck"},
|
433
|
-
{"shape":"InvalidInput"},
|
434
|
-
{"shape":"IncompatibleVersion"}
|
435
|
-
]
|
436
|
-
},
|
437
|
-
"GetHealthCheckCount":{
|
438
|
-
"name":"GetHealthCheckCount",
|
439
|
-
"http":{
|
440
|
-
"method":"GET",
|
441
|
-
"requestUri":"/2013-04-01/healthcheckcount"
|
442
|
-
},
|
443
|
-
"input":{"shape":"GetHealthCheckCountRequest"},
|
444
|
-
"output":{"shape":"GetHealthCheckCountResponse"}
|
445
|
-
},
|
446
|
-
"GetHealthCheckLastFailureReason":{
|
447
|
-
"name":"GetHealthCheckLastFailureReason",
|
448
|
-
"http":{
|
449
|
-
"method":"GET",
|
450
|
-
"requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason"
|
451
|
-
},
|
452
|
-
"input":{"shape":"GetHealthCheckLastFailureReasonRequest"},
|
453
|
-
"output":{"shape":"GetHealthCheckLastFailureReasonResponse"},
|
454
|
-
"errors":[
|
455
|
-
{"shape":"NoSuchHealthCheck"},
|
456
|
-
{"shape":"InvalidInput"}
|
457
|
-
]
|
458
|
-
},
|
459
|
-
"GetHealthCheckStatus":{
|
460
|
-
"name":"GetHealthCheckStatus",
|
461
|
-
"http":{
|
462
|
-
"method":"GET",
|
463
|
-
"requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/status"
|
464
|
-
},
|
465
|
-
"input":{"shape":"GetHealthCheckStatusRequest"},
|
466
|
-
"output":{"shape":"GetHealthCheckStatusResponse"},
|
467
|
-
"errors":[
|
468
|
-
{"shape":"NoSuchHealthCheck"},
|
469
|
-
{"shape":"InvalidInput"}
|
470
|
-
]
|
471
|
-
},
|
472
|
-
"GetHostedZone":{
|
473
|
-
"name":"GetHostedZone",
|
474
|
-
"http":{
|
475
|
-
"method":"GET",
|
476
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}"
|
477
|
-
},
|
478
|
-
"input":{"shape":"GetHostedZoneRequest"},
|
479
|
-
"output":{"shape":"GetHostedZoneResponse"},
|
480
|
-
"errors":[
|
481
|
-
{"shape":"NoSuchHostedZone"},
|
482
|
-
{"shape":"InvalidInput"}
|
483
|
-
]
|
484
|
-
},
|
485
|
-
"GetHostedZoneCount":{
|
486
|
-
"name":"GetHostedZoneCount",
|
487
|
-
"http":{
|
488
|
-
"method":"GET",
|
489
|
-
"requestUri":"/2013-04-01/hostedzonecount"
|
490
|
-
},
|
491
|
-
"input":{"shape":"GetHostedZoneCountRequest"},
|
492
|
-
"output":{"shape":"GetHostedZoneCountResponse"},
|
493
|
-
"errors":[
|
494
|
-
{"shape":"InvalidInput"}
|
495
|
-
]
|
496
|
-
},
|
497
|
-
"GetHostedZoneLimit":{
|
498
|
-
"name":"GetHostedZoneLimit",
|
499
|
-
"http":{
|
500
|
-
"method":"GET",
|
501
|
-
"requestUri":"/2013-04-01/hostedzonelimit/{Id}/{Type}"
|
502
|
-
},
|
503
|
-
"input":{"shape":"GetHostedZoneLimitRequest"},
|
504
|
-
"output":{"shape":"GetHostedZoneLimitResponse"},
|
505
|
-
"errors":[
|
506
|
-
{"shape":"NoSuchHostedZone"},
|
507
|
-
{"shape":"InvalidInput"},
|
508
|
-
{"shape":"HostedZoneNotPrivate"}
|
509
|
-
]
|
510
|
-
},
|
511
|
-
"GetQueryLoggingConfig":{
|
512
|
-
"name":"GetQueryLoggingConfig",
|
513
|
-
"http":{
|
514
|
-
"method":"GET",
|
515
|
-
"requestUri":"/2013-04-01/queryloggingconfig/{Id}"
|
516
|
-
},
|
517
|
-
"input":{"shape":"GetQueryLoggingConfigRequest"},
|
518
|
-
"output":{"shape":"GetQueryLoggingConfigResponse"},
|
519
|
-
"errors":[
|
520
|
-
{"shape":"NoSuchQueryLoggingConfig"},
|
521
|
-
{"shape":"InvalidInput"}
|
522
|
-
]
|
523
|
-
},
|
524
|
-
"GetReusableDelegationSet":{
|
525
|
-
"name":"GetReusableDelegationSet",
|
526
|
-
"http":{
|
527
|
-
"method":"GET",
|
528
|
-
"requestUri":"/2013-04-01/delegationset/{Id}"
|
529
|
-
},
|
530
|
-
"input":{"shape":"GetReusableDelegationSetRequest"},
|
531
|
-
"output":{"shape":"GetReusableDelegationSetResponse"},
|
532
|
-
"errors":[
|
533
|
-
{"shape":"NoSuchDelegationSet"},
|
534
|
-
{"shape":"DelegationSetNotReusable"},
|
535
|
-
{"shape":"InvalidInput"}
|
536
|
-
]
|
537
|
-
},
|
538
|
-
"GetReusableDelegationSetLimit":{
|
539
|
-
"name":"GetReusableDelegationSetLimit",
|
540
|
-
"http":{
|
541
|
-
"method":"GET",
|
542
|
-
"requestUri":"/2013-04-01/reusabledelegationsetlimit/{Id}/{Type}"
|
543
|
-
},
|
544
|
-
"input":{"shape":"GetReusableDelegationSetLimitRequest"},
|
545
|
-
"output":{"shape":"GetReusableDelegationSetLimitResponse"},
|
546
|
-
"errors":[
|
547
|
-
{"shape":"InvalidInput"},
|
548
|
-
{"shape":"NoSuchDelegationSet"}
|
549
|
-
]
|
550
|
-
},
|
551
|
-
"GetTrafficPolicy":{
|
552
|
-
"name":"GetTrafficPolicy",
|
553
|
-
"http":{
|
554
|
-
"method":"GET",
|
555
|
-
"requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
|
556
|
-
},
|
557
|
-
"input":{"shape":"GetTrafficPolicyRequest"},
|
558
|
-
"output":{"shape":"GetTrafficPolicyResponse"},
|
559
|
-
"errors":[
|
560
|
-
{"shape":"NoSuchTrafficPolicy"},
|
561
|
-
{"shape":"InvalidInput"}
|
562
|
-
]
|
563
|
-
},
|
564
|
-
"GetTrafficPolicyInstance":{
|
565
|
-
"name":"GetTrafficPolicyInstance",
|
566
|
-
"http":{
|
567
|
-
"method":"GET",
|
568
|
-
"requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
|
569
|
-
},
|
570
|
-
"input":{"shape":"GetTrafficPolicyInstanceRequest"},
|
571
|
-
"output":{"shape":"GetTrafficPolicyInstanceResponse"},
|
572
|
-
"errors":[
|
573
|
-
{"shape":"NoSuchTrafficPolicyInstance"},
|
574
|
-
{"shape":"InvalidInput"}
|
575
|
-
]
|
576
|
-
},
|
577
|
-
"GetTrafficPolicyInstanceCount":{
|
578
|
-
"name":"GetTrafficPolicyInstanceCount",
|
579
|
-
"http":{
|
580
|
-
"method":"GET",
|
581
|
-
"requestUri":"/2013-04-01/trafficpolicyinstancecount"
|
582
|
-
},
|
583
|
-
"input":{"shape":"GetTrafficPolicyInstanceCountRequest"},
|
584
|
-
"output":{"shape":"GetTrafficPolicyInstanceCountResponse"}
|
585
|
-
},
|
586
|
-
"ListGeoLocations":{
|
587
|
-
"name":"ListGeoLocations",
|
588
|
-
"http":{
|
589
|
-
"method":"GET",
|
590
|
-
"requestUri":"/2013-04-01/geolocations"
|
591
|
-
},
|
592
|
-
"input":{"shape":"ListGeoLocationsRequest"},
|
593
|
-
"output":{"shape":"ListGeoLocationsResponse"},
|
594
|
-
"errors":[
|
595
|
-
{"shape":"InvalidInput"}
|
596
|
-
]
|
597
|
-
},
|
598
|
-
"ListHealthChecks":{
|
599
|
-
"name":"ListHealthChecks",
|
600
|
-
"http":{
|
601
|
-
"method":"GET",
|
602
|
-
"requestUri":"/2013-04-01/healthcheck"
|
603
|
-
},
|
604
|
-
"input":{"shape":"ListHealthChecksRequest"},
|
605
|
-
"output":{"shape":"ListHealthChecksResponse"},
|
606
|
-
"errors":[
|
607
|
-
{"shape":"InvalidInput"},
|
608
|
-
{"shape":"IncompatibleVersion"}
|
609
|
-
]
|
610
|
-
},
|
611
|
-
"ListHostedZones":{
|
612
|
-
"name":"ListHostedZones",
|
613
|
-
"http":{
|
614
|
-
"method":"GET",
|
615
|
-
"requestUri":"/2013-04-01/hostedzone"
|
616
|
-
},
|
617
|
-
"input":{"shape":"ListHostedZonesRequest"},
|
618
|
-
"output":{"shape":"ListHostedZonesResponse"},
|
619
|
-
"errors":[
|
620
|
-
{"shape":"InvalidInput"},
|
621
|
-
{"shape":"NoSuchDelegationSet"},
|
622
|
-
{"shape":"DelegationSetNotReusable"}
|
623
|
-
]
|
624
|
-
},
|
625
|
-
"ListHostedZonesByName":{
|
626
|
-
"name":"ListHostedZonesByName",
|
627
|
-
"http":{
|
628
|
-
"method":"GET",
|
629
|
-
"requestUri":"/2013-04-01/hostedzonesbyname"
|
630
|
-
},
|
631
|
-
"input":{"shape":"ListHostedZonesByNameRequest"},
|
632
|
-
"output":{"shape":"ListHostedZonesByNameResponse"},
|
633
|
-
"errors":[
|
634
|
-
{"shape":"InvalidInput"},
|
635
|
-
{"shape":"InvalidDomainName"}
|
636
|
-
]
|
637
|
-
},
|
638
|
-
"ListQueryLoggingConfigs":{
|
639
|
-
"name":"ListQueryLoggingConfigs",
|
640
|
-
"http":{
|
641
|
-
"method":"GET",
|
642
|
-
"requestUri":"/2013-04-01/queryloggingconfig"
|
643
|
-
},
|
644
|
-
"input":{"shape":"ListQueryLoggingConfigsRequest"},
|
645
|
-
"output":{"shape":"ListQueryLoggingConfigsResponse"},
|
646
|
-
"errors":[
|
647
|
-
{"shape":"InvalidInput"},
|
648
|
-
{"shape":"InvalidPaginationToken"},
|
649
|
-
{"shape":"NoSuchHostedZone"}
|
650
|
-
]
|
651
|
-
},
|
652
|
-
"ListResourceRecordSets":{
|
653
|
-
"name":"ListResourceRecordSets",
|
654
|
-
"http":{
|
655
|
-
"method":"GET",
|
656
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/rrset"
|
657
|
-
},
|
658
|
-
"input":{"shape":"ListResourceRecordSetsRequest"},
|
659
|
-
"output":{"shape":"ListResourceRecordSetsResponse"},
|
660
|
-
"errors":[
|
661
|
-
{"shape":"NoSuchHostedZone"},
|
662
|
-
{"shape":"InvalidInput"}
|
663
|
-
]
|
664
|
-
},
|
665
|
-
"ListReusableDelegationSets":{
|
666
|
-
"name":"ListReusableDelegationSets",
|
667
|
-
"http":{
|
668
|
-
"method":"GET",
|
669
|
-
"requestUri":"/2013-04-01/delegationset"
|
670
|
-
},
|
671
|
-
"input":{"shape":"ListReusableDelegationSetsRequest"},
|
672
|
-
"output":{"shape":"ListReusableDelegationSetsResponse"},
|
673
|
-
"errors":[
|
674
|
-
{"shape":"InvalidInput"}
|
675
|
-
]
|
676
|
-
},
|
677
|
-
"ListTagsForResource":{
|
678
|
-
"name":"ListTagsForResource",
|
679
|
-
"http":{
|
680
|
-
"method":"GET",
|
681
|
-
"requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
|
682
|
-
},
|
683
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
684
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
685
|
-
"errors":[
|
686
|
-
{"shape":"InvalidInput"},
|
687
|
-
{"shape":"NoSuchHealthCheck"},
|
688
|
-
{"shape":"NoSuchHostedZone"},
|
689
|
-
{"shape":"PriorRequestNotComplete"},
|
690
|
-
{"shape":"ThrottlingException"}
|
691
|
-
]
|
692
|
-
},
|
693
|
-
"ListTagsForResources":{
|
694
|
-
"name":"ListTagsForResources",
|
695
|
-
"http":{
|
696
|
-
"method":"POST",
|
697
|
-
"requestUri":"/2013-04-01/tags/{ResourceType}"
|
698
|
-
},
|
699
|
-
"input":{
|
700
|
-
"shape":"ListTagsForResourcesRequest",
|
701
|
-
"locationName":"ListTagsForResourcesRequest",
|
702
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
703
|
-
},
|
704
|
-
"output":{"shape":"ListTagsForResourcesResponse"},
|
705
|
-
"errors":[
|
706
|
-
{"shape":"InvalidInput"},
|
707
|
-
{"shape":"NoSuchHealthCheck"},
|
708
|
-
{"shape":"NoSuchHostedZone"},
|
709
|
-
{"shape":"PriorRequestNotComplete"},
|
710
|
-
{"shape":"ThrottlingException"}
|
711
|
-
]
|
712
|
-
},
|
713
|
-
"ListTrafficPolicies":{
|
714
|
-
"name":"ListTrafficPolicies",
|
715
|
-
"http":{
|
716
|
-
"method":"GET",
|
717
|
-
"requestUri":"/2013-04-01/trafficpolicies"
|
718
|
-
},
|
719
|
-
"input":{"shape":"ListTrafficPoliciesRequest"},
|
720
|
-
"output":{"shape":"ListTrafficPoliciesResponse"},
|
721
|
-
"errors":[
|
722
|
-
{"shape":"InvalidInput"}
|
723
|
-
]
|
724
|
-
},
|
725
|
-
"ListTrafficPolicyInstances":{
|
726
|
-
"name":"ListTrafficPolicyInstances",
|
727
|
-
"http":{
|
728
|
-
"method":"GET",
|
729
|
-
"requestUri":"/2013-04-01/trafficpolicyinstances"
|
730
|
-
},
|
731
|
-
"input":{"shape":"ListTrafficPolicyInstancesRequest"},
|
732
|
-
"output":{"shape":"ListTrafficPolicyInstancesResponse"},
|
733
|
-
"errors":[
|
734
|
-
{"shape":"InvalidInput"},
|
735
|
-
{"shape":"NoSuchTrafficPolicyInstance"}
|
736
|
-
]
|
737
|
-
},
|
738
|
-
"ListTrafficPolicyInstancesByHostedZone":{
|
739
|
-
"name":"ListTrafficPolicyInstancesByHostedZone",
|
740
|
-
"http":{
|
741
|
-
"method":"GET",
|
742
|
-
"requestUri":"/2013-04-01/trafficpolicyinstances/hostedzone"
|
743
|
-
},
|
744
|
-
"input":{"shape":"ListTrafficPolicyInstancesByHostedZoneRequest"},
|
745
|
-
"output":{"shape":"ListTrafficPolicyInstancesByHostedZoneResponse"},
|
746
|
-
"errors":[
|
747
|
-
{"shape":"InvalidInput"},
|
748
|
-
{"shape":"NoSuchTrafficPolicyInstance"},
|
749
|
-
{"shape":"NoSuchHostedZone"}
|
750
|
-
]
|
751
|
-
},
|
752
|
-
"ListTrafficPolicyInstancesByPolicy":{
|
753
|
-
"name":"ListTrafficPolicyInstancesByPolicy",
|
754
|
-
"http":{
|
755
|
-
"method":"GET",
|
756
|
-
"requestUri":"/2013-04-01/trafficpolicyinstances/trafficpolicy"
|
757
|
-
},
|
758
|
-
"input":{"shape":"ListTrafficPolicyInstancesByPolicyRequest"},
|
759
|
-
"output":{"shape":"ListTrafficPolicyInstancesByPolicyResponse"},
|
760
|
-
"errors":[
|
761
|
-
{"shape":"InvalidInput"},
|
762
|
-
{"shape":"NoSuchTrafficPolicyInstance"},
|
763
|
-
{"shape":"NoSuchTrafficPolicy"}
|
764
|
-
]
|
765
|
-
},
|
766
|
-
"ListTrafficPolicyVersions":{
|
767
|
-
"name":"ListTrafficPolicyVersions",
|
768
|
-
"http":{
|
769
|
-
"method":"GET",
|
770
|
-
"requestUri":"/2013-04-01/trafficpolicies/{Id}/versions"
|
771
|
-
},
|
772
|
-
"input":{"shape":"ListTrafficPolicyVersionsRequest"},
|
773
|
-
"output":{"shape":"ListTrafficPolicyVersionsResponse"},
|
774
|
-
"errors":[
|
775
|
-
{"shape":"InvalidInput"},
|
776
|
-
{"shape":"NoSuchTrafficPolicy"}
|
777
|
-
]
|
778
|
-
},
|
779
|
-
"ListVPCAssociationAuthorizations":{
|
780
|
-
"name":"ListVPCAssociationAuthorizations",
|
781
|
-
"http":{
|
782
|
-
"method":"GET",
|
783
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
|
784
|
-
},
|
785
|
-
"input":{"shape":"ListVPCAssociationAuthorizationsRequest"},
|
786
|
-
"output":{"shape":"ListVPCAssociationAuthorizationsResponse"},
|
787
|
-
"errors":[
|
788
|
-
{"shape":"NoSuchHostedZone"},
|
789
|
-
{"shape":"InvalidInput"},
|
790
|
-
{"shape":"InvalidPaginationToken"}
|
791
|
-
]
|
792
|
-
},
|
793
|
-
"TestDNSAnswer":{
|
794
|
-
"name":"TestDNSAnswer",
|
795
|
-
"http":{
|
796
|
-
"method":"GET",
|
797
|
-
"requestUri":"/2013-04-01/testdnsanswer"
|
798
|
-
},
|
799
|
-
"input":{"shape":"TestDNSAnswerRequest"},
|
800
|
-
"output":{"shape":"TestDNSAnswerResponse"},
|
801
|
-
"errors":[
|
802
|
-
{"shape":"NoSuchHostedZone"},
|
803
|
-
{"shape":"InvalidInput"}
|
804
|
-
]
|
805
|
-
},
|
806
|
-
"UpdateHealthCheck":{
|
807
|
-
"name":"UpdateHealthCheck",
|
808
|
-
"http":{
|
809
|
-
"method":"POST",
|
810
|
-
"requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
|
811
|
-
},
|
812
|
-
"input":{
|
813
|
-
"shape":"UpdateHealthCheckRequest",
|
814
|
-
"locationName":"UpdateHealthCheckRequest",
|
815
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
816
|
-
},
|
817
|
-
"output":{"shape":"UpdateHealthCheckResponse"},
|
818
|
-
"errors":[
|
819
|
-
{"shape":"NoSuchHealthCheck"},
|
820
|
-
{"shape":"InvalidInput"},
|
821
|
-
{"shape":"HealthCheckVersionMismatch"}
|
822
|
-
]
|
823
|
-
},
|
824
|
-
"UpdateHostedZoneComment":{
|
825
|
-
"name":"UpdateHostedZoneComment",
|
826
|
-
"http":{
|
827
|
-
"method":"POST",
|
828
|
-
"requestUri":"/2013-04-01/hostedzone/{Id}"
|
829
|
-
},
|
830
|
-
"input":{
|
831
|
-
"shape":"UpdateHostedZoneCommentRequest",
|
832
|
-
"locationName":"UpdateHostedZoneCommentRequest",
|
833
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
834
|
-
},
|
835
|
-
"output":{"shape":"UpdateHostedZoneCommentResponse"},
|
836
|
-
"errors":[
|
837
|
-
{"shape":"NoSuchHostedZone"},
|
838
|
-
{"shape":"InvalidInput"}
|
839
|
-
]
|
840
|
-
},
|
841
|
-
"UpdateTrafficPolicyComment":{
|
842
|
-
"name":"UpdateTrafficPolicyComment",
|
843
|
-
"http":{
|
844
|
-
"method":"POST",
|
845
|
-
"requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
|
846
|
-
},
|
847
|
-
"input":{
|
848
|
-
"shape":"UpdateTrafficPolicyCommentRequest",
|
849
|
-
"locationName":"UpdateTrafficPolicyCommentRequest",
|
850
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
851
|
-
},
|
852
|
-
"output":{"shape":"UpdateTrafficPolicyCommentResponse"},
|
853
|
-
"errors":[
|
854
|
-
{"shape":"InvalidInput"},
|
855
|
-
{"shape":"NoSuchTrafficPolicy"},
|
856
|
-
{"shape":"ConcurrentModification"}
|
857
|
-
]
|
858
|
-
},
|
859
|
-
"UpdateTrafficPolicyInstance":{
|
860
|
-
"name":"UpdateTrafficPolicyInstance",
|
861
|
-
"http":{
|
862
|
-
"method":"POST",
|
863
|
-
"requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
|
864
|
-
},
|
865
|
-
"input":{
|
866
|
-
"shape":"UpdateTrafficPolicyInstanceRequest",
|
867
|
-
"locationName":"UpdateTrafficPolicyInstanceRequest",
|
868
|
-
"xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
|
869
|
-
},
|
870
|
-
"output":{"shape":"UpdateTrafficPolicyInstanceResponse"},
|
871
|
-
"errors":[
|
872
|
-
{"shape":"InvalidInput"},
|
873
|
-
{"shape":"NoSuchTrafficPolicy"},
|
874
|
-
{"shape":"NoSuchTrafficPolicyInstance"},
|
875
|
-
{"shape":"PriorRequestNotComplete"},
|
876
|
-
{"shape":"ConflictingTypes"}
|
877
|
-
]
|
878
|
-
}
|
879
|
-
},
|
880
|
-
"shapes":{
|
881
|
-
"AccountLimit":{
|
882
|
-
"type":"structure",
|
883
|
-
"required":[
|
884
|
-
"Type",
|
885
|
-
"Value"
|
886
|
-
],
|
887
|
-
"members":{
|
888
|
-
"Type":{"shape":"AccountLimitType"},
|
889
|
-
"Value":{"shape":"LimitValue"}
|
890
|
-
}
|
891
|
-
},
|
892
|
-
"AccountLimitType":{
|
893
|
-
"type":"string",
|
894
|
-
"enum":[
|
895
|
-
"MAX_HEALTH_CHECKS_BY_OWNER",
|
896
|
-
"MAX_HOSTED_ZONES_BY_OWNER",
|
897
|
-
"MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER",
|
898
|
-
"MAX_REUSABLE_DELEGATION_SETS_BY_OWNER",
|
899
|
-
"MAX_TRAFFIC_POLICIES_BY_OWNER"
|
900
|
-
]
|
901
|
-
},
|
902
|
-
"AlarmIdentifier":{
|
903
|
-
"type":"structure",
|
904
|
-
"required":[
|
905
|
-
"Region",
|
906
|
-
"Name"
|
907
|
-
],
|
908
|
-
"members":{
|
909
|
-
"Region":{"shape":"CloudWatchRegion"},
|
910
|
-
"Name":{"shape":"AlarmName"}
|
911
|
-
}
|
912
|
-
},
|
913
|
-
"AlarmName":{
|
914
|
-
"type":"string",
|
915
|
-
"max":256,
|
916
|
-
"min":1
|
917
|
-
},
|
918
|
-
"AliasHealthEnabled":{"type":"boolean"},
|
919
|
-
"AliasTarget":{
|
920
|
-
"type":"structure",
|
921
|
-
"required":[
|
922
|
-
"HostedZoneId",
|
923
|
-
"DNSName",
|
924
|
-
"EvaluateTargetHealth"
|
925
|
-
],
|
926
|
-
"members":{
|
927
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
928
|
-
"DNSName":{"shape":"DNSName"},
|
929
|
-
"EvaluateTargetHealth":{"shape":"AliasHealthEnabled"}
|
930
|
-
}
|
931
|
-
},
|
932
|
-
"AssociateVPCComment":{"type":"string"},
|
933
|
-
"AssociateVPCWithHostedZoneRequest":{
|
934
|
-
"type":"structure",
|
935
|
-
"required":[
|
936
|
-
"HostedZoneId",
|
937
|
-
"VPC"
|
938
|
-
],
|
939
|
-
"members":{
|
940
|
-
"HostedZoneId":{
|
941
|
-
"shape":"ResourceId",
|
942
|
-
"location":"uri",
|
943
|
-
"locationName":"Id"
|
944
|
-
},
|
945
|
-
"VPC":{"shape":"VPC"},
|
946
|
-
"Comment":{"shape":"AssociateVPCComment"}
|
947
|
-
}
|
948
|
-
},
|
949
|
-
"AssociateVPCWithHostedZoneResponse":{
|
950
|
-
"type":"structure",
|
951
|
-
"required":["ChangeInfo"],
|
952
|
-
"members":{
|
953
|
-
"ChangeInfo":{"shape":"ChangeInfo"}
|
954
|
-
}
|
955
|
-
},
|
956
|
-
"Change":{
|
957
|
-
"type":"structure",
|
958
|
-
"required":[
|
959
|
-
"Action",
|
960
|
-
"ResourceRecordSet"
|
961
|
-
],
|
962
|
-
"members":{
|
963
|
-
"Action":{"shape":"ChangeAction"},
|
964
|
-
"ResourceRecordSet":{"shape":"ResourceRecordSet"}
|
965
|
-
}
|
966
|
-
},
|
967
|
-
"ChangeAction":{
|
968
|
-
"type":"string",
|
969
|
-
"enum":[
|
970
|
-
"CREATE",
|
971
|
-
"DELETE",
|
972
|
-
"UPSERT"
|
973
|
-
]
|
974
|
-
},
|
975
|
-
"ChangeBatch":{
|
976
|
-
"type":"structure",
|
977
|
-
"required":["Changes"],
|
978
|
-
"members":{
|
979
|
-
"Comment":{"shape":"ResourceDescription"},
|
980
|
-
"Changes":{"shape":"Changes"}
|
981
|
-
}
|
982
|
-
},
|
983
|
-
"ChangeInfo":{
|
984
|
-
"type":"structure",
|
985
|
-
"required":[
|
986
|
-
"Id",
|
987
|
-
"Status",
|
988
|
-
"SubmittedAt"
|
989
|
-
],
|
990
|
-
"members":{
|
991
|
-
"Id":{"shape":"ResourceId"},
|
992
|
-
"Status":{"shape":"ChangeStatus"},
|
993
|
-
"SubmittedAt":{"shape":"TimeStamp"},
|
994
|
-
"Comment":{"shape":"ResourceDescription"}
|
995
|
-
}
|
996
|
-
},
|
997
|
-
"ChangeResourceRecordSetsRequest":{
|
998
|
-
"type":"structure",
|
999
|
-
"required":[
|
1000
|
-
"HostedZoneId",
|
1001
|
-
"ChangeBatch"
|
1002
|
-
],
|
1003
|
-
"members":{
|
1004
|
-
"HostedZoneId":{
|
1005
|
-
"shape":"ResourceId",
|
1006
|
-
"location":"uri",
|
1007
|
-
"locationName":"Id"
|
1008
|
-
},
|
1009
|
-
"ChangeBatch":{"shape":"ChangeBatch"}
|
1010
|
-
}
|
1011
|
-
},
|
1012
|
-
"ChangeResourceRecordSetsResponse":{
|
1013
|
-
"type":"structure",
|
1014
|
-
"required":["ChangeInfo"],
|
1015
|
-
"members":{
|
1016
|
-
"ChangeInfo":{"shape":"ChangeInfo"}
|
1017
|
-
}
|
1018
|
-
},
|
1019
|
-
"ChangeStatus":{
|
1020
|
-
"type":"string",
|
1021
|
-
"enum":[
|
1022
|
-
"PENDING",
|
1023
|
-
"INSYNC"
|
1024
|
-
]
|
1025
|
-
},
|
1026
|
-
"ChangeTagsForResourceRequest":{
|
1027
|
-
"type":"structure",
|
1028
|
-
"required":[
|
1029
|
-
"ResourceType",
|
1030
|
-
"ResourceId"
|
1031
|
-
],
|
1032
|
-
"members":{
|
1033
|
-
"ResourceType":{
|
1034
|
-
"shape":"TagResourceType",
|
1035
|
-
"location":"uri",
|
1036
|
-
"locationName":"ResourceType"
|
1037
|
-
},
|
1038
|
-
"ResourceId":{
|
1039
|
-
"shape":"TagResourceId",
|
1040
|
-
"location":"uri",
|
1041
|
-
"locationName":"ResourceId"
|
1042
|
-
},
|
1043
|
-
"AddTags":{"shape":"TagList"},
|
1044
|
-
"RemoveTagKeys":{"shape":"TagKeyList"}
|
1045
|
-
}
|
1046
|
-
},
|
1047
|
-
"ChangeTagsForResourceResponse":{
|
1048
|
-
"type":"structure",
|
1049
|
-
"members":{
|
1050
|
-
}
|
1051
|
-
},
|
1052
|
-
"Changes":{
|
1053
|
-
"type":"list",
|
1054
|
-
"member":{
|
1055
|
-
"shape":"Change",
|
1056
|
-
"locationName":"Change"
|
1057
|
-
},
|
1058
|
-
"min":1
|
1059
|
-
},
|
1060
|
-
"CheckerIpRanges":{
|
1061
|
-
"type":"list",
|
1062
|
-
"member":{"shape":"IPAddressCidr"}
|
1063
|
-
},
|
1064
|
-
"ChildHealthCheckList":{
|
1065
|
-
"type":"list",
|
1066
|
-
"member":{
|
1067
|
-
"shape":"HealthCheckId",
|
1068
|
-
"locationName":"ChildHealthCheck"
|
1069
|
-
},
|
1070
|
-
"max":256
|
1071
|
-
},
|
1072
|
-
"CloudWatchAlarmConfiguration":{
|
1073
|
-
"type":"structure",
|
1074
|
-
"required":[
|
1075
|
-
"EvaluationPeriods",
|
1076
|
-
"Threshold",
|
1077
|
-
"ComparisonOperator",
|
1078
|
-
"Period",
|
1079
|
-
"MetricName",
|
1080
|
-
"Namespace",
|
1081
|
-
"Statistic"
|
1082
|
-
],
|
1083
|
-
"members":{
|
1084
|
-
"EvaluationPeriods":{"shape":"EvaluationPeriods"},
|
1085
|
-
"Threshold":{"shape":"Threshold"},
|
1086
|
-
"ComparisonOperator":{"shape":"ComparisonOperator"},
|
1087
|
-
"Period":{"shape":"Period"},
|
1088
|
-
"MetricName":{"shape":"MetricName"},
|
1089
|
-
"Namespace":{"shape":"Namespace"},
|
1090
|
-
"Statistic":{"shape":"Statistic"},
|
1091
|
-
"Dimensions":{"shape":"DimensionList"}
|
1092
|
-
}
|
1093
|
-
},
|
1094
|
-
"CloudWatchLogsLogGroupArn":{"type":"string"},
|
1095
|
-
"CloudWatchRegion":{
|
1096
|
-
"type":"string",
|
1097
|
-
"enum":[
|
1098
|
-
"us-east-1",
|
1099
|
-
"us-east-2",
|
1100
|
-
"us-west-1",
|
1101
|
-
"us-west-2",
|
1102
|
-
"ca-central-1",
|
1103
|
-
"eu-central-1",
|
1104
|
-
"eu-west-1",
|
1105
|
-
"eu-west-2",
|
1106
|
-
"eu-west-3",
|
1107
|
-
"ap-east-1",
|
1108
|
-
"me-south-1",
|
1109
|
-
"ap-south-1",
|
1110
|
-
"ap-southeast-1",
|
1111
|
-
"ap-southeast-2",
|
1112
|
-
"ap-northeast-1",
|
1113
|
-
"ap-northeast-2",
|
1114
|
-
"ap-northeast-3",
|
1115
|
-
"eu-north-1",
|
1116
|
-
"sa-east-1",
|
1117
|
-
"cn-northwest-1",
|
1118
|
-
"cn-north-1"
|
1119
|
-
],
|
1120
|
-
"max":64,
|
1121
|
-
"min":1
|
1122
|
-
},
|
1123
|
-
"ComparisonOperator":{
|
1124
|
-
"type":"string",
|
1125
|
-
"enum":[
|
1126
|
-
"GreaterThanOrEqualToThreshold",
|
1127
|
-
"GreaterThanThreshold",
|
1128
|
-
"LessThanThreshold",
|
1129
|
-
"LessThanOrEqualToThreshold"
|
1130
|
-
]
|
1131
|
-
},
|
1132
|
-
"ConcurrentModification":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"members":{
|
1135
|
-
"message":{"shape":"ErrorMessage"}
|
1136
|
-
},
|
1137
|
-
"error":{"httpStatusCode":400},
|
1138
|
-
"exception":true
|
1139
|
-
},
|
1140
|
-
"ConflictingDomainExists":{
|
1141
|
-
"type":"structure",
|
1142
|
-
"members":{
|
1143
|
-
"message":{"shape":"ErrorMessage"}
|
1144
|
-
},
|
1145
|
-
"exception":true
|
1146
|
-
},
|
1147
|
-
"ConflictingTypes":{
|
1148
|
-
"type":"structure",
|
1149
|
-
"members":{
|
1150
|
-
"message":{"shape":"ErrorMessage"}
|
1151
|
-
},
|
1152
|
-
"error":{"httpStatusCode":400},
|
1153
|
-
"exception":true
|
1154
|
-
},
|
1155
|
-
"CreateHealthCheckRequest":{
|
1156
|
-
"type":"structure",
|
1157
|
-
"required":[
|
1158
|
-
"CallerReference",
|
1159
|
-
"HealthCheckConfig"
|
1160
|
-
],
|
1161
|
-
"members":{
|
1162
|
-
"CallerReference":{"shape":"HealthCheckNonce"},
|
1163
|
-
"HealthCheckConfig":{"shape":"HealthCheckConfig"}
|
1164
|
-
}
|
1165
|
-
},
|
1166
|
-
"CreateHealthCheckResponse":{
|
1167
|
-
"type":"structure",
|
1168
|
-
"required":[
|
1169
|
-
"HealthCheck",
|
1170
|
-
"Location"
|
1171
|
-
],
|
1172
|
-
"members":{
|
1173
|
-
"HealthCheck":{"shape":"HealthCheck"},
|
1174
|
-
"Location":{
|
1175
|
-
"shape":"ResourceURI",
|
1176
|
-
"location":"header",
|
1177
|
-
"locationName":"Location"
|
1178
|
-
}
|
1179
|
-
}
|
1180
|
-
},
|
1181
|
-
"CreateHostedZoneRequest":{
|
1182
|
-
"type":"structure",
|
1183
|
-
"required":[
|
1184
|
-
"Name",
|
1185
|
-
"CallerReference"
|
1186
|
-
],
|
1187
|
-
"members":{
|
1188
|
-
"Name":{"shape":"DNSName"},
|
1189
|
-
"VPC":{"shape":"VPC"},
|
1190
|
-
"CallerReference":{"shape":"Nonce"},
|
1191
|
-
"HostedZoneConfig":{"shape":"HostedZoneConfig"},
|
1192
|
-
"DelegationSetId":{"shape":"ResourceId"}
|
1193
|
-
}
|
1194
|
-
},
|
1195
|
-
"CreateHostedZoneResponse":{
|
1196
|
-
"type":"structure",
|
1197
|
-
"required":[
|
1198
|
-
"HostedZone",
|
1199
|
-
"ChangeInfo",
|
1200
|
-
"DelegationSet",
|
1201
|
-
"Location"
|
1202
|
-
],
|
1203
|
-
"members":{
|
1204
|
-
"HostedZone":{"shape":"HostedZone"},
|
1205
|
-
"ChangeInfo":{"shape":"ChangeInfo"},
|
1206
|
-
"DelegationSet":{"shape":"DelegationSet"},
|
1207
|
-
"VPC":{"shape":"VPC"},
|
1208
|
-
"Location":{
|
1209
|
-
"shape":"ResourceURI",
|
1210
|
-
"location":"header",
|
1211
|
-
"locationName":"Location"
|
1212
|
-
}
|
1213
|
-
}
|
1214
|
-
},
|
1215
|
-
"CreateQueryLoggingConfigRequest":{
|
1216
|
-
"type":"structure",
|
1217
|
-
"required":[
|
1218
|
-
"HostedZoneId",
|
1219
|
-
"CloudWatchLogsLogGroupArn"
|
1220
|
-
],
|
1221
|
-
"members":{
|
1222
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
1223
|
-
"CloudWatchLogsLogGroupArn":{"shape":"CloudWatchLogsLogGroupArn"}
|
1224
|
-
}
|
1225
|
-
},
|
1226
|
-
"CreateQueryLoggingConfigResponse":{
|
1227
|
-
"type":"structure",
|
1228
|
-
"required":[
|
1229
|
-
"QueryLoggingConfig",
|
1230
|
-
"Location"
|
1231
|
-
],
|
1232
|
-
"members":{
|
1233
|
-
"QueryLoggingConfig":{"shape":"QueryLoggingConfig"},
|
1234
|
-
"Location":{
|
1235
|
-
"shape":"ResourceURI",
|
1236
|
-
"location":"header",
|
1237
|
-
"locationName":"Location"
|
1238
|
-
}
|
1239
|
-
}
|
1240
|
-
},
|
1241
|
-
"CreateReusableDelegationSetRequest":{
|
1242
|
-
"type":"structure",
|
1243
|
-
"required":["CallerReference"],
|
1244
|
-
"members":{
|
1245
|
-
"CallerReference":{"shape":"Nonce"},
|
1246
|
-
"HostedZoneId":{"shape":"ResourceId"}
|
1247
|
-
}
|
1248
|
-
},
|
1249
|
-
"CreateReusableDelegationSetResponse":{
|
1250
|
-
"type":"structure",
|
1251
|
-
"required":[
|
1252
|
-
"DelegationSet",
|
1253
|
-
"Location"
|
1254
|
-
],
|
1255
|
-
"members":{
|
1256
|
-
"DelegationSet":{"shape":"DelegationSet"},
|
1257
|
-
"Location":{
|
1258
|
-
"shape":"ResourceURI",
|
1259
|
-
"location":"header",
|
1260
|
-
"locationName":"Location"
|
1261
|
-
}
|
1262
|
-
}
|
1263
|
-
},
|
1264
|
-
"CreateTrafficPolicyInstanceRequest":{
|
1265
|
-
"type":"structure",
|
1266
|
-
"required":[
|
1267
|
-
"HostedZoneId",
|
1268
|
-
"Name",
|
1269
|
-
"TTL",
|
1270
|
-
"TrafficPolicyId",
|
1271
|
-
"TrafficPolicyVersion"
|
1272
|
-
],
|
1273
|
-
"members":{
|
1274
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
1275
|
-
"Name":{"shape":"DNSName"},
|
1276
|
-
"TTL":{"shape":"TTL"},
|
1277
|
-
"TrafficPolicyId":{"shape":"TrafficPolicyId"},
|
1278
|
-
"TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
|
1279
|
-
}
|
1280
|
-
},
|
1281
|
-
"CreateTrafficPolicyInstanceResponse":{
|
1282
|
-
"type":"structure",
|
1283
|
-
"required":[
|
1284
|
-
"TrafficPolicyInstance",
|
1285
|
-
"Location"
|
1286
|
-
],
|
1287
|
-
"members":{
|
1288
|
-
"TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"},
|
1289
|
-
"Location":{
|
1290
|
-
"shape":"ResourceURI",
|
1291
|
-
"location":"header",
|
1292
|
-
"locationName":"Location"
|
1293
|
-
}
|
1294
|
-
}
|
1295
|
-
},
|
1296
|
-
"CreateTrafficPolicyRequest":{
|
1297
|
-
"type":"structure",
|
1298
|
-
"required":[
|
1299
|
-
"Name",
|
1300
|
-
"Document"
|
1301
|
-
],
|
1302
|
-
"members":{
|
1303
|
-
"Name":{"shape":"TrafficPolicyName"},
|
1304
|
-
"Document":{"shape":"TrafficPolicyDocument"},
|
1305
|
-
"Comment":{"shape":"TrafficPolicyComment"}
|
1306
|
-
}
|
1307
|
-
},
|
1308
|
-
"CreateTrafficPolicyResponse":{
|
1309
|
-
"type":"structure",
|
1310
|
-
"required":[
|
1311
|
-
"TrafficPolicy",
|
1312
|
-
"Location"
|
1313
|
-
],
|
1314
|
-
"members":{
|
1315
|
-
"TrafficPolicy":{"shape":"TrafficPolicy"},
|
1316
|
-
"Location":{
|
1317
|
-
"shape":"ResourceURI",
|
1318
|
-
"location":"header",
|
1319
|
-
"locationName":"Location"
|
1320
|
-
}
|
1321
|
-
}
|
1322
|
-
},
|
1323
|
-
"CreateTrafficPolicyVersionRequest":{
|
1324
|
-
"type":"structure",
|
1325
|
-
"required":[
|
1326
|
-
"Id",
|
1327
|
-
"Document"
|
1328
|
-
],
|
1329
|
-
"members":{
|
1330
|
-
"Id":{
|
1331
|
-
"shape":"TrafficPolicyId",
|
1332
|
-
"location":"uri",
|
1333
|
-
"locationName":"Id"
|
1334
|
-
},
|
1335
|
-
"Document":{"shape":"TrafficPolicyDocument"},
|
1336
|
-
"Comment":{"shape":"TrafficPolicyComment"}
|
1337
|
-
}
|
1338
|
-
},
|
1339
|
-
"CreateTrafficPolicyVersionResponse":{
|
1340
|
-
"type":"structure",
|
1341
|
-
"required":[
|
1342
|
-
"TrafficPolicy",
|
1343
|
-
"Location"
|
1344
|
-
],
|
1345
|
-
"members":{
|
1346
|
-
"TrafficPolicy":{"shape":"TrafficPolicy"},
|
1347
|
-
"Location":{
|
1348
|
-
"shape":"ResourceURI",
|
1349
|
-
"location":"header",
|
1350
|
-
"locationName":"Location"
|
1351
|
-
}
|
1352
|
-
}
|
1353
|
-
},
|
1354
|
-
"CreateVPCAssociationAuthorizationRequest":{
|
1355
|
-
"type":"structure",
|
1356
|
-
"required":[
|
1357
|
-
"HostedZoneId",
|
1358
|
-
"VPC"
|
1359
|
-
],
|
1360
|
-
"members":{
|
1361
|
-
"HostedZoneId":{
|
1362
|
-
"shape":"ResourceId",
|
1363
|
-
"location":"uri",
|
1364
|
-
"locationName":"Id"
|
1365
|
-
},
|
1366
|
-
"VPC":{"shape":"VPC"}
|
1367
|
-
}
|
1368
|
-
},
|
1369
|
-
"CreateVPCAssociationAuthorizationResponse":{
|
1370
|
-
"type":"structure",
|
1371
|
-
"required":[
|
1372
|
-
"HostedZoneId",
|
1373
|
-
"VPC"
|
1374
|
-
],
|
1375
|
-
"members":{
|
1376
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
1377
|
-
"VPC":{"shape":"VPC"}
|
1378
|
-
}
|
1379
|
-
},
|
1380
|
-
"DNSName":{
|
1381
|
-
"type":"string",
|
1382
|
-
"max":1024
|
1383
|
-
},
|
1384
|
-
"DNSRCode":{"type":"string"},
|
1385
|
-
"DelegationSet":{
|
1386
|
-
"type":"structure",
|
1387
|
-
"required":["NameServers"],
|
1388
|
-
"members":{
|
1389
|
-
"Id":{"shape":"ResourceId"},
|
1390
|
-
"CallerReference":{"shape":"Nonce"},
|
1391
|
-
"NameServers":{"shape":"DelegationSetNameServers"}
|
1392
|
-
}
|
1393
|
-
},
|
1394
|
-
"DelegationSetAlreadyCreated":{
|
1395
|
-
"type":"structure",
|
1396
|
-
"members":{
|
1397
|
-
"message":{"shape":"ErrorMessage"}
|
1398
|
-
},
|
1399
|
-
"exception":true
|
1400
|
-
},
|
1401
|
-
"DelegationSetAlreadyReusable":{
|
1402
|
-
"type":"structure",
|
1403
|
-
"members":{
|
1404
|
-
"message":{"shape":"ErrorMessage"}
|
1405
|
-
},
|
1406
|
-
"exception":true
|
1407
|
-
},
|
1408
|
-
"DelegationSetInUse":{
|
1409
|
-
"type":"structure",
|
1410
|
-
"members":{
|
1411
|
-
"message":{"shape":"ErrorMessage"}
|
1412
|
-
},
|
1413
|
-
"exception":true
|
1414
|
-
},
|
1415
|
-
"DelegationSetNameServers":{
|
1416
|
-
"type":"list",
|
1417
|
-
"member":{
|
1418
|
-
"shape":"DNSName",
|
1419
|
-
"locationName":"NameServer"
|
1420
|
-
},
|
1421
|
-
"min":1
|
1422
|
-
},
|
1423
|
-
"DelegationSetNotAvailable":{
|
1424
|
-
"type":"structure",
|
1425
|
-
"members":{
|
1426
|
-
"message":{"shape":"ErrorMessage"}
|
1427
|
-
},
|
1428
|
-
"exception":true
|
1429
|
-
},
|
1430
|
-
"DelegationSetNotReusable":{
|
1431
|
-
"type":"structure",
|
1432
|
-
"members":{
|
1433
|
-
"message":{"shape":"ErrorMessage"}
|
1434
|
-
},
|
1435
|
-
"exception":true
|
1436
|
-
},
|
1437
|
-
"DelegationSets":{
|
1438
|
-
"type":"list",
|
1439
|
-
"member":{
|
1440
|
-
"shape":"DelegationSet",
|
1441
|
-
"locationName":"DelegationSet"
|
1442
|
-
}
|
1443
|
-
},
|
1444
|
-
"DeleteHealthCheckRequest":{
|
1445
|
-
"type":"structure",
|
1446
|
-
"required":["HealthCheckId"],
|
1447
|
-
"members":{
|
1448
|
-
"HealthCheckId":{
|
1449
|
-
"shape":"HealthCheckId",
|
1450
|
-
"location":"uri",
|
1451
|
-
"locationName":"HealthCheckId"
|
1452
|
-
}
|
1453
|
-
}
|
1454
|
-
},
|
1455
|
-
"DeleteHealthCheckResponse":{
|
1456
|
-
"type":"structure",
|
1457
|
-
"members":{
|
1458
|
-
}
|
1459
|
-
},
|
1460
|
-
"DeleteHostedZoneRequest":{
|
1461
|
-
"type":"structure",
|
1462
|
-
"required":["Id"],
|
1463
|
-
"members":{
|
1464
|
-
"Id":{
|
1465
|
-
"shape":"ResourceId",
|
1466
|
-
"location":"uri",
|
1467
|
-
"locationName":"Id"
|
1468
|
-
}
|
1469
|
-
}
|
1470
|
-
},
|
1471
|
-
"DeleteHostedZoneResponse":{
|
1472
|
-
"type":"structure",
|
1473
|
-
"required":["ChangeInfo"],
|
1474
|
-
"members":{
|
1475
|
-
"ChangeInfo":{"shape":"ChangeInfo"}
|
1476
|
-
}
|
1477
|
-
},
|
1478
|
-
"DeleteQueryLoggingConfigRequest":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"required":["Id"],
|
1481
|
-
"members":{
|
1482
|
-
"Id":{
|
1483
|
-
"shape":"QueryLoggingConfigId",
|
1484
|
-
"location":"uri",
|
1485
|
-
"locationName":"Id"
|
1486
|
-
}
|
1487
|
-
}
|
1488
|
-
},
|
1489
|
-
"DeleteQueryLoggingConfigResponse":{
|
1490
|
-
"type":"structure",
|
1491
|
-
"members":{
|
1492
|
-
}
|
1493
|
-
},
|
1494
|
-
"DeleteReusableDelegationSetRequest":{
|
1495
|
-
"type":"structure",
|
1496
|
-
"required":["Id"],
|
1497
|
-
"members":{
|
1498
|
-
"Id":{
|
1499
|
-
"shape":"ResourceId",
|
1500
|
-
"location":"uri",
|
1501
|
-
"locationName":"Id"
|
1502
|
-
}
|
1503
|
-
}
|
1504
|
-
},
|
1505
|
-
"DeleteReusableDelegationSetResponse":{
|
1506
|
-
"type":"structure",
|
1507
|
-
"members":{
|
1508
|
-
}
|
1509
|
-
},
|
1510
|
-
"DeleteTrafficPolicyInstanceRequest":{
|
1511
|
-
"type":"structure",
|
1512
|
-
"required":["Id"],
|
1513
|
-
"members":{
|
1514
|
-
"Id":{
|
1515
|
-
"shape":"TrafficPolicyInstanceId",
|
1516
|
-
"location":"uri",
|
1517
|
-
"locationName":"Id"
|
1518
|
-
}
|
1519
|
-
}
|
1520
|
-
},
|
1521
|
-
"DeleteTrafficPolicyInstanceResponse":{
|
1522
|
-
"type":"structure",
|
1523
|
-
"members":{
|
1524
|
-
}
|
1525
|
-
},
|
1526
|
-
"DeleteTrafficPolicyRequest":{
|
1527
|
-
"type":"structure",
|
1528
|
-
"required":[
|
1529
|
-
"Id",
|
1530
|
-
"Version"
|
1531
|
-
],
|
1532
|
-
"members":{
|
1533
|
-
"Id":{
|
1534
|
-
"shape":"TrafficPolicyId",
|
1535
|
-
"location":"uri",
|
1536
|
-
"locationName":"Id"
|
1537
|
-
},
|
1538
|
-
"Version":{
|
1539
|
-
"shape":"TrafficPolicyVersion",
|
1540
|
-
"location":"uri",
|
1541
|
-
"locationName":"Version"
|
1542
|
-
}
|
1543
|
-
}
|
1544
|
-
},
|
1545
|
-
"DeleteTrafficPolicyResponse":{
|
1546
|
-
"type":"structure",
|
1547
|
-
"members":{
|
1548
|
-
}
|
1549
|
-
},
|
1550
|
-
"DeleteVPCAssociationAuthorizationRequest":{
|
1551
|
-
"type":"structure",
|
1552
|
-
"required":[
|
1553
|
-
"HostedZoneId",
|
1554
|
-
"VPC"
|
1555
|
-
],
|
1556
|
-
"members":{
|
1557
|
-
"HostedZoneId":{
|
1558
|
-
"shape":"ResourceId",
|
1559
|
-
"location":"uri",
|
1560
|
-
"locationName":"Id"
|
1561
|
-
},
|
1562
|
-
"VPC":{"shape":"VPC"}
|
1563
|
-
}
|
1564
|
-
},
|
1565
|
-
"DeleteVPCAssociationAuthorizationResponse":{
|
1566
|
-
"type":"structure",
|
1567
|
-
"members":{
|
1568
|
-
}
|
1569
|
-
},
|
1570
|
-
"Dimension":{
|
1571
|
-
"type":"structure",
|
1572
|
-
"required":[
|
1573
|
-
"Name",
|
1574
|
-
"Value"
|
1575
|
-
],
|
1576
|
-
"members":{
|
1577
|
-
"Name":{"shape":"DimensionField"},
|
1578
|
-
"Value":{"shape":"DimensionField"}
|
1579
|
-
}
|
1580
|
-
},
|
1581
|
-
"DimensionField":{
|
1582
|
-
"type":"string",
|
1583
|
-
"max":255,
|
1584
|
-
"min":1
|
1585
|
-
},
|
1586
|
-
"DimensionList":{
|
1587
|
-
"type":"list",
|
1588
|
-
"member":{
|
1589
|
-
"shape":"Dimension",
|
1590
|
-
"locationName":"Dimension"
|
1591
|
-
},
|
1592
|
-
"max":10
|
1593
|
-
},
|
1594
|
-
"Disabled":{"type":"boolean"},
|
1595
|
-
"DisassociateVPCComment":{"type":"string"},
|
1596
|
-
"DisassociateVPCFromHostedZoneRequest":{
|
1597
|
-
"type":"structure",
|
1598
|
-
"required":[
|
1599
|
-
"HostedZoneId",
|
1600
|
-
"VPC"
|
1601
|
-
],
|
1602
|
-
"members":{
|
1603
|
-
"HostedZoneId":{
|
1604
|
-
"shape":"ResourceId",
|
1605
|
-
"location":"uri",
|
1606
|
-
"locationName":"Id"
|
1607
|
-
},
|
1608
|
-
"VPC":{"shape":"VPC"},
|
1609
|
-
"Comment":{"shape":"DisassociateVPCComment"}
|
1610
|
-
}
|
1611
|
-
},
|
1612
|
-
"DisassociateVPCFromHostedZoneResponse":{
|
1613
|
-
"type":"structure",
|
1614
|
-
"required":["ChangeInfo"],
|
1615
|
-
"members":{
|
1616
|
-
"ChangeInfo":{"shape":"ChangeInfo"}
|
1617
|
-
}
|
1618
|
-
},
|
1619
|
-
"EnableSNI":{"type":"boolean"},
|
1620
|
-
"ErrorMessage":{"type":"string"},
|
1621
|
-
"ErrorMessages":{
|
1622
|
-
"type":"list",
|
1623
|
-
"member":{
|
1624
|
-
"shape":"ErrorMessage",
|
1625
|
-
"locationName":"Message"
|
1626
|
-
}
|
1627
|
-
},
|
1628
|
-
"EvaluationPeriods":{
|
1629
|
-
"type":"integer",
|
1630
|
-
"min":1
|
1631
|
-
},
|
1632
|
-
"FailureThreshold":{
|
1633
|
-
"type":"integer",
|
1634
|
-
"max":10,
|
1635
|
-
"min":1
|
1636
|
-
},
|
1637
|
-
"FullyQualifiedDomainName":{
|
1638
|
-
"type":"string",
|
1639
|
-
"max":255
|
1640
|
-
},
|
1641
|
-
"GeoLocation":{
|
1642
|
-
"type":"structure",
|
1643
|
-
"members":{
|
1644
|
-
"ContinentCode":{"shape":"GeoLocationContinentCode"},
|
1645
|
-
"CountryCode":{"shape":"GeoLocationCountryCode"},
|
1646
|
-
"SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"}
|
1647
|
-
}
|
1648
|
-
},
|
1649
|
-
"GeoLocationContinentCode":{
|
1650
|
-
"type":"string",
|
1651
|
-
"max":2,
|
1652
|
-
"min":2
|
1653
|
-
},
|
1654
|
-
"GeoLocationContinentName":{
|
1655
|
-
"type":"string",
|
1656
|
-
"max":32,
|
1657
|
-
"min":1
|
1658
|
-
},
|
1659
|
-
"GeoLocationCountryCode":{
|
1660
|
-
"type":"string",
|
1661
|
-
"max":2,
|
1662
|
-
"min":1
|
1663
|
-
},
|
1664
|
-
"GeoLocationCountryName":{
|
1665
|
-
"type":"string",
|
1666
|
-
"max":64,
|
1667
|
-
"min":1
|
1668
|
-
},
|
1669
|
-
"GeoLocationDetails":{
|
1670
|
-
"type":"structure",
|
1671
|
-
"members":{
|
1672
|
-
"ContinentCode":{"shape":"GeoLocationContinentCode"},
|
1673
|
-
"ContinentName":{"shape":"GeoLocationContinentName"},
|
1674
|
-
"CountryCode":{"shape":"GeoLocationCountryCode"},
|
1675
|
-
"CountryName":{"shape":"GeoLocationCountryName"},
|
1676
|
-
"SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
|
1677
|
-
"SubdivisionName":{"shape":"GeoLocationSubdivisionName"}
|
1678
|
-
}
|
1679
|
-
},
|
1680
|
-
"GeoLocationDetailsList":{
|
1681
|
-
"type":"list",
|
1682
|
-
"member":{
|
1683
|
-
"shape":"GeoLocationDetails",
|
1684
|
-
"locationName":"GeoLocationDetails"
|
1685
|
-
}
|
1686
|
-
},
|
1687
|
-
"GeoLocationSubdivisionCode":{
|
1688
|
-
"type":"string",
|
1689
|
-
"max":3,
|
1690
|
-
"min":1
|
1691
|
-
},
|
1692
|
-
"GeoLocationSubdivisionName":{
|
1693
|
-
"type":"string",
|
1694
|
-
"max":64,
|
1695
|
-
"min":1
|
1696
|
-
},
|
1697
|
-
"GetAccountLimitRequest":{
|
1698
|
-
"type":"structure",
|
1699
|
-
"required":["Type"],
|
1700
|
-
"members":{
|
1701
|
-
"Type":{
|
1702
|
-
"shape":"AccountLimitType",
|
1703
|
-
"location":"uri",
|
1704
|
-
"locationName":"Type"
|
1705
|
-
}
|
1706
|
-
}
|
1707
|
-
},
|
1708
|
-
"GetAccountLimitResponse":{
|
1709
|
-
"type":"structure",
|
1710
|
-
"required":[
|
1711
|
-
"Limit",
|
1712
|
-
"Count"
|
1713
|
-
],
|
1714
|
-
"members":{
|
1715
|
-
"Limit":{"shape":"AccountLimit"},
|
1716
|
-
"Count":{"shape":"UsageCount"}
|
1717
|
-
}
|
1718
|
-
},
|
1719
|
-
"GetChangeRequest":{
|
1720
|
-
"type":"structure",
|
1721
|
-
"required":["Id"],
|
1722
|
-
"members":{
|
1723
|
-
"Id":{
|
1724
|
-
"shape":"ResourceId",
|
1725
|
-
"location":"uri",
|
1726
|
-
"locationName":"Id"
|
1727
|
-
}
|
1728
|
-
}
|
1729
|
-
},
|
1730
|
-
"GetChangeResponse":{
|
1731
|
-
"type":"structure",
|
1732
|
-
"required":["ChangeInfo"],
|
1733
|
-
"members":{
|
1734
|
-
"ChangeInfo":{"shape":"ChangeInfo"}
|
1735
|
-
}
|
1736
|
-
},
|
1737
|
-
"GetCheckerIpRangesRequest":{
|
1738
|
-
"type":"structure",
|
1739
|
-
"members":{
|
1740
|
-
}
|
1741
|
-
},
|
1742
|
-
"GetCheckerIpRangesResponse":{
|
1743
|
-
"type":"structure",
|
1744
|
-
"required":["CheckerIpRanges"],
|
1745
|
-
"members":{
|
1746
|
-
"CheckerIpRanges":{"shape":"CheckerIpRanges"}
|
1747
|
-
}
|
1748
|
-
},
|
1749
|
-
"GetGeoLocationRequest":{
|
1750
|
-
"type":"structure",
|
1751
|
-
"members":{
|
1752
|
-
"ContinentCode":{
|
1753
|
-
"shape":"GeoLocationContinentCode",
|
1754
|
-
"location":"querystring",
|
1755
|
-
"locationName":"continentcode"
|
1756
|
-
},
|
1757
|
-
"CountryCode":{
|
1758
|
-
"shape":"GeoLocationCountryCode",
|
1759
|
-
"location":"querystring",
|
1760
|
-
"locationName":"countrycode"
|
1761
|
-
},
|
1762
|
-
"SubdivisionCode":{
|
1763
|
-
"shape":"GeoLocationSubdivisionCode",
|
1764
|
-
"location":"querystring",
|
1765
|
-
"locationName":"subdivisioncode"
|
1766
|
-
}
|
1767
|
-
}
|
1768
|
-
},
|
1769
|
-
"GetGeoLocationResponse":{
|
1770
|
-
"type":"structure",
|
1771
|
-
"required":["GeoLocationDetails"],
|
1772
|
-
"members":{
|
1773
|
-
"GeoLocationDetails":{"shape":"GeoLocationDetails"}
|
1774
|
-
}
|
1775
|
-
},
|
1776
|
-
"GetHealthCheckCountRequest":{
|
1777
|
-
"type":"structure",
|
1778
|
-
"members":{
|
1779
|
-
}
|
1780
|
-
},
|
1781
|
-
"GetHealthCheckCountResponse":{
|
1782
|
-
"type":"structure",
|
1783
|
-
"required":["HealthCheckCount"],
|
1784
|
-
"members":{
|
1785
|
-
"HealthCheckCount":{"shape":"HealthCheckCount"}
|
1786
|
-
}
|
1787
|
-
},
|
1788
|
-
"GetHealthCheckLastFailureReasonRequest":{
|
1789
|
-
"type":"structure",
|
1790
|
-
"required":["HealthCheckId"],
|
1791
|
-
"members":{
|
1792
|
-
"HealthCheckId":{
|
1793
|
-
"shape":"HealthCheckId",
|
1794
|
-
"location":"uri",
|
1795
|
-
"locationName":"HealthCheckId"
|
1796
|
-
}
|
1797
|
-
}
|
1798
|
-
},
|
1799
|
-
"GetHealthCheckLastFailureReasonResponse":{
|
1800
|
-
"type":"structure",
|
1801
|
-
"required":["HealthCheckObservations"],
|
1802
|
-
"members":{
|
1803
|
-
"HealthCheckObservations":{"shape":"HealthCheckObservations"}
|
1804
|
-
}
|
1805
|
-
},
|
1806
|
-
"GetHealthCheckRequest":{
|
1807
|
-
"type":"structure",
|
1808
|
-
"required":["HealthCheckId"],
|
1809
|
-
"members":{
|
1810
|
-
"HealthCheckId":{
|
1811
|
-
"shape":"HealthCheckId",
|
1812
|
-
"location":"uri",
|
1813
|
-
"locationName":"HealthCheckId"
|
1814
|
-
}
|
1815
|
-
}
|
1816
|
-
},
|
1817
|
-
"GetHealthCheckResponse":{
|
1818
|
-
"type":"structure",
|
1819
|
-
"required":["HealthCheck"],
|
1820
|
-
"members":{
|
1821
|
-
"HealthCheck":{"shape":"HealthCheck"}
|
1822
|
-
}
|
1823
|
-
},
|
1824
|
-
"GetHealthCheckStatusRequest":{
|
1825
|
-
"type":"structure",
|
1826
|
-
"required":["HealthCheckId"],
|
1827
|
-
"members":{
|
1828
|
-
"HealthCheckId":{
|
1829
|
-
"shape":"HealthCheckId",
|
1830
|
-
"location":"uri",
|
1831
|
-
"locationName":"HealthCheckId"
|
1832
|
-
}
|
1833
|
-
}
|
1834
|
-
},
|
1835
|
-
"GetHealthCheckStatusResponse":{
|
1836
|
-
"type":"structure",
|
1837
|
-
"required":["HealthCheckObservations"],
|
1838
|
-
"members":{
|
1839
|
-
"HealthCheckObservations":{"shape":"HealthCheckObservations"}
|
1840
|
-
}
|
1841
|
-
},
|
1842
|
-
"GetHostedZoneCountRequest":{
|
1843
|
-
"type":"structure",
|
1844
|
-
"members":{
|
1845
|
-
}
|
1846
|
-
},
|
1847
|
-
"GetHostedZoneCountResponse":{
|
1848
|
-
"type":"structure",
|
1849
|
-
"required":["HostedZoneCount"],
|
1850
|
-
"members":{
|
1851
|
-
"HostedZoneCount":{"shape":"HostedZoneCount"}
|
1852
|
-
}
|
1853
|
-
},
|
1854
|
-
"GetHostedZoneLimitRequest":{
|
1855
|
-
"type":"structure",
|
1856
|
-
"required":[
|
1857
|
-
"Type",
|
1858
|
-
"HostedZoneId"
|
1859
|
-
],
|
1860
|
-
"members":{
|
1861
|
-
"Type":{
|
1862
|
-
"shape":"HostedZoneLimitType",
|
1863
|
-
"location":"uri",
|
1864
|
-
"locationName":"Type"
|
1865
|
-
},
|
1866
|
-
"HostedZoneId":{
|
1867
|
-
"shape":"ResourceId",
|
1868
|
-
"location":"uri",
|
1869
|
-
"locationName":"Id"
|
1870
|
-
}
|
1871
|
-
}
|
1872
|
-
},
|
1873
|
-
"GetHostedZoneLimitResponse":{
|
1874
|
-
"type":"structure",
|
1875
|
-
"required":[
|
1876
|
-
"Limit",
|
1877
|
-
"Count"
|
1878
|
-
],
|
1879
|
-
"members":{
|
1880
|
-
"Limit":{"shape":"HostedZoneLimit"},
|
1881
|
-
"Count":{"shape":"UsageCount"}
|
1882
|
-
}
|
1883
|
-
},
|
1884
|
-
"GetHostedZoneRequest":{
|
1885
|
-
"type":"structure",
|
1886
|
-
"required":["Id"],
|
1887
|
-
"members":{
|
1888
|
-
"Id":{
|
1889
|
-
"shape":"ResourceId",
|
1890
|
-
"location":"uri",
|
1891
|
-
"locationName":"Id"
|
1892
|
-
}
|
1893
|
-
}
|
1894
|
-
},
|
1895
|
-
"GetHostedZoneResponse":{
|
1896
|
-
"type":"structure",
|
1897
|
-
"required":["HostedZone"],
|
1898
|
-
"members":{
|
1899
|
-
"HostedZone":{"shape":"HostedZone"},
|
1900
|
-
"DelegationSet":{"shape":"DelegationSet"},
|
1901
|
-
"VPCs":{"shape":"VPCs"}
|
1902
|
-
}
|
1903
|
-
},
|
1904
|
-
"GetQueryLoggingConfigRequest":{
|
1905
|
-
"type":"structure",
|
1906
|
-
"required":["Id"],
|
1907
|
-
"members":{
|
1908
|
-
"Id":{
|
1909
|
-
"shape":"QueryLoggingConfigId",
|
1910
|
-
"location":"uri",
|
1911
|
-
"locationName":"Id"
|
1912
|
-
}
|
1913
|
-
}
|
1914
|
-
},
|
1915
|
-
"GetQueryLoggingConfigResponse":{
|
1916
|
-
"type":"structure",
|
1917
|
-
"required":["QueryLoggingConfig"],
|
1918
|
-
"members":{
|
1919
|
-
"QueryLoggingConfig":{"shape":"QueryLoggingConfig"}
|
1920
|
-
}
|
1921
|
-
},
|
1922
|
-
"GetReusableDelegationSetLimitRequest":{
|
1923
|
-
"type":"structure",
|
1924
|
-
"required":[
|
1925
|
-
"Type",
|
1926
|
-
"DelegationSetId"
|
1927
|
-
],
|
1928
|
-
"members":{
|
1929
|
-
"Type":{
|
1930
|
-
"shape":"ReusableDelegationSetLimitType",
|
1931
|
-
"location":"uri",
|
1932
|
-
"locationName":"Type"
|
1933
|
-
},
|
1934
|
-
"DelegationSetId":{
|
1935
|
-
"shape":"ResourceId",
|
1936
|
-
"location":"uri",
|
1937
|
-
"locationName":"Id"
|
1938
|
-
}
|
1939
|
-
}
|
1940
|
-
},
|
1941
|
-
"GetReusableDelegationSetLimitResponse":{
|
1942
|
-
"type":"structure",
|
1943
|
-
"required":[
|
1944
|
-
"Limit",
|
1945
|
-
"Count"
|
1946
|
-
],
|
1947
|
-
"members":{
|
1948
|
-
"Limit":{"shape":"ReusableDelegationSetLimit"},
|
1949
|
-
"Count":{"shape":"UsageCount"}
|
1950
|
-
}
|
1951
|
-
},
|
1952
|
-
"GetReusableDelegationSetRequest":{
|
1953
|
-
"type":"structure",
|
1954
|
-
"required":["Id"],
|
1955
|
-
"members":{
|
1956
|
-
"Id":{
|
1957
|
-
"shape":"ResourceId",
|
1958
|
-
"location":"uri",
|
1959
|
-
"locationName":"Id"
|
1960
|
-
}
|
1961
|
-
}
|
1962
|
-
},
|
1963
|
-
"GetReusableDelegationSetResponse":{
|
1964
|
-
"type":"structure",
|
1965
|
-
"required":["DelegationSet"],
|
1966
|
-
"members":{
|
1967
|
-
"DelegationSet":{"shape":"DelegationSet"}
|
1968
|
-
}
|
1969
|
-
},
|
1970
|
-
"GetTrafficPolicyInstanceCountRequest":{
|
1971
|
-
"type":"structure",
|
1972
|
-
"members":{
|
1973
|
-
}
|
1974
|
-
},
|
1975
|
-
"GetTrafficPolicyInstanceCountResponse":{
|
1976
|
-
"type":"structure",
|
1977
|
-
"required":["TrafficPolicyInstanceCount"],
|
1978
|
-
"members":{
|
1979
|
-
"TrafficPolicyInstanceCount":{"shape":"TrafficPolicyInstanceCount"}
|
1980
|
-
}
|
1981
|
-
},
|
1982
|
-
"GetTrafficPolicyInstanceRequest":{
|
1983
|
-
"type":"structure",
|
1984
|
-
"required":["Id"],
|
1985
|
-
"members":{
|
1986
|
-
"Id":{
|
1987
|
-
"shape":"TrafficPolicyInstanceId",
|
1988
|
-
"location":"uri",
|
1989
|
-
"locationName":"Id"
|
1990
|
-
}
|
1991
|
-
}
|
1992
|
-
},
|
1993
|
-
"GetTrafficPolicyInstanceResponse":{
|
1994
|
-
"type":"structure",
|
1995
|
-
"required":["TrafficPolicyInstance"],
|
1996
|
-
"members":{
|
1997
|
-
"TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
|
1998
|
-
}
|
1999
|
-
},
|
2000
|
-
"GetTrafficPolicyRequest":{
|
2001
|
-
"type":"structure",
|
2002
|
-
"required":[
|
2003
|
-
"Id",
|
2004
|
-
"Version"
|
2005
|
-
],
|
2006
|
-
"members":{
|
2007
|
-
"Id":{
|
2008
|
-
"shape":"TrafficPolicyId",
|
2009
|
-
"location":"uri",
|
2010
|
-
"locationName":"Id"
|
2011
|
-
},
|
2012
|
-
"Version":{
|
2013
|
-
"shape":"TrafficPolicyVersion",
|
2014
|
-
"location":"uri",
|
2015
|
-
"locationName":"Version"
|
2016
|
-
}
|
2017
|
-
}
|
2018
|
-
},
|
2019
|
-
"GetTrafficPolicyResponse":{
|
2020
|
-
"type":"structure",
|
2021
|
-
"required":["TrafficPolicy"],
|
2022
|
-
"members":{
|
2023
|
-
"TrafficPolicy":{"shape":"TrafficPolicy"}
|
2024
|
-
}
|
2025
|
-
},
|
2026
|
-
"HealthCheck":{
|
2027
|
-
"type":"structure",
|
2028
|
-
"required":[
|
2029
|
-
"Id",
|
2030
|
-
"CallerReference",
|
2031
|
-
"HealthCheckConfig",
|
2032
|
-
"HealthCheckVersion"
|
2033
|
-
],
|
2034
|
-
"members":{
|
2035
|
-
"Id":{"shape":"HealthCheckId"},
|
2036
|
-
"CallerReference":{"shape":"HealthCheckNonce"},
|
2037
|
-
"LinkedService":{"shape":"LinkedService"},
|
2038
|
-
"HealthCheckConfig":{"shape":"HealthCheckConfig"},
|
2039
|
-
"HealthCheckVersion":{"shape":"HealthCheckVersion"},
|
2040
|
-
"CloudWatchAlarmConfiguration":{"shape":"CloudWatchAlarmConfiguration"}
|
2041
|
-
}
|
2042
|
-
},
|
2043
|
-
"HealthCheckAlreadyExists":{
|
2044
|
-
"type":"structure",
|
2045
|
-
"members":{
|
2046
|
-
"message":{"shape":"ErrorMessage"}
|
2047
|
-
},
|
2048
|
-
"error":{"httpStatusCode":409},
|
2049
|
-
"exception":true
|
2050
|
-
},
|
2051
|
-
"HealthCheckConfig":{
|
2052
|
-
"type":"structure",
|
2053
|
-
"required":["Type"],
|
2054
|
-
"members":{
|
2055
|
-
"IPAddress":{"shape":"IPAddress"},
|
2056
|
-
"Port":{"shape":"Port"},
|
2057
|
-
"Type":{"shape":"HealthCheckType"},
|
2058
|
-
"ResourcePath":{"shape":"ResourcePath"},
|
2059
|
-
"FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
|
2060
|
-
"SearchString":{"shape":"SearchString"},
|
2061
|
-
"RequestInterval":{"shape":"RequestInterval"},
|
2062
|
-
"FailureThreshold":{"shape":"FailureThreshold"},
|
2063
|
-
"MeasureLatency":{"shape":"MeasureLatency"},
|
2064
|
-
"Inverted":{"shape":"Inverted"},
|
2065
|
-
"Disabled":{"shape":"Disabled"},
|
2066
|
-
"HealthThreshold":{"shape":"HealthThreshold"},
|
2067
|
-
"ChildHealthChecks":{"shape":"ChildHealthCheckList"},
|
2068
|
-
"EnableSNI":{"shape":"EnableSNI"},
|
2069
|
-
"Regions":{"shape":"HealthCheckRegionList"},
|
2070
|
-
"AlarmIdentifier":{"shape":"AlarmIdentifier"},
|
2071
|
-
"InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"}
|
2072
|
-
}
|
2073
|
-
},
|
2074
|
-
"HealthCheckCount":{"type":"long"},
|
2075
|
-
"HealthCheckId":{
|
2076
|
-
"type":"string",
|
2077
|
-
"max":64
|
2078
|
-
},
|
2079
|
-
"HealthCheckInUse":{
|
2080
|
-
"type":"structure",
|
2081
|
-
"members":{
|
2082
|
-
"message":{"shape":"ErrorMessage"}
|
2083
|
-
},
|
2084
|
-
"deprecated":true,
|
2085
|
-
"error":{"httpStatusCode":400},
|
2086
|
-
"exception":true
|
2087
|
-
},
|
2088
|
-
"HealthCheckNonce":{
|
2089
|
-
"type":"string",
|
2090
|
-
"max":64,
|
2091
|
-
"min":1
|
2092
|
-
},
|
2093
|
-
"HealthCheckObservation":{
|
2094
|
-
"type":"structure",
|
2095
|
-
"members":{
|
2096
|
-
"Region":{"shape":"HealthCheckRegion"},
|
2097
|
-
"IPAddress":{"shape":"IPAddress"},
|
2098
|
-
"StatusReport":{"shape":"StatusReport"}
|
2099
|
-
}
|
2100
|
-
},
|
2101
|
-
"HealthCheckObservations":{
|
2102
|
-
"type":"list",
|
2103
|
-
"member":{
|
2104
|
-
"shape":"HealthCheckObservation",
|
2105
|
-
"locationName":"HealthCheckObservation"
|
2106
|
-
}
|
2107
|
-
},
|
2108
|
-
"HealthCheckRegion":{
|
2109
|
-
"type":"string",
|
2110
|
-
"enum":[
|
2111
|
-
"us-east-1",
|
2112
|
-
"us-west-1",
|
2113
|
-
"us-west-2",
|
2114
|
-
"eu-west-1",
|
2115
|
-
"ap-southeast-1",
|
2116
|
-
"ap-southeast-2",
|
2117
|
-
"ap-northeast-1",
|
2118
|
-
"sa-east-1"
|
2119
|
-
],
|
2120
|
-
"max":64,
|
2121
|
-
"min":1
|
2122
|
-
},
|
2123
|
-
"HealthCheckRegionList":{
|
2124
|
-
"type":"list",
|
2125
|
-
"member":{
|
2126
|
-
"shape":"HealthCheckRegion",
|
2127
|
-
"locationName":"Region"
|
2128
|
-
},
|
2129
|
-
"max":64,
|
2130
|
-
"min":3
|
2131
|
-
},
|
2132
|
-
"HealthCheckType":{
|
2133
|
-
"type":"string",
|
2134
|
-
"enum":[
|
2135
|
-
"HTTP",
|
2136
|
-
"HTTPS",
|
2137
|
-
"HTTP_STR_MATCH",
|
2138
|
-
"HTTPS_STR_MATCH",
|
2139
|
-
"TCP",
|
2140
|
-
"CALCULATED",
|
2141
|
-
"CLOUDWATCH_METRIC"
|
2142
|
-
]
|
2143
|
-
},
|
2144
|
-
"HealthCheckVersion":{
|
2145
|
-
"type":"long",
|
2146
|
-
"min":1
|
2147
|
-
},
|
2148
|
-
"HealthCheckVersionMismatch":{
|
2149
|
-
"type":"structure",
|
2150
|
-
"members":{
|
2151
|
-
"message":{"shape":"ErrorMessage"}
|
2152
|
-
},
|
2153
|
-
"error":{"httpStatusCode":409},
|
2154
|
-
"exception":true
|
2155
|
-
},
|
2156
|
-
"HealthChecks":{
|
2157
|
-
"type":"list",
|
2158
|
-
"member":{
|
2159
|
-
"shape":"HealthCheck",
|
2160
|
-
"locationName":"HealthCheck"
|
2161
|
-
}
|
2162
|
-
},
|
2163
|
-
"HealthThreshold":{
|
2164
|
-
"type":"integer",
|
2165
|
-
"max":256,
|
2166
|
-
"min":0
|
2167
|
-
},
|
2168
|
-
"HostedZone":{
|
2169
|
-
"type":"structure",
|
2170
|
-
"required":[
|
2171
|
-
"Id",
|
2172
|
-
"Name",
|
2173
|
-
"CallerReference"
|
2174
|
-
],
|
2175
|
-
"members":{
|
2176
|
-
"Id":{"shape":"ResourceId"},
|
2177
|
-
"Name":{"shape":"DNSName"},
|
2178
|
-
"CallerReference":{"shape":"Nonce"},
|
2179
|
-
"Config":{"shape":"HostedZoneConfig"},
|
2180
|
-
"ResourceRecordSetCount":{"shape":"HostedZoneRRSetCount"},
|
2181
|
-
"LinkedService":{"shape":"LinkedService"}
|
2182
|
-
}
|
2183
|
-
},
|
2184
|
-
"HostedZoneAlreadyExists":{
|
2185
|
-
"type":"structure",
|
2186
|
-
"members":{
|
2187
|
-
"message":{"shape":"ErrorMessage"}
|
2188
|
-
},
|
2189
|
-
"error":{"httpStatusCode":409},
|
2190
|
-
"exception":true
|
2191
|
-
},
|
2192
|
-
"HostedZoneConfig":{
|
2193
|
-
"type":"structure",
|
2194
|
-
"members":{
|
2195
|
-
"Comment":{"shape":"ResourceDescription"},
|
2196
|
-
"PrivateZone":{"shape":"IsPrivateZone"}
|
2197
|
-
}
|
2198
|
-
},
|
2199
|
-
"HostedZoneCount":{"type":"long"},
|
2200
|
-
"HostedZoneLimit":{
|
2201
|
-
"type":"structure",
|
2202
|
-
"required":[
|
2203
|
-
"Type",
|
2204
|
-
"Value"
|
2205
|
-
],
|
2206
|
-
"members":{
|
2207
|
-
"Type":{"shape":"HostedZoneLimitType"},
|
2208
|
-
"Value":{"shape":"LimitValue"}
|
2209
|
-
}
|
2210
|
-
},
|
2211
|
-
"HostedZoneLimitType":{
|
2212
|
-
"type":"string",
|
2213
|
-
"enum":[
|
2214
|
-
"MAX_RRSETS_BY_ZONE",
|
2215
|
-
"MAX_VPCS_ASSOCIATED_BY_ZONE"
|
2216
|
-
]
|
2217
|
-
},
|
2218
|
-
"HostedZoneNotEmpty":{
|
2219
|
-
"type":"structure",
|
2220
|
-
"members":{
|
2221
|
-
"message":{"shape":"ErrorMessage"}
|
2222
|
-
},
|
2223
|
-
"error":{"httpStatusCode":400},
|
2224
|
-
"exception":true
|
2225
|
-
},
|
2226
|
-
"HostedZoneNotFound":{
|
2227
|
-
"type":"structure",
|
2228
|
-
"members":{
|
2229
|
-
"message":{"shape":"ErrorMessage"}
|
2230
|
-
},
|
2231
|
-
"exception":true
|
2232
|
-
},
|
2233
|
-
"HostedZoneNotPrivate":{
|
2234
|
-
"type":"structure",
|
2235
|
-
"members":{
|
2236
|
-
"message":{"shape":"ErrorMessage"}
|
2237
|
-
},
|
2238
|
-
"exception":true
|
2239
|
-
},
|
2240
|
-
"HostedZoneRRSetCount":{"type":"long"},
|
2241
|
-
"HostedZones":{
|
2242
|
-
"type":"list",
|
2243
|
-
"member":{
|
2244
|
-
"shape":"HostedZone",
|
2245
|
-
"locationName":"HostedZone"
|
2246
|
-
}
|
2247
|
-
},
|
2248
|
-
"IPAddress":{
|
2249
|
-
"type":"string",
|
2250
|
-
"max":45,
|
2251
|
-
"pattern":"(^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)"
|
2252
|
-
},
|
2253
|
-
"IPAddressCidr":{"type":"string"},
|
2254
|
-
"IncompatibleVersion":{
|
2255
|
-
"type":"structure",
|
2256
|
-
"members":{
|
2257
|
-
"message":{"shape":"ErrorMessage"}
|
2258
|
-
},
|
2259
|
-
"error":{"httpStatusCode":400},
|
2260
|
-
"exception":true
|
2261
|
-
},
|
2262
|
-
"InsufficientCloudWatchLogsResourcePolicy":{
|
2263
|
-
"type":"structure",
|
2264
|
-
"members":{
|
2265
|
-
"message":{"shape":"ErrorMessage"}
|
2266
|
-
},
|
2267
|
-
"error":{"httpStatusCode":400},
|
2268
|
-
"exception":true
|
2269
|
-
},
|
2270
|
-
"InsufficientDataHealthStatus":{
|
2271
|
-
"type":"string",
|
2272
|
-
"enum":[
|
2273
|
-
"Healthy",
|
2274
|
-
"Unhealthy",
|
2275
|
-
"LastKnownStatus"
|
2276
|
-
]
|
2277
|
-
},
|
2278
|
-
"InvalidArgument":{
|
2279
|
-
"type":"structure",
|
2280
|
-
"members":{
|
2281
|
-
"message":{"shape":"ErrorMessage"}
|
2282
|
-
},
|
2283
|
-
"exception":true
|
2284
|
-
},
|
2285
|
-
"InvalidChangeBatch":{
|
2286
|
-
"type":"structure",
|
2287
|
-
"members":{
|
2288
|
-
"messages":{"shape":"ErrorMessages"},
|
2289
|
-
"message":{"shape":"ErrorMessage"}
|
2290
|
-
},
|
2291
|
-
"exception":true
|
2292
|
-
},
|
2293
|
-
"InvalidDomainName":{
|
2294
|
-
"type":"structure",
|
2295
|
-
"members":{
|
2296
|
-
"message":{"shape":"ErrorMessage"}
|
2297
|
-
},
|
2298
|
-
"error":{"httpStatusCode":400},
|
2299
|
-
"exception":true
|
2300
|
-
},
|
2301
|
-
"InvalidInput":{
|
2302
|
-
"type":"structure",
|
2303
|
-
"members":{
|
2304
|
-
"message":{"shape":"ErrorMessage"}
|
2305
|
-
},
|
2306
|
-
"error":{"httpStatusCode":400},
|
2307
|
-
"exception":true
|
2308
|
-
},
|
2309
|
-
"InvalidPaginationToken":{
|
2310
|
-
"type":"structure",
|
2311
|
-
"members":{
|
2312
|
-
"message":{"shape":"ErrorMessage"}
|
2313
|
-
},
|
2314
|
-
"error":{"httpStatusCode":400},
|
2315
|
-
"exception":true
|
2316
|
-
},
|
2317
|
-
"InvalidTrafficPolicyDocument":{
|
2318
|
-
"type":"structure",
|
2319
|
-
"members":{
|
2320
|
-
"message":{"shape":"ErrorMessage"}
|
2321
|
-
},
|
2322
|
-
"error":{"httpStatusCode":400},
|
2323
|
-
"exception":true
|
2324
|
-
},
|
2325
|
-
"InvalidVPCId":{
|
2326
|
-
"type":"structure",
|
2327
|
-
"members":{
|
2328
|
-
"message":{"shape":"ErrorMessage"}
|
2329
|
-
},
|
2330
|
-
"error":{"httpStatusCode":400},
|
2331
|
-
"exception":true
|
2332
|
-
},
|
2333
|
-
"Inverted":{"type":"boolean"},
|
2334
|
-
"IsPrivateZone":{"type":"boolean"},
|
2335
|
-
"LastVPCAssociation":{
|
2336
|
-
"type":"structure",
|
2337
|
-
"members":{
|
2338
|
-
"message":{"shape":"ErrorMessage"}
|
2339
|
-
},
|
2340
|
-
"error":{"httpStatusCode":400},
|
2341
|
-
"exception":true
|
2342
|
-
},
|
2343
|
-
"LimitValue":{
|
2344
|
-
"type":"long",
|
2345
|
-
"min":1
|
2346
|
-
},
|
2347
|
-
"LimitsExceeded":{
|
2348
|
-
"type":"structure",
|
2349
|
-
"members":{
|
2350
|
-
"message":{"shape":"ErrorMessage"}
|
2351
|
-
},
|
2352
|
-
"exception":true
|
2353
|
-
},
|
2354
|
-
"LinkedService":{
|
2355
|
-
"type":"structure",
|
2356
|
-
"members":{
|
2357
|
-
"ServicePrincipal":{"shape":"ServicePrincipal"},
|
2358
|
-
"Description":{"shape":"ResourceDescription"}
|
2359
|
-
}
|
2360
|
-
},
|
2361
|
-
"ListGeoLocationsRequest":{
|
2362
|
-
"type":"structure",
|
2363
|
-
"members":{
|
2364
|
-
"StartContinentCode":{
|
2365
|
-
"shape":"GeoLocationContinentCode",
|
2366
|
-
"location":"querystring",
|
2367
|
-
"locationName":"startcontinentcode"
|
2368
|
-
},
|
2369
|
-
"StartCountryCode":{
|
2370
|
-
"shape":"GeoLocationCountryCode",
|
2371
|
-
"location":"querystring",
|
2372
|
-
"locationName":"startcountrycode"
|
2373
|
-
},
|
2374
|
-
"StartSubdivisionCode":{
|
2375
|
-
"shape":"GeoLocationSubdivisionCode",
|
2376
|
-
"location":"querystring",
|
2377
|
-
"locationName":"startsubdivisioncode"
|
2378
|
-
},
|
2379
|
-
"MaxItems":{
|
2380
|
-
"shape":"PageMaxItems",
|
2381
|
-
"location":"querystring",
|
2382
|
-
"locationName":"maxitems"
|
2383
|
-
}
|
2384
|
-
}
|
2385
|
-
},
|
2386
|
-
"ListGeoLocationsResponse":{
|
2387
|
-
"type":"structure",
|
2388
|
-
"required":[
|
2389
|
-
"GeoLocationDetailsList",
|
2390
|
-
"IsTruncated",
|
2391
|
-
"MaxItems"
|
2392
|
-
],
|
2393
|
-
"members":{
|
2394
|
-
"GeoLocationDetailsList":{"shape":"GeoLocationDetailsList"},
|
2395
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2396
|
-
"NextContinentCode":{"shape":"GeoLocationContinentCode"},
|
2397
|
-
"NextCountryCode":{"shape":"GeoLocationCountryCode"},
|
2398
|
-
"NextSubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
|
2399
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2400
|
-
}
|
2401
|
-
},
|
2402
|
-
"ListHealthChecksRequest":{
|
2403
|
-
"type":"structure",
|
2404
|
-
"members":{
|
2405
|
-
"Marker":{
|
2406
|
-
"shape":"PageMarker",
|
2407
|
-
"location":"querystring",
|
2408
|
-
"locationName":"marker"
|
2409
|
-
},
|
2410
|
-
"MaxItems":{
|
2411
|
-
"shape":"PageMaxItems",
|
2412
|
-
"location":"querystring",
|
2413
|
-
"locationName":"maxitems"
|
2414
|
-
}
|
2415
|
-
}
|
2416
|
-
},
|
2417
|
-
"ListHealthChecksResponse":{
|
2418
|
-
"type":"structure",
|
2419
|
-
"required":[
|
2420
|
-
"HealthChecks",
|
2421
|
-
"Marker",
|
2422
|
-
"IsTruncated",
|
2423
|
-
"MaxItems"
|
2424
|
-
],
|
2425
|
-
"members":{
|
2426
|
-
"HealthChecks":{"shape":"HealthChecks"},
|
2427
|
-
"Marker":{"shape":"PageMarker"},
|
2428
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2429
|
-
"NextMarker":{"shape":"PageMarker"},
|
2430
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2431
|
-
}
|
2432
|
-
},
|
2433
|
-
"ListHostedZonesByNameRequest":{
|
2434
|
-
"type":"structure",
|
2435
|
-
"members":{
|
2436
|
-
"DNSName":{
|
2437
|
-
"shape":"DNSName",
|
2438
|
-
"location":"querystring",
|
2439
|
-
"locationName":"dnsname"
|
2440
|
-
},
|
2441
|
-
"HostedZoneId":{
|
2442
|
-
"shape":"ResourceId",
|
2443
|
-
"location":"querystring",
|
2444
|
-
"locationName":"hostedzoneid"
|
2445
|
-
},
|
2446
|
-
"MaxItems":{
|
2447
|
-
"shape":"PageMaxItems",
|
2448
|
-
"location":"querystring",
|
2449
|
-
"locationName":"maxitems"
|
2450
|
-
}
|
2451
|
-
}
|
2452
|
-
},
|
2453
|
-
"ListHostedZonesByNameResponse":{
|
2454
|
-
"type":"structure",
|
2455
|
-
"required":[
|
2456
|
-
"HostedZones",
|
2457
|
-
"IsTruncated",
|
2458
|
-
"MaxItems"
|
2459
|
-
],
|
2460
|
-
"members":{
|
2461
|
-
"HostedZones":{"shape":"HostedZones"},
|
2462
|
-
"DNSName":{"shape":"DNSName"},
|
2463
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
2464
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2465
|
-
"NextDNSName":{"shape":"DNSName"},
|
2466
|
-
"NextHostedZoneId":{"shape":"ResourceId"},
|
2467
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2468
|
-
}
|
2469
|
-
},
|
2470
|
-
"ListHostedZonesRequest":{
|
2471
|
-
"type":"structure",
|
2472
|
-
"members":{
|
2473
|
-
"Marker":{
|
2474
|
-
"shape":"PageMarker",
|
2475
|
-
"location":"querystring",
|
2476
|
-
"locationName":"marker"
|
2477
|
-
},
|
2478
|
-
"MaxItems":{
|
2479
|
-
"shape":"PageMaxItems",
|
2480
|
-
"location":"querystring",
|
2481
|
-
"locationName":"maxitems"
|
2482
|
-
},
|
2483
|
-
"DelegationSetId":{
|
2484
|
-
"shape":"ResourceId",
|
2485
|
-
"location":"querystring",
|
2486
|
-
"locationName":"delegationsetid"
|
2487
|
-
}
|
2488
|
-
}
|
2489
|
-
},
|
2490
|
-
"ListHostedZonesResponse":{
|
2491
|
-
"type":"structure",
|
2492
|
-
"required":[
|
2493
|
-
"HostedZones",
|
2494
|
-
"Marker",
|
2495
|
-
"IsTruncated",
|
2496
|
-
"MaxItems"
|
2497
|
-
],
|
2498
|
-
"members":{
|
2499
|
-
"HostedZones":{"shape":"HostedZones"},
|
2500
|
-
"Marker":{"shape":"PageMarker"},
|
2501
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2502
|
-
"NextMarker":{"shape":"PageMarker"},
|
2503
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2504
|
-
}
|
2505
|
-
},
|
2506
|
-
"ListQueryLoggingConfigsRequest":{
|
2507
|
-
"type":"structure",
|
2508
|
-
"members":{
|
2509
|
-
"HostedZoneId":{
|
2510
|
-
"shape":"ResourceId",
|
2511
|
-
"location":"querystring",
|
2512
|
-
"locationName":"hostedzoneid"
|
2513
|
-
},
|
2514
|
-
"NextToken":{
|
2515
|
-
"shape":"PaginationToken",
|
2516
|
-
"location":"querystring",
|
2517
|
-
"locationName":"nexttoken"
|
2518
|
-
},
|
2519
|
-
"MaxResults":{
|
2520
|
-
"shape":"MaxResults",
|
2521
|
-
"location":"querystring",
|
2522
|
-
"locationName":"maxresults"
|
2523
|
-
}
|
2524
|
-
}
|
2525
|
-
},
|
2526
|
-
"ListQueryLoggingConfigsResponse":{
|
2527
|
-
"type":"structure",
|
2528
|
-
"required":["QueryLoggingConfigs"],
|
2529
|
-
"members":{
|
2530
|
-
"QueryLoggingConfigs":{"shape":"QueryLoggingConfigs"},
|
2531
|
-
"NextToken":{"shape":"PaginationToken"}
|
2532
|
-
}
|
2533
|
-
},
|
2534
|
-
"ListResourceRecordSetsRequest":{
|
2535
|
-
"type":"structure",
|
2536
|
-
"required":["HostedZoneId"],
|
2537
|
-
"members":{
|
2538
|
-
"HostedZoneId":{
|
2539
|
-
"shape":"ResourceId",
|
2540
|
-
"location":"uri",
|
2541
|
-
"locationName":"Id"
|
2542
|
-
},
|
2543
|
-
"StartRecordName":{
|
2544
|
-
"shape":"DNSName",
|
2545
|
-
"location":"querystring",
|
2546
|
-
"locationName":"name"
|
2547
|
-
},
|
2548
|
-
"StartRecordType":{
|
2549
|
-
"shape":"RRType",
|
2550
|
-
"location":"querystring",
|
2551
|
-
"locationName":"type"
|
2552
|
-
},
|
2553
|
-
"StartRecordIdentifier":{
|
2554
|
-
"shape":"ResourceRecordSetIdentifier",
|
2555
|
-
"location":"querystring",
|
2556
|
-
"locationName":"identifier"
|
2557
|
-
},
|
2558
|
-
"MaxItems":{
|
2559
|
-
"shape":"PageMaxItems",
|
2560
|
-
"location":"querystring",
|
2561
|
-
"locationName":"maxitems"
|
2562
|
-
}
|
2563
|
-
}
|
2564
|
-
},
|
2565
|
-
"ListResourceRecordSetsResponse":{
|
2566
|
-
"type":"structure",
|
2567
|
-
"required":[
|
2568
|
-
"ResourceRecordSets",
|
2569
|
-
"IsTruncated",
|
2570
|
-
"MaxItems"
|
2571
|
-
],
|
2572
|
-
"members":{
|
2573
|
-
"ResourceRecordSets":{"shape":"ResourceRecordSets"},
|
2574
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2575
|
-
"NextRecordName":{"shape":"DNSName"},
|
2576
|
-
"NextRecordType":{"shape":"RRType"},
|
2577
|
-
"NextRecordIdentifier":{"shape":"ResourceRecordSetIdentifier"},
|
2578
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2579
|
-
}
|
2580
|
-
},
|
2581
|
-
"ListReusableDelegationSetsRequest":{
|
2582
|
-
"type":"structure",
|
2583
|
-
"members":{
|
2584
|
-
"Marker":{
|
2585
|
-
"shape":"PageMarker",
|
2586
|
-
"location":"querystring",
|
2587
|
-
"locationName":"marker"
|
2588
|
-
},
|
2589
|
-
"MaxItems":{
|
2590
|
-
"shape":"PageMaxItems",
|
2591
|
-
"location":"querystring",
|
2592
|
-
"locationName":"maxitems"
|
2593
|
-
}
|
2594
|
-
}
|
2595
|
-
},
|
2596
|
-
"ListReusableDelegationSetsResponse":{
|
2597
|
-
"type":"structure",
|
2598
|
-
"required":[
|
2599
|
-
"DelegationSets",
|
2600
|
-
"Marker",
|
2601
|
-
"IsTruncated",
|
2602
|
-
"MaxItems"
|
2603
|
-
],
|
2604
|
-
"members":{
|
2605
|
-
"DelegationSets":{"shape":"DelegationSets"},
|
2606
|
-
"Marker":{"shape":"PageMarker"},
|
2607
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2608
|
-
"NextMarker":{"shape":"PageMarker"},
|
2609
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2610
|
-
}
|
2611
|
-
},
|
2612
|
-
"ListTagsForResourceRequest":{
|
2613
|
-
"type":"structure",
|
2614
|
-
"required":[
|
2615
|
-
"ResourceType",
|
2616
|
-
"ResourceId"
|
2617
|
-
],
|
2618
|
-
"members":{
|
2619
|
-
"ResourceType":{
|
2620
|
-
"shape":"TagResourceType",
|
2621
|
-
"location":"uri",
|
2622
|
-
"locationName":"ResourceType"
|
2623
|
-
},
|
2624
|
-
"ResourceId":{
|
2625
|
-
"shape":"TagResourceId",
|
2626
|
-
"location":"uri",
|
2627
|
-
"locationName":"ResourceId"
|
2628
|
-
}
|
2629
|
-
}
|
2630
|
-
},
|
2631
|
-
"ListTagsForResourceResponse":{
|
2632
|
-
"type":"structure",
|
2633
|
-
"required":["ResourceTagSet"],
|
2634
|
-
"members":{
|
2635
|
-
"ResourceTagSet":{"shape":"ResourceTagSet"}
|
2636
|
-
}
|
2637
|
-
},
|
2638
|
-
"ListTagsForResourcesRequest":{
|
2639
|
-
"type":"structure",
|
2640
|
-
"required":[
|
2641
|
-
"ResourceType",
|
2642
|
-
"ResourceIds"
|
2643
|
-
],
|
2644
|
-
"members":{
|
2645
|
-
"ResourceType":{
|
2646
|
-
"shape":"TagResourceType",
|
2647
|
-
"location":"uri",
|
2648
|
-
"locationName":"ResourceType"
|
2649
|
-
},
|
2650
|
-
"ResourceIds":{"shape":"TagResourceIdList"}
|
2651
|
-
}
|
2652
|
-
},
|
2653
|
-
"ListTagsForResourcesResponse":{
|
2654
|
-
"type":"structure",
|
2655
|
-
"required":["ResourceTagSets"],
|
2656
|
-
"members":{
|
2657
|
-
"ResourceTagSets":{"shape":"ResourceTagSetList"}
|
2658
|
-
}
|
2659
|
-
},
|
2660
|
-
"ListTrafficPoliciesRequest":{
|
2661
|
-
"type":"structure",
|
2662
|
-
"members":{
|
2663
|
-
"TrafficPolicyIdMarker":{
|
2664
|
-
"shape":"TrafficPolicyId",
|
2665
|
-
"location":"querystring",
|
2666
|
-
"locationName":"trafficpolicyid"
|
2667
|
-
},
|
2668
|
-
"MaxItems":{
|
2669
|
-
"shape":"PageMaxItems",
|
2670
|
-
"location":"querystring",
|
2671
|
-
"locationName":"maxitems"
|
2672
|
-
}
|
2673
|
-
}
|
2674
|
-
},
|
2675
|
-
"ListTrafficPoliciesResponse":{
|
2676
|
-
"type":"structure",
|
2677
|
-
"required":[
|
2678
|
-
"TrafficPolicySummaries",
|
2679
|
-
"IsTruncated",
|
2680
|
-
"TrafficPolicyIdMarker",
|
2681
|
-
"MaxItems"
|
2682
|
-
],
|
2683
|
-
"members":{
|
2684
|
-
"TrafficPolicySummaries":{"shape":"TrafficPolicySummaries"},
|
2685
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2686
|
-
"TrafficPolicyIdMarker":{"shape":"TrafficPolicyId"},
|
2687
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2688
|
-
}
|
2689
|
-
},
|
2690
|
-
"ListTrafficPolicyInstancesByHostedZoneRequest":{
|
2691
|
-
"type":"structure",
|
2692
|
-
"required":["HostedZoneId"],
|
2693
|
-
"members":{
|
2694
|
-
"HostedZoneId":{
|
2695
|
-
"shape":"ResourceId",
|
2696
|
-
"location":"querystring",
|
2697
|
-
"locationName":"id"
|
2698
|
-
},
|
2699
|
-
"TrafficPolicyInstanceNameMarker":{
|
2700
|
-
"shape":"DNSName",
|
2701
|
-
"location":"querystring",
|
2702
|
-
"locationName":"trafficpolicyinstancename"
|
2703
|
-
},
|
2704
|
-
"TrafficPolicyInstanceTypeMarker":{
|
2705
|
-
"shape":"RRType",
|
2706
|
-
"location":"querystring",
|
2707
|
-
"locationName":"trafficpolicyinstancetype"
|
2708
|
-
},
|
2709
|
-
"MaxItems":{
|
2710
|
-
"shape":"PageMaxItems",
|
2711
|
-
"location":"querystring",
|
2712
|
-
"locationName":"maxitems"
|
2713
|
-
}
|
2714
|
-
}
|
2715
|
-
},
|
2716
|
-
"ListTrafficPolicyInstancesByHostedZoneResponse":{
|
2717
|
-
"type":"structure",
|
2718
|
-
"required":[
|
2719
|
-
"TrafficPolicyInstances",
|
2720
|
-
"IsTruncated",
|
2721
|
-
"MaxItems"
|
2722
|
-
],
|
2723
|
-
"members":{
|
2724
|
-
"TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
|
2725
|
-
"TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
|
2726
|
-
"TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
|
2727
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2728
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2729
|
-
}
|
2730
|
-
},
|
2731
|
-
"ListTrafficPolicyInstancesByPolicyRequest":{
|
2732
|
-
"type":"structure",
|
2733
|
-
"required":[
|
2734
|
-
"TrafficPolicyId",
|
2735
|
-
"TrafficPolicyVersion"
|
2736
|
-
],
|
2737
|
-
"members":{
|
2738
|
-
"TrafficPolicyId":{
|
2739
|
-
"shape":"TrafficPolicyId",
|
2740
|
-
"location":"querystring",
|
2741
|
-
"locationName":"id"
|
2742
|
-
},
|
2743
|
-
"TrafficPolicyVersion":{
|
2744
|
-
"shape":"TrafficPolicyVersion",
|
2745
|
-
"location":"querystring",
|
2746
|
-
"locationName":"version"
|
2747
|
-
},
|
2748
|
-
"HostedZoneIdMarker":{
|
2749
|
-
"shape":"ResourceId",
|
2750
|
-
"location":"querystring",
|
2751
|
-
"locationName":"hostedzoneid"
|
2752
|
-
},
|
2753
|
-
"TrafficPolicyInstanceNameMarker":{
|
2754
|
-
"shape":"DNSName",
|
2755
|
-
"location":"querystring",
|
2756
|
-
"locationName":"trafficpolicyinstancename"
|
2757
|
-
},
|
2758
|
-
"TrafficPolicyInstanceTypeMarker":{
|
2759
|
-
"shape":"RRType",
|
2760
|
-
"location":"querystring",
|
2761
|
-
"locationName":"trafficpolicyinstancetype"
|
2762
|
-
},
|
2763
|
-
"MaxItems":{
|
2764
|
-
"shape":"PageMaxItems",
|
2765
|
-
"location":"querystring",
|
2766
|
-
"locationName":"maxitems"
|
2767
|
-
}
|
2768
|
-
}
|
2769
|
-
},
|
2770
|
-
"ListTrafficPolicyInstancesByPolicyResponse":{
|
2771
|
-
"type":"structure",
|
2772
|
-
"required":[
|
2773
|
-
"TrafficPolicyInstances",
|
2774
|
-
"IsTruncated",
|
2775
|
-
"MaxItems"
|
2776
|
-
],
|
2777
|
-
"members":{
|
2778
|
-
"TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
|
2779
|
-
"HostedZoneIdMarker":{"shape":"ResourceId"},
|
2780
|
-
"TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
|
2781
|
-
"TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
|
2782
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2783
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2784
|
-
}
|
2785
|
-
},
|
2786
|
-
"ListTrafficPolicyInstancesRequest":{
|
2787
|
-
"type":"structure",
|
2788
|
-
"members":{
|
2789
|
-
"HostedZoneIdMarker":{
|
2790
|
-
"shape":"ResourceId",
|
2791
|
-
"location":"querystring",
|
2792
|
-
"locationName":"hostedzoneid"
|
2793
|
-
},
|
2794
|
-
"TrafficPolicyInstanceNameMarker":{
|
2795
|
-
"shape":"DNSName",
|
2796
|
-
"location":"querystring",
|
2797
|
-
"locationName":"trafficpolicyinstancename"
|
2798
|
-
},
|
2799
|
-
"TrafficPolicyInstanceTypeMarker":{
|
2800
|
-
"shape":"RRType",
|
2801
|
-
"location":"querystring",
|
2802
|
-
"locationName":"trafficpolicyinstancetype"
|
2803
|
-
},
|
2804
|
-
"MaxItems":{
|
2805
|
-
"shape":"PageMaxItems",
|
2806
|
-
"location":"querystring",
|
2807
|
-
"locationName":"maxitems"
|
2808
|
-
}
|
2809
|
-
}
|
2810
|
-
},
|
2811
|
-
"ListTrafficPolicyInstancesResponse":{
|
2812
|
-
"type":"structure",
|
2813
|
-
"required":[
|
2814
|
-
"TrafficPolicyInstances",
|
2815
|
-
"IsTruncated",
|
2816
|
-
"MaxItems"
|
2817
|
-
],
|
2818
|
-
"members":{
|
2819
|
-
"TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
|
2820
|
-
"HostedZoneIdMarker":{"shape":"ResourceId"},
|
2821
|
-
"TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
|
2822
|
-
"TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
|
2823
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2824
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2825
|
-
}
|
2826
|
-
},
|
2827
|
-
"ListTrafficPolicyVersionsRequest":{
|
2828
|
-
"type":"structure",
|
2829
|
-
"required":["Id"],
|
2830
|
-
"members":{
|
2831
|
-
"Id":{
|
2832
|
-
"shape":"TrafficPolicyId",
|
2833
|
-
"location":"uri",
|
2834
|
-
"locationName":"Id"
|
2835
|
-
},
|
2836
|
-
"TrafficPolicyVersionMarker":{
|
2837
|
-
"shape":"TrafficPolicyVersionMarker",
|
2838
|
-
"location":"querystring",
|
2839
|
-
"locationName":"trafficpolicyversion"
|
2840
|
-
},
|
2841
|
-
"MaxItems":{
|
2842
|
-
"shape":"PageMaxItems",
|
2843
|
-
"location":"querystring",
|
2844
|
-
"locationName":"maxitems"
|
2845
|
-
}
|
2846
|
-
}
|
2847
|
-
},
|
2848
|
-
"ListTrafficPolicyVersionsResponse":{
|
2849
|
-
"type":"structure",
|
2850
|
-
"required":[
|
2851
|
-
"TrafficPolicies",
|
2852
|
-
"IsTruncated",
|
2853
|
-
"TrafficPolicyVersionMarker",
|
2854
|
-
"MaxItems"
|
2855
|
-
],
|
2856
|
-
"members":{
|
2857
|
-
"TrafficPolicies":{"shape":"TrafficPolicies"},
|
2858
|
-
"IsTruncated":{"shape":"PageTruncated"},
|
2859
|
-
"TrafficPolicyVersionMarker":{"shape":"TrafficPolicyVersionMarker"},
|
2860
|
-
"MaxItems":{"shape":"PageMaxItems"}
|
2861
|
-
}
|
2862
|
-
},
|
2863
|
-
"ListVPCAssociationAuthorizationsRequest":{
|
2864
|
-
"type":"structure",
|
2865
|
-
"required":["HostedZoneId"],
|
2866
|
-
"members":{
|
2867
|
-
"HostedZoneId":{
|
2868
|
-
"shape":"ResourceId",
|
2869
|
-
"location":"uri",
|
2870
|
-
"locationName":"Id"
|
2871
|
-
},
|
2872
|
-
"NextToken":{
|
2873
|
-
"shape":"PaginationToken",
|
2874
|
-
"location":"querystring",
|
2875
|
-
"locationName":"nexttoken"
|
2876
|
-
},
|
2877
|
-
"MaxResults":{
|
2878
|
-
"shape":"MaxResults",
|
2879
|
-
"location":"querystring",
|
2880
|
-
"locationName":"maxresults"
|
2881
|
-
}
|
2882
|
-
}
|
2883
|
-
},
|
2884
|
-
"ListVPCAssociationAuthorizationsResponse":{
|
2885
|
-
"type":"structure",
|
2886
|
-
"required":[
|
2887
|
-
"HostedZoneId",
|
2888
|
-
"VPCs"
|
2889
|
-
],
|
2890
|
-
"members":{
|
2891
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
2892
|
-
"NextToken":{"shape":"PaginationToken"},
|
2893
|
-
"VPCs":{"shape":"VPCs"}
|
2894
|
-
}
|
2895
|
-
},
|
2896
|
-
"MaxResults":{"type":"string"},
|
2897
|
-
"MeasureLatency":{"type":"boolean"},
|
2898
|
-
"Message":{
|
2899
|
-
"type":"string",
|
2900
|
-
"max":1024
|
2901
|
-
},
|
2902
|
-
"MetricName":{
|
2903
|
-
"type":"string",
|
2904
|
-
"max":255,
|
2905
|
-
"min":1
|
2906
|
-
},
|
2907
|
-
"Nameserver":{
|
2908
|
-
"type":"string",
|
2909
|
-
"max":255,
|
2910
|
-
"min":0
|
2911
|
-
},
|
2912
|
-
"Namespace":{
|
2913
|
-
"type":"string",
|
2914
|
-
"max":255,
|
2915
|
-
"min":1
|
2916
|
-
},
|
2917
|
-
"NoSuchChange":{
|
2918
|
-
"type":"structure",
|
2919
|
-
"members":{
|
2920
|
-
"message":{"shape":"ErrorMessage"}
|
2921
|
-
},
|
2922
|
-
"error":{"httpStatusCode":404},
|
2923
|
-
"exception":true
|
2924
|
-
},
|
2925
|
-
"NoSuchCloudWatchLogsLogGroup":{
|
2926
|
-
"type":"structure",
|
2927
|
-
"members":{
|
2928
|
-
"message":{"shape":"ErrorMessage"}
|
2929
|
-
},
|
2930
|
-
"error":{"httpStatusCode":404},
|
2931
|
-
"exception":true
|
2932
|
-
},
|
2933
|
-
"NoSuchDelegationSet":{
|
2934
|
-
"type":"structure",
|
2935
|
-
"members":{
|
2936
|
-
"message":{"shape":"ErrorMessage"}
|
2937
|
-
},
|
2938
|
-
"exception":true
|
2939
|
-
},
|
2940
|
-
"NoSuchGeoLocation":{
|
2941
|
-
"type":"structure",
|
2942
|
-
"members":{
|
2943
|
-
"message":{"shape":"ErrorMessage"}
|
2944
|
-
},
|
2945
|
-
"error":{"httpStatusCode":404},
|
2946
|
-
"exception":true
|
2947
|
-
},
|
2948
|
-
"NoSuchHealthCheck":{
|
2949
|
-
"type":"structure",
|
2950
|
-
"members":{
|
2951
|
-
"message":{"shape":"ErrorMessage"}
|
2952
|
-
},
|
2953
|
-
"error":{"httpStatusCode":404},
|
2954
|
-
"exception":true
|
2955
|
-
},
|
2956
|
-
"NoSuchHostedZone":{
|
2957
|
-
"type":"structure",
|
2958
|
-
"members":{
|
2959
|
-
"message":{"shape":"ErrorMessage"}
|
2960
|
-
},
|
2961
|
-
"error":{"httpStatusCode":404},
|
2962
|
-
"exception":true
|
2963
|
-
},
|
2964
|
-
"NoSuchQueryLoggingConfig":{
|
2965
|
-
"type":"structure",
|
2966
|
-
"members":{
|
2967
|
-
"message":{"shape":"ErrorMessage"}
|
2968
|
-
},
|
2969
|
-
"error":{"httpStatusCode":404},
|
2970
|
-
"exception":true
|
2971
|
-
},
|
2972
|
-
"NoSuchTrafficPolicy":{
|
2973
|
-
"type":"structure",
|
2974
|
-
"members":{
|
2975
|
-
"message":{"shape":"ErrorMessage"}
|
2976
|
-
},
|
2977
|
-
"error":{"httpStatusCode":404},
|
2978
|
-
"exception":true
|
2979
|
-
},
|
2980
|
-
"NoSuchTrafficPolicyInstance":{
|
2981
|
-
"type":"structure",
|
2982
|
-
"members":{
|
2983
|
-
"message":{"shape":"ErrorMessage"}
|
2984
|
-
},
|
2985
|
-
"error":{"httpStatusCode":404},
|
2986
|
-
"exception":true
|
2987
|
-
},
|
2988
|
-
"Nonce":{
|
2989
|
-
"type":"string",
|
2990
|
-
"max":128,
|
2991
|
-
"min":1
|
2992
|
-
},
|
2993
|
-
"NotAuthorizedException":{
|
2994
|
-
"type":"structure",
|
2995
|
-
"members":{
|
2996
|
-
"message":{"shape":"ErrorMessage"}
|
2997
|
-
},
|
2998
|
-
"error":{"httpStatusCode":401},
|
2999
|
-
"exception":true
|
3000
|
-
},
|
3001
|
-
"PageMarker":{
|
3002
|
-
"type":"string",
|
3003
|
-
"max":64
|
3004
|
-
},
|
3005
|
-
"PageMaxItems":{"type":"string"},
|
3006
|
-
"PageTruncated":{"type":"boolean"},
|
3007
|
-
"PaginationToken":{
|
3008
|
-
"type":"string",
|
3009
|
-
"max":256
|
3010
|
-
},
|
3011
|
-
"Period":{
|
3012
|
-
"type":"integer",
|
3013
|
-
"min":60
|
3014
|
-
},
|
3015
|
-
"Port":{
|
3016
|
-
"type":"integer",
|
3017
|
-
"max":65535,
|
3018
|
-
"min":1
|
3019
|
-
},
|
3020
|
-
"PriorRequestNotComplete":{
|
3021
|
-
"type":"structure",
|
3022
|
-
"members":{
|
3023
|
-
"message":{"shape":"ErrorMessage"}
|
3024
|
-
},
|
3025
|
-
"error":{"httpStatusCode":400},
|
3026
|
-
"exception":true
|
3027
|
-
},
|
3028
|
-
"PublicZoneVPCAssociation":{
|
3029
|
-
"type":"structure",
|
3030
|
-
"members":{
|
3031
|
-
"message":{"shape":"ErrorMessage"}
|
3032
|
-
},
|
3033
|
-
"error":{"httpStatusCode":400},
|
3034
|
-
"exception":true
|
3035
|
-
},
|
3036
|
-
"QueryLoggingConfig":{
|
3037
|
-
"type":"structure",
|
3038
|
-
"required":[
|
3039
|
-
"Id",
|
3040
|
-
"HostedZoneId",
|
3041
|
-
"CloudWatchLogsLogGroupArn"
|
3042
|
-
],
|
3043
|
-
"members":{
|
3044
|
-
"Id":{"shape":"QueryLoggingConfigId"},
|
3045
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
3046
|
-
"CloudWatchLogsLogGroupArn":{"shape":"CloudWatchLogsLogGroupArn"}
|
3047
|
-
}
|
3048
|
-
},
|
3049
|
-
"QueryLoggingConfigAlreadyExists":{
|
3050
|
-
"type":"structure",
|
3051
|
-
"members":{
|
3052
|
-
"message":{"shape":"ErrorMessage"}
|
3053
|
-
},
|
3054
|
-
"error":{"httpStatusCode":409},
|
3055
|
-
"exception":true
|
3056
|
-
},
|
3057
|
-
"QueryLoggingConfigId":{
|
3058
|
-
"type":"string",
|
3059
|
-
"max":36,
|
3060
|
-
"min":1
|
3061
|
-
},
|
3062
|
-
"QueryLoggingConfigs":{
|
3063
|
-
"type":"list",
|
3064
|
-
"member":{
|
3065
|
-
"shape":"QueryLoggingConfig",
|
3066
|
-
"locationName":"QueryLoggingConfig"
|
3067
|
-
}
|
3068
|
-
},
|
3069
|
-
"RData":{
|
3070
|
-
"type":"string",
|
3071
|
-
"max":4000
|
3072
|
-
},
|
3073
|
-
"RRType":{
|
3074
|
-
"type":"string",
|
3075
|
-
"enum":[
|
3076
|
-
"SOA",
|
3077
|
-
"A",
|
3078
|
-
"TXT",
|
3079
|
-
"NS",
|
3080
|
-
"CNAME",
|
3081
|
-
"MX",
|
3082
|
-
"NAPTR",
|
3083
|
-
"PTR",
|
3084
|
-
"SRV",
|
3085
|
-
"SPF",
|
3086
|
-
"AAAA",
|
3087
|
-
"CAA"
|
3088
|
-
]
|
3089
|
-
},
|
3090
|
-
"RecordData":{
|
3091
|
-
"type":"list",
|
3092
|
-
"member":{
|
3093
|
-
"shape":"RecordDataEntry",
|
3094
|
-
"locationName":"RecordDataEntry"
|
3095
|
-
}
|
3096
|
-
},
|
3097
|
-
"RecordDataEntry":{
|
3098
|
-
"type":"string",
|
3099
|
-
"max":512,
|
3100
|
-
"min":0
|
3101
|
-
},
|
3102
|
-
"RequestInterval":{
|
3103
|
-
"type":"integer",
|
3104
|
-
"max":30,
|
3105
|
-
"min":10
|
3106
|
-
},
|
3107
|
-
"ResettableElementName":{
|
3108
|
-
"type":"string",
|
3109
|
-
"enum":[
|
3110
|
-
"FullyQualifiedDomainName",
|
3111
|
-
"Regions",
|
3112
|
-
"ResourcePath",
|
3113
|
-
"ChildHealthChecks"
|
3114
|
-
],
|
3115
|
-
"max":64,
|
3116
|
-
"min":1
|
3117
|
-
},
|
3118
|
-
"ResettableElementNameList":{
|
3119
|
-
"type":"list",
|
3120
|
-
"member":{
|
3121
|
-
"shape":"ResettableElementName",
|
3122
|
-
"locationName":"ResettableElementName"
|
3123
|
-
},
|
3124
|
-
"max":64
|
3125
|
-
},
|
3126
|
-
"ResourceDescription":{
|
3127
|
-
"type":"string",
|
3128
|
-
"max":256
|
3129
|
-
},
|
3130
|
-
"ResourceId":{
|
3131
|
-
"type":"string",
|
3132
|
-
"max":32
|
3133
|
-
},
|
3134
|
-
"ResourcePath":{
|
3135
|
-
"type":"string",
|
3136
|
-
"max":255
|
3137
|
-
},
|
3138
|
-
"ResourceRecord":{
|
3139
|
-
"type":"structure",
|
3140
|
-
"required":["Value"],
|
3141
|
-
"members":{
|
3142
|
-
"Value":{"shape":"RData"}
|
3143
|
-
}
|
3144
|
-
},
|
3145
|
-
"ResourceRecordSet":{
|
3146
|
-
"type":"structure",
|
3147
|
-
"required":[
|
3148
|
-
"Name",
|
3149
|
-
"Type"
|
3150
|
-
],
|
3151
|
-
"members":{
|
3152
|
-
"Name":{"shape":"DNSName"},
|
3153
|
-
"Type":{"shape":"RRType"},
|
3154
|
-
"SetIdentifier":{"shape":"ResourceRecordSetIdentifier"},
|
3155
|
-
"Weight":{"shape":"ResourceRecordSetWeight"},
|
3156
|
-
"Region":{"shape":"ResourceRecordSetRegion"},
|
3157
|
-
"GeoLocation":{"shape":"GeoLocation"},
|
3158
|
-
"Failover":{"shape":"ResourceRecordSetFailover"},
|
3159
|
-
"MultiValueAnswer":{"shape":"ResourceRecordSetMultiValueAnswer"},
|
3160
|
-
"TTL":{"shape":"TTL"},
|
3161
|
-
"ResourceRecords":{"shape":"ResourceRecords"},
|
3162
|
-
"AliasTarget":{"shape":"AliasTarget"},
|
3163
|
-
"HealthCheckId":{"shape":"HealthCheckId"},
|
3164
|
-
"TrafficPolicyInstanceId":{"shape":"TrafficPolicyInstanceId"}
|
3165
|
-
}
|
3166
|
-
},
|
3167
|
-
"ResourceRecordSetFailover":{
|
3168
|
-
"type":"string",
|
3169
|
-
"enum":[
|
3170
|
-
"PRIMARY",
|
3171
|
-
"SECONDARY"
|
3172
|
-
]
|
3173
|
-
},
|
3174
|
-
"ResourceRecordSetIdentifier":{
|
3175
|
-
"type":"string",
|
3176
|
-
"max":128,
|
3177
|
-
"min":1
|
3178
|
-
},
|
3179
|
-
"ResourceRecordSetMultiValueAnswer":{"type":"boolean"},
|
3180
|
-
"ResourceRecordSetRegion":{
|
3181
|
-
"type":"string",
|
3182
|
-
"enum":[
|
3183
|
-
"us-east-1",
|
3184
|
-
"us-east-2",
|
3185
|
-
"us-west-1",
|
3186
|
-
"us-west-2",
|
3187
|
-
"ca-central-1",
|
3188
|
-
"eu-west-1",
|
3189
|
-
"eu-west-2",
|
3190
|
-
"eu-west-3",
|
3191
|
-
"eu-central-1",
|
3192
|
-
"ap-southeast-1",
|
3193
|
-
"ap-southeast-2",
|
3194
|
-
"ap-northeast-1",
|
3195
|
-
"ap-northeast-2",
|
3196
|
-
"ap-northeast-3",
|
3197
|
-
"eu-north-1",
|
3198
|
-
"sa-east-1",
|
3199
|
-
"cn-north-1",
|
3200
|
-
"cn-northwest-1",
|
3201
|
-
"ap-east-1",
|
3202
|
-
"me-south-1",
|
3203
|
-
"ap-south-1"
|
3204
|
-
],
|
3205
|
-
"max":64,
|
3206
|
-
"min":1
|
3207
|
-
},
|
3208
|
-
"ResourceRecordSetWeight":{
|
3209
|
-
"type":"long",
|
3210
|
-
"max":255,
|
3211
|
-
"min":0
|
3212
|
-
},
|
3213
|
-
"ResourceRecordSets":{
|
3214
|
-
"type":"list",
|
3215
|
-
"member":{
|
3216
|
-
"shape":"ResourceRecordSet",
|
3217
|
-
"locationName":"ResourceRecordSet"
|
3218
|
-
}
|
3219
|
-
},
|
3220
|
-
"ResourceRecords":{
|
3221
|
-
"type":"list",
|
3222
|
-
"member":{
|
3223
|
-
"shape":"ResourceRecord",
|
3224
|
-
"locationName":"ResourceRecord"
|
3225
|
-
},
|
3226
|
-
"min":1
|
3227
|
-
},
|
3228
|
-
"ResourceTagSet":{
|
3229
|
-
"type":"structure",
|
3230
|
-
"members":{
|
3231
|
-
"ResourceType":{"shape":"TagResourceType"},
|
3232
|
-
"ResourceId":{"shape":"TagResourceId"},
|
3233
|
-
"Tags":{"shape":"TagList"}
|
3234
|
-
}
|
3235
|
-
},
|
3236
|
-
"ResourceTagSetList":{
|
3237
|
-
"type":"list",
|
3238
|
-
"member":{
|
3239
|
-
"shape":"ResourceTagSet",
|
3240
|
-
"locationName":"ResourceTagSet"
|
3241
|
-
}
|
3242
|
-
},
|
3243
|
-
"ResourceURI":{
|
3244
|
-
"type":"string",
|
3245
|
-
"max":1024
|
3246
|
-
},
|
3247
|
-
"ReusableDelegationSetLimit":{
|
3248
|
-
"type":"structure",
|
3249
|
-
"required":[
|
3250
|
-
"Type",
|
3251
|
-
"Value"
|
3252
|
-
],
|
3253
|
-
"members":{
|
3254
|
-
"Type":{"shape":"ReusableDelegationSetLimitType"},
|
3255
|
-
"Value":{"shape":"LimitValue"}
|
3256
|
-
}
|
3257
|
-
},
|
3258
|
-
"ReusableDelegationSetLimitType":{
|
3259
|
-
"type":"string",
|
3260
|
-
"enum":["MAX_ZONES_BY_REUSABLE_DELEGATION_SET"]
|
3261
|
-
},
|
3262
|
-
"SearchString":{
|
3263
|
-
"type":"string",
|
3264
|
-
"max":255
|
3265
|
-
},
|
3266
|
-
"ServicePrincipal":{
|
3267
|
-
"type":"string",
|
3268
|
-
"max":128
|
3269
|
-
},
|
3270
|
-
"Statistic":{
|
3271
|
-
"type":"string",
|
3272
|
-
"enum":[
|
3273
|
-
"Average",
|
3274
|
-
"Sum",
|
3275
|
-
"SampleCount",
|
3276
|
-
"Maximum",
|
3277
|
-
"Minimum"
|
3278
|
-
]
|
3279
|
-
},
|
3280
|
-
"Status":{"type":"string"},
|
3281
|
-
"StatusReport":{
|
3282
|
-
"type":"structure",
|
3283
|
-
"members":{
|
3284
|
-
"Status":{"shape":"Status"},
|
3285
|
-
"CheckedTime":{"shape":"TimeStamp"}
|
3286
|
-
}
|
3287
|
-
},
|
3288
|
-
"SubnetMask":{
|
3289
|
-
"type":"string",
|
3290
|
-
"max":3,
|
3291
|
-
"min":0
|
3292
|
-
},
|
3293
|
-
"TTL":{
|
3294
|
-
"type":"long",
|
3295
|
-
"max":2147483647,
|
3296
|
-
"min":0
|
3297
|
-
},
|
3298
|
-
"Tag":{
|
3299
|
-
"type":"structure",
|
3300
|
-
"members":{
|
3301
|
-
"Key":{"shape":"TagKey"},
|
3302
|
-
"Value":{"shape":"TagValue"}
|
3303
|
-
}
|
3304
|
-
},
|
3305
|
-
"TagKey":{
|
3306
|
-
"type":"string",
|
3307
|
-
"max":128
|
3308
|
-
},
|
3309
|
-
"TagKeyList":{
|
3310
|
-
"type":"list",
|
3311
|
-
"member":{
|
3312
|
-
"shape":"TagKey",
|
3313
|
-
"locationName":"Key"
|
3314
|
-
},
|
3315
|
-
"max":10,
|
3316
|
-
"min":1
|
3317
|
-
},
|
3318
|
-
"TagList":{
|
3319
|
-
"type":"list",
|
3320
|
-
"member":{
|
3321
|
-
"shape":"Tag",
|
3322
|
-
"locationName":"Tag"
|
3323
|
-
},
|
3324
|
-
"max":10,
|
3325
|
-
"min":1
|
3326
|
-
},
|
3327
|
-
"TagResourceId":{
|
3328
|
-
"type":"string",
|
3329
|
-
"max":64
|
3330
|
-
},
|
3331
|
-
"TagResourceIdList":{
|
3332
|
-
"type":"list",
|
3333
|
-
"member":{
|
3334
|
-
"shape":"TagResourceId",
|
3335
|
-
"locationName":"ResourceId"
|
3336
|
-
},
|
3337
|
-
"max":10,
|
3338
|
-
"min":1
|
3339
|
-
},
|
3340
|
-
"TagResourceType":{
|
3341
|
-
"type":"string",
|
3342
|
-
"enum":[
|
3343
|
-
"healthcheck",
|
3344
|
-
"hostedzone"
|
3345
|
-
]
|
3346
|
-
},
|
3347
|
-
"TagValue":{
|
3348
|
-
"type":"string",
|
3349
|
-
"max":256
|
3350
|
-
},
|
3351
|
-
"TestDNSAnswerRequest":{
|
3352
|
-
"type":"structure",
|
3353
|
-
"required":[
|
3354
|
-
"HostedZoneId",
|
3355
|
-
"RecordName",
|
3356
|
-
"RecordType"
|
3357
|
-
],
|
3358
|
-
"members":{
|
3359
|
-
"HostedZoneId":{
|
3360
|
-
"shape":"ResourceId",
|
3361
|
-
"location":"querystring",
|
3362
|
-
"locationName":"hostedzoneid"
|
3363
|
-
},
|
3364
|
-
"RecordName":{
|
3365
|
-
"shape":"DNSName",
|
3366
|
-
"location":"querystring",
|
3367
|
-
"locationName":"recordname"
|
3368
|
-
},
|
3369
|
-
"RecordType":{
|
3370
|
-
"shape":"RRType",
|
3371
|
-
"location":"querystring",
|
3372
|
-
"locationName":"recordtype"
|
3373
|
-
},
|
3374
|
-
"ResolverIP":{
|
3375
|
-
"shape":"IPAddress",
|
3376
|
-
"location":"querystring",
|
3377
|
-
"locationName":"resolverip"
|
3378
|
-
},
|
3379
|
-
"EDNS0ClientSubnetIP":{
|
3380
|
-
"shape":"IPAddress",
|
3381
|
-
"location":"querystring",
|
3382
|
-
"locationName":"edns0clientsubnetip"
|
3383
|
-
},
|
3384
|
-
"EDNS0ClientSubnetMask":{
|
3385
|
-
"shape":"SubnetMask",
|
3386
|
-
"location":"querystring",
|
3387
|
-
"locationName":"edns0clientsubnetmask"
|
3388
|
-
}
|
3389
|
-
}
|
3390
|
-
},
|
3391
|
-
"TestDNSAnswerResponse":{
|
3392
|
-
"type":"structure",
|
3393
|
-
"required":[
|
3394
|
-
"Nameserver",
|
3395
|
-
"RecordName",
|
3396
|
-
"RecordType",
|
3397
|
-
"RecordData",
|
3398
|
-
"ResponseCode",
|
3399
|
-
"Protocol"
|
3400
|
-
],
|
3401
|
-
"members":{
|
3402
|
-
"Nameserver":{"shape":"Nameserver"},
|
3403
|
-
"RecordName":{"shape":"DNSName"},
|
3404
|
-
"RecordType":{"shape":"RRType"},
|
3405
|
-
"RecordData":{"shape":"RecordData"},
|
3406
|
-
"ResponseCode":{"shape":"DNSRCode"},
|
3407
|
-
"Protocol":{"shape":"TransportProtocol"}
|
3408
|
-
}
|
3409
|
-
},
|
3410
|
-
"Threshold":{"type":"double"},
|
3411
|
-
"ThrottlingException":{
|
3412
|
-
"type":"structure",
|
3413
|
-
"members":{
|
3414
|
-
"message":{"shape":"ErrorMessage"}
|
3415
|
-
},
|
3416
|
-
"error":{"httpStatusCode":400},
|
3417
|
-
"exception":true
|
3418
|
-
},
|
3419
|
-
"TimeStamp":{"type":"timestamp"},
|
3420
|
-
"TooManyHealthChecks":{
|
3421
|
-
"type":"structure",
|
3422
|
-
"members":{
|
3423
|
-
"message":{"shape":"ErrorMessage"}
|
3424
|
-
},
|
3425
|
-
"exception":true
|
3426
|
-
},
|
3427
|
-
"TooManyHostedZones":{
|
3428
|
-
"type":"structure",
|
3429
|
-
"members":{
|
3430
|
-
"message":{"shape":"ErrorMessage"}
|
3431
|
-
},
|
3432
|
-
"error":{"httpStatusCode":400},
|
3433
|
-
"exception":true
|
3434
|
-
},
|
3435
|
-
"TooManyTrafficPolicies":{
|
3436
|
-
"type":"structure",
|
3437
|
-
"members":{
|
3438
|
-
"message":{"shape":"ErrorMessage"}
|
3439
|
-
},
|
3440
|
-
"error":{"httpStatusCode":400},
|
3441
|
-
"exception":true
|
3442
|
-
},
|
3443
|
-
"TooManyTrafficPolicyInstances":{
|
3444
|
-
"type":"structure",
|
3445
|
-
"members":{
|
3446
|
-
"message":{"shape":"ErrorMessage"}
|
3447
|
-
},
|
3448
|
-
"error":{"httpStatusCode":400},
|
3449
|
-
"exception":true
|
3450
|
-
},
|
3451
|
-
"TooManyTrafficPolicyVersionsForCurrentPolicy":{
|
3452
|
-
"type":"structure",
|
3453
|
-
"members":{
|
3454
|
-
"message":{"shape":"ErrorMessage"}
|
3455
|
-
},
|
3456
|
-
"error":{"httpStatusCode":400},
|
3457
|
-
"exception":true
|
3458
|
-
},
|
3459
|
-
"TooManyVPCAssociationAuthorizations":{
|
3460
|
-
"type":"structure",
|
3461
|
-
"members":{
|
3462
|
-
"message":{"shape":"ErrorMessage"}
|
3463
|
-
},
|
3464
|
-
"error":{"httpStatusCode":400},
|
3465
|
-
"exception":true
|
3466
|
-
},
|
3467
|
-
"TrafficPolicies":{
|
3468
|
-
"type":"list",
|
3469
|
-
"member":{
|
3470
|
-
"shape":"TrafficPolicy",
|
3471
|
-
"locationName":"TrafficPolicy"
|
3472
|
-
}
|
3473
|
-
},
|
3474
|
-
"TrafficPolicy":{
|
3475
|
-
"type":"structure",
|
3476
|
-
"required":[
|
3477
|
-
"Id",
|
3478
|
-
"Version",
|
3479
|
-
"Name",
|
3480
|
-
"Type",
|
3481
|
-
"Document"
|
3482
|
-
],
|
3483
|
-
"members":{
|
3484
|
-
"Id":{"shape":"TrafficPolicyId"},
|
3485
|
-
"Version":{"shape":"TrafficPolicyVersion"},
|
3486
|
-
"Name":{"shape":"TrafficPolicyName"},
|
3487
|
-
"Type":{"shape":"RRType"},
|
3488
|
-
"Document":{"shape":"TrafficPolicyDocument"},
|
3489
|
-
"Comment":{"shape":"TrafficPolicyComment"}
|
3490
|
-
}
|
3491
|
-
},
|
3492
|
-
"TrafficPolicyAlreadyExists":{
|
3493
|
-
"type":"structure",
|
3494
|
-
"members":{
|
3495
|
-
"message":{"shape":"ErrorMessage"}
|
3496
|
-
},
|
3497
|
-
"error":{"httpStatusCode":409},
|
3498
|
-
"exception":true
|
3499
|
-
},
|
3500
|
-
"TrafficPolicyComment":{
|
3501
|
-
"type":"string",
|
3502
|
-
"max":1024
|
3503
|
-
},
|
3504
|
-
"TrafficPolicyDocument":{
|
3505
|
-
"type":"string",
|
3506
|
-
"max":102400
|
3507
|
-
},
|
3508
|
-
"TrafficPolicyId":{
|
3509
|
-
"type":"string",
|
3510
|
-
"max":36,
|
3511
|
-
"min":1
|
3512
|
-
},
|
3513
|
-
"TrafficPolicyInUse":{
|
3514
|
-
"type":"structure",
|
3515
|
-
"members":{
|
3516
|
-
"message":{"shape":"ErrorMessage"}
|
3517
|
-
},
|
3518
|
-
"error":{"httpStatusCode":400},
|
3519
|
-
"exception":true
|
3520
|
-
},
|
3521
|
-
"TrafficPolicyInstance":{
|
3522
|
-
"type":"structure",
|
3523
|
-
"required":[
|
3524
|
-
"Id",
|
3525
|
-
"HostedZoneId",
|
3526
|
-
"Name",
|
3527
|
-
"TTL",
|
3528
|
-
"State",
|
3529
|
-
"Message",
|
3530
|
-
"TrafficPolicyId",
|
3531
|
-
"TrafficPolicyVersion",
|
3532
|
-
"TrafficPolicyType"
|
3533
|
-
],
|
3534
|
-
"members":{
|
3535
|
-
"Id":{"shape":"TrafficPolicyInstanceId"},
|
3536
|
-
"HostedZoneId":{"shape":"ResourceId"},
|
3537
|
-
"Name":{"shape":"DNSName"},
|
3538
|
-
"TTL":{"shape":"TTL"},
|
3539
|
-
"State":{"shape":"TrafficPolicyInstanceState"},
|
3540
|
-
"Message":{"shape":"Message"},
|
3541
|
-
"TrafficPolicyId":{"shape":"TrafficPolicyId"},
|
3542
|
-
"TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"},
|
3543
|
-
"TrafficPolicyType":{"shape":"RRType"}
|
3544
|
-
}
|
3545
|
-
},
|
3546
|
-
"TrafficPolicyInstanceAlreadyExists":{
|
3547
|
-
"type":"structure",
|
3548
|
-
"members":{
|
3549
|
-
"message":{"shape":"ErrorMessage"}
|
3550
|
-
},
|
3551
|
-
"error":{"httpStatusCode":409},
|
3552
|
-
"exception":true
|
3553
|
-
},
|
3554
|
-
"TrafficPolicyInstanceCount":{"type":"integer"},
|
3555
|
-
"TrafficPolicyInstanceId":{
|
3556
|
-
"type":"string",
|
3557
|
-
"max":36,
|
3558
|
-
"min":1
|
3559
|
-
},
|
3560
|
-
"TrafficPolicyInstanceState":{"type":"string"},
|
3561
|
-
"TrafficPolicyInstances":{
|
3562
|
-
"type":"list",
|
3563
|
-
"member":{
|
3564
|
-
"shape":"TrafficPolicyInstance",
|
3565
|
-
"locationName":"TrafficPolicyInstance"
|
3566
|
-
}
|
3567
|
-
},
|
3568
|
-
"TrafficPolicyName":{
|
3569
|
-
"type":"string",
|
3570
|
-
"max":512
|
3571
|
-
},
|
3572
|
-
"TrafficPolicySummaries":{
|
3573
|
-
"type":"list",
|
3574
|
-
"member":{
|
3575
|
-
"shape":"TrafficPolicySummary",
|
3576
|
-
"locationName":"TrafficPolicySummary"
|
3577
|
-
}
|
3578
|
-
},
|
3579
|
-
"TrafficPolicySummary":{
|
3580
|
-
"type":"structure",
|
3581
|
-
"required":[
|
3582
|
-
"Id",
|
3583
|
-
"Name",
|
3584
|
-
"Type",
|
3585
|
-
"LatestVersion",
|
3586
|
-
"TrafficPolicyCount"
|
3587
|
-
],
|
3588
|
-
"members":{
|
3589
|
-
"Id":{"shape":"TrafficPolicyId"},
|
3590
|
-
"Name":{"shape":"TrafficPolicyName"},
|
3591
|
-
"Type":{"shape":"RRType"},
|
3592
|
-
"LatestVersion":{"shape":"TrafficPolicyVersion"},
|
3593
|
-
"TrafficPolicyCount":{"shape":"TrafficPolicyVersion"}
|
3594
|
-
}
|
3595
|
-
},
|
3596
|
-
"TrafficPolicyVersion":{
|
3597
|
-
"type":"integer",
|
3598
|
-
"max":1000,
|
3599
|
-
"min":1
|
3600
|
-
},
|
3601
|
-
"TrafficPolicyVersionMarker":{
|
3602
|
-
"type":"string",
|
3603
|
-
"max":4
|
3604
|
-
},
|
3605
|
-
"TransportProtocol":{"type":"string"},
|
3606
|
-
"UpdateHealthCheckRequest":{
|
3607
|
-
"type":"structure",
|
3608
|
-
"required":["HealthCheckId"],
|
3609
|
-
"members":{
|
3610
|
-
"HealthCheckId":{
|
3611
|
-
"shape":"HealthCheckId",
|
3612
|
-
"location":"uri",
|
3613
|
-
"locationName":"HealthCheckId"
|
3614
|
-
},
|
3615
|
-
"HealthCheckVersion":{"shape":"HealthCheckVersion"},
|
3616
|
-
"IPAddress":{"shape":"IPAddress"},
|
3617
|
-
"Port":{"shape":"Port"},
|
3618
|
-
"ResourcePath":{"shape":"ResourcePath"},
|
3619
|
-
"FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
|
3620
|
-
"SearchString":{"shape":"SearchString"},
|
3621
|
-
"FailureThreshold":{"shape":"FailureThreshold"},
|
3622
|
-
"Inverted":{"shape":"Inverted"},
|
3623
|
-
"Disabled":{"shape":"Disabled"},
|
3624
|
-
"HealthThreshold":{"shape":"HealthThreshold"},
|
3625
|
-
"ChildHealthChecks":{"shape":"ChildHealthCheckList"},
|
3626
|
-
"EnableSNI":{"shape":"EnableSNI"},
|
3627
|
-
"Regions":{"shape":"HealthCheckRegionList"},
|
3628
|
-
"AlarmIdentifier":{"shape":"AlarmIdentifier"},
|
3629
|
-
"InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"},
|
3630
|
-
"ResetElements":{"shape":"ResettableElementNameList"}
|
3631
|
-
}
|
3632
|
-
},
|
3633
|
-
"UpdateHealthCheckResponse":{
|
3634
|
-
"type":"structure",
|
3635
|
-
"required":["HealthCheck"],
|
3636
|
-
"members":{
|
3637
|
-
"HealthCheck":{"shape":"HealthCheck"}
|
3638
|
-
}
|
3639
|
-
},
|
3640
|
-
"UpdateHostedZoneCommentRequest":{
|
3641
|
-
"type":"structure",
|
3642
|
-
"required":["Id"],
|
3643
|
-
"members":{
|
3644
|
-
"Id":{
|
3645
|
-
"shape":"ResourceId",
|
3646
|
-
"location":"uri",
|
3647
|
-
"locationName":"Id"
|
3648
|
-
},
|
3649
|
-
"Comment":{"shape":"ResourceDescription"}
|
3650
|
-
}
|
3651
|
-
},
|
3652
|
-
"UpdateHostedZoneCommentResponse":{
|
3653
|
-
"type":"structure",
|
3654
|
-
"required":["HostedZone"],
|
3655
|
-
"members":{
|
3656
|
-
"HostedZone":{"shape":"HostedZone"}
|
3657
|
-
}
|
3658
|
-
},
|
3659
|
-
"UpdateTrafficPolicyCommentRequest":{
|
3660
|
-
"type":"structure",
|
3661
|
-
"required":[
|
3662
|
-
"Id",
|
3663
|
-
"Version",
|
3664
|
-
"Comment"
|
3665
|
-
],
|
3666
|
-
"members":{
|
3667
|
-
"Id":{
|
3668
|
-
"shape":"TrafficPolicyId",
|
3669
|
-
"location":"uri",
|
3670
|
-
"locationName":"Id"
|
3671
|
-
},
|
3672
|
-
"Version":{
|
3673
|
-
"shape":"TrafficPolicyVersion",
|
3674
|
-
"location":"uri",
|
3675
|
-
"locationName":"Version"
|
3676
|
-
},
|
3677
|
-
"Comment":{"shape":"TrafficPolicyComment"}
|
3678
|
-
}
|
3679
|
-
},
|
3680
|
-
"UpdateTrafficPolicyCommentResponse":{
|
3681
|
-
"type":"structure",
|
3682
|
-
"required":["TrafficPolicy"],
|
3683
|
-
"members":{
|
3684
|
-
"TrafficPolicy":{"shape":"TrafficPolicy"}
|
3685
|
-
}
|
3686
|
-
},
|
3687
|
-
"UpdateTrafficPolicyInstanceRequest":{
|
3688
|
-
"type":"structure",
|
3689
|
-
"required":[
|
3690
|
-
"Id",
|
3691
|
-
"TTL",
|
3692
|
-
"TrafficPolicyId",
|
3693
|
-
"TrafficPolicyVersion"
|
3694
|
-
],
|
3695
|
-
"members":{
|
3696
|
-
"Id":{
|
3697
|
-
"shape":"TrafficPolicyInstanceId",
|
3698
|
-
"location":"uri",
|
3699
|
-
"locationName":"Id"
|
3700
|
-
},
|
3701
|
-
"TTL":{"shape":"TTL"},
|
3702
|
-
"TrafficPolicyId":{"shape":"TrafficPolicyId"},
|
3703
|
-
"TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
|
3704
|
-
}
|
3705
|
-
},
|
3706
|
-
"UpdateTrafficPolicyInstanceResponse":{
|
3707
|
-
"type":"structure",
|
3708
|
-
"required":["TrafficPolicyInstance"],
|
3709
|
-
"members":{
|
3710
|
-
"TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
|
3711
|
-
}
|
3712
|
-
},
|
3713
|
-
"UsageCount":{
|
3714
|
-
"type":"long",
|
3715
|
-
"min":0
|
3716
|
-
},
|
3717
|
-
"VPC":{
|
3718
|
-
"type":"structure",
|
3719
|
-
"members":{
|
3720
|
-
"VPCRegion":{"shape":"VPCRegion"},
|
3721
|
-
"VPCId":{"shape":"VPCId"}
|
3722
|
-
}
|
3723
|
-
},
|
3724
|
-
"VPCAssociationAuthorizationNotFound":{
|
3725
|
-
"type":"structure",
|
3726
|
-
"members":{
|
3727
|
-
"message":{"shape":"ErrorMessage"}
|
3728
|
-
},
|
3729
|
-
"error":{"httpStatusCode":404},
|
3730
|
-
"exception":true
|
3731
|
-
},
|
3732
|
-
"VPCAssociationNotFound":{
|
3733
|
-
"type":"structure",
|
3734
|
-
"members":{
|
3735
|
-
"message":{"shape":"ErrorMessage"}
|
3736
|
-
},
|
3737
|
-
"error":{"httpStatusCode":404},
|
3738
|
-
"exception":true
|
3739
|
-
},
|
3740
|
-
"VPCId":{
|
3741
|
-
"type":"string",
|
3742
|
-
"max":1024
|
3743
|
-
},
|
3744
|
-
"VPCRegion":{
|
3745
|
-
"type":"string",
|
3746
|
-
"enum":[
|
3747
|
-
"us-east-1",
|
3748
|
-
"us-east-2",
|
3749
|
-
"us-west-1",
|
3750
|
-
"us-west-2",
|
3751
|
-
"eu-west-1",
|
3752
|
-
"eu-west-2",
|
3753
|
-
"eu-west-3",
|
3754
|
-
"eu-central-1",
|
3755
|
-
"ap-east-1",
|
3756
|
-
"me-south-1",
|
3757
|
-
"ap-southeast-1",
|
3758
|
-
"ap-southeast-2",
|
3759
|
-
"ap-south-1",
|
3760
|
-
"ap-northeast-1",
|
3761
|
-
"ap-northeast-2",
|
3762
|
-
"ap-northeast-3",
|
3763
|
-
"eu-north-1",
|
3764
|
-
"sa-east-1",
|
3765
|
-
"ca-central-1",
|
3766
|
-
"cn-north-1"
|
3767
|
-
],
|
3768
|
-
"max":64,
|
3769
|
-
"min":1
|
3770
|
-
},
|
3771
|
-
"VPCs":{
|
3772
|
-
"type":"list",
|
3773
|
-
"member":{
|
3774
|
-
"shape":"VPC",
|
3775
|
-
"locationName":"VPC"
|
3776
|
-
},
|
3777
|
-
"min":1
|
3778
|
-
}
|
3779
|
-
}
|
3780
|
-
}
|