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