aws-sdk-core 2.11.354 → 3.66.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -552
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -11
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1042
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3281
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2340
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1305
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -25410
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2899
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3152
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3470
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1881
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2514
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6577
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2138
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8914
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -505
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -857
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5163
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -769
@@ -1,32 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListCloudFrontOriginAccessIdentities": {
|
4
|
-
"input_token": "Marker",
|
5
|
-
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
6
|
-
"limit_key": "MaxItems",
|
7
|
-
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
8
|
-
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
9
|
-
},
|
10
|
-
"ListDistributions": {
|
11
|
-
"input_token": "Marker",
|
12
|
-
"output_token": "DistributionList.NextMarker",
|
13
|
-
"limit_key": "MaxItems",
|
14
|
-
"more_results": "DistributionList.IsTruncated",
|
15
|
-
"result_key": "DistributionList.Items"
|
16
|
-
},
|
17
|
-
"ListInvalidations": {
|
18
|
-
"input_token": "Marker",
|
19
|
-
"output_token": "InvalidationList.NextMarker",
|
20
|
-
"limit_key": "MaxItems",
|
21
|
-
"more_results": "InvalidationList.IsTruncated",
|
22
|
-
"result_key": "InvalidationList.Items"
|
23
|
-
},
|
24
|
-
"ListStreamingDistributions": {
|
25
|
-
"input_token": "Marker",
|
26
|
-
"output_token": "StreamingDistributionList.NextMarker",
|
27
|
-
"limit_key": "MaxItems",
|
28
|
-
"more_results": "StreamingDistributionList.IsTruncated",
|
29
|
-
"result_key": "StreamingDistributionList.Items"
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
@@ -1,47 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"DistributionDeployed": {
|
5
|
-
"delay": 60,
|
6
|
-
"operation": "GetDistribution",
|
7
|
-
"maxAttempts": 25,
|
8
|
-
"description": "Wait until a distribution is deployed.",
|
9
|
-
"acceptors": [
|
10
|
-
{
|
11
|
-
"expected": "Deployed",
|
12
|
-
"matcher": "path",
|
13
|
-
"state": "success",
|
14
|
-
"argument": "Distribution.Status"
|
15
|
-
}
|
16
|
-
]
|
17
|
-
},
|
18
|
-
"InvalidationCompleted": {
|
19
|
-
"delay": 20,
|
20
|
-
"operation": "GetInvalidation",
|
21
|
-
"maxAttempts": 30,
|
22
|
-
"description": "Wait until an invalidation has completed.",
|
23
|
-
"acceptors": [
|
24
|
-
{
|
25
|
-
"expected": "Completed",
|
26
|
-
"matcher": "path",
|
27
|
-
"state": "success",
|
28
|
-
"argument": "Invalidation.Status"
|
29
|
-
}
|
30
|
-
]
|
31
|
-
},
|
32
|
-
"StreamingDistributionDeployed": {
|
33
|
-
"delay": 60,
|
34
|
-
"operation": "GetStreamingDistribution",
|
35
|
-
"maxAttempts": 25,
|
36
|
-
"description": "Wait until a streaming distribution is deployed.",
|
37
|
-
"acceptors": [
|
38
|
-
{
|
39
|
-
"expected": "Deployed",
|
40
|
-
"matcher": "path",
|
41
|
-
"state": "success",
|
42
|
-
"argument": "StreamingDistribution.Status"
|
43
|
-
}
|
44
|
-
]
|
45
|
-
}
|
46
|
-
}
|
47
|
-
}
|
@@ -1,2665 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2016-11-25",
|
5
|
-
"endpointPrefix":"cloudfront",
|
6
|
-
"globalEndpoint":"cloudfront.amazonaws.com",
|
7
|
-
"protocol":"rest-xml",
|
8
|
-
"serviceAbbreviation":"CloudFront",
|
9
|
-
"serviceFullName":"Amazon CloudFront",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"uid":"cloudfront-2016-11-25"
|
12
|
-
},
|
13
|
-
"operations":{
|
14
|
-
"CreateCloudFrontOriginAccessIdentity":{
|
15
|
-
"name":"CreateCloudFrontOriginAccessIdentity2016_11_25",
|
16
|
-
"http":{
|
17
|
-
"method":"POST",
|
18
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront",
|
19
|
-
"responseCode":201
|
20
|
-
},
|
21
|
-
"input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
|
22
|
-
"output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"CloudFrontOriginAccessIdentityAlreadyExists"},
|
25
|
-
{"shape":"MissingBody"},
|
26
|
-
{"shape":"TooManyCloudFrontOriginAccessIdentities"},
|
27
|
-
{"shape":"InvalidArgument"},
|
28
|
-
{"shape":"InconsistentQuantities"}
|
29
|
-
]
|
30
|
-
},
|
31
|
-
"CreateDistribution":{
|
32
|
-
"name":"CreateDistribution2016_11_25",
|
33
|
-
"http":{
|
34
|
-
"method":"POST",
|
35
|
-
"requestUri":"/2016-11-25/distribution",
|
36
|
-
"responseCode":201
|
37
|
-
},
|
38
|
-
"input":{"shape":"CreateDistributionRequest"},
|
39
|
-
"output":{"shape":"CreateDistributionResult"},
|
40
|
-
"errors":[
|
41
|
-
{"shape":"CNAMEAlreadyExists"},
|
42
|
-
{"shape":"DistributionAlreadyExists"},
|
43
|
-
{"shape":"InvalidOrigin"},
|
44
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
45
|
-
{"shape":"AccessDenied"},
|
46
|
-
{"shape":"TooManyTrustedSigners"},
|
47
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
48
|
-
{"shape":"InvalidViewerCertificate"},
|
49
|
-
{"shape":"InvalidMinimumProtocolVersion"},
|
50
|
-
{"shape":"MissingBody"},
|
51
|
-
{"shape":"TooManyDistributionCNAMEs"},
|
52
|
-
{"shape":"TooManyDistributions"},
|
53
|
-
{"shape":"InvalidDefaultRootObject"},
|
54
|
-
{"shape":"InvalidRelativePath"},
|
55
|
-
{"shape":"InvalidErrorCode"},
|
56
|
-
{"shape":"InvalidResponseCode"},
|
57
|
-
{"shape":"InvalidArgument"},
|
58
|
-
{"shape":"InvalidRequiredProtocol"},
|
59
|
-
{"shape":"NoSuchOrigin"},
|
60
|
-
{"shape":"TooManyOrigins"},
|
61
|
-
{"shape":"TooManyCacheBehaviors"},
|
62
|
-
{"shape":"TooManyCookieNamesInWhiteList"},
|
63
|
-
{"shape":"InvalidForwardCookies"},
|
64
|
-
{"shape":"TooManyHeadersInForwardedValues"},
|
65
|
-
{"shape":"InvalidHeadersForS3Origin"},
|
66
|
-
{"shape":"InconsistentQuantities"},
|
67
|
-
{"shape":"TooManyCertificates"},
|
68
|
-
{"shape":"InvalidLocationCode"},
|
69
|
-
{"shape":"InvalidGeoRestrictionParameter"},
|
70
|
-
{"shape":"InvalidProtocolSettings"},
|
71
|
-
{"shape":"InvalidTTLOrder"},
|
72
|
-
{"shape":"InvalidWebACLId"},
|
73
|
-
{"shape":"TooManyOriginCustomHeaders"},
|
74
|
-
{"shape":"TooManyQueryStringParameters"},
|
75
|
-
{"shape":"InvalidQueryStringParameters"},
|
76
|
-
{"shape":"TooManyDistributionsWithLambdaAssociations"},
|
77
|
-
{"shape":"TooManyLambdaFunctionAssociations"},
|
78
|
-
{"shape":"InvalidLambdaFunctionAssociation"}
|
79
|
-
]
|
80
|
-
},
|
81
|
-
"CreateDistributionWithTags":{
|
82
|
-
"name":"CreateDistributionWithTags2016_11_25",
|
83
|
-
"http":{
|
84
|
-
"method":"POST",
|
85
|
-
"requestUri":"/2016-11-25/distribution?WithTags",
|
86
|
-
"responseCode":201
|
87
|
-
},
|
88
|
-
"input":{"shape":"CreateDistributionWithTagsRequest"},
|
89
|
-
"output":{"shape":"CreateDistributionWithTagsResult"},
|
90
|
-
"errors":[
|
91
|
-
{"shape":"CNAMEAlreadyExists"},
|
92
|
-
{"shape":"DistributionAlreadyExists"},
|
93
|
-
{"shape":"InvalidOrigin"},
|
94
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
95
|
-
{"shape":"AccessDenied"},
|
96
|
-
{"shape":"TooManyTrustedSigners"},
|
97
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
98
|
-
{"shape":"InvalidViewerCertificate"},
|
99
|
-
{"shape":"InvalidMinimumProtocolVersion"},
|
100
|
-
{"shape":"MissingBody"},
|
101
|
-
{"shape":"TooManyDistributionCNAMEs"},
|
102
|
-
{"shape":"TooManyDistributions"},
|
103
|
-
{"shape":"InvalidDefaultRootObject"},
|
104
|
-
{"shape":"InvalidRelativePath"},
|
105
|
-
{"shape":"InvalidErrorCode"},
|
106
|
-
{"shape":"InvalidResponseCode"},
|
107
|
-
{"shape":"InvalidArgument"},
|
108
|
-
{"shape":"InvalidRequiredProtocol"},
|
109
|
-
{"shape":"NoSuchOrigin"},
|
110
|
-
{"shape":"TooManyOrigins"},
|
111
|
-
{"shape":"TooManyCacheBehaviors"},
|
112
|
-
{"shape":"TooManyCookieNamesInWhiteList"},
|
113
|
-
{"shape":"InvalidForwardCookies"},
|
114
|
-
{"shape":"TooManyHeadersInForwardedValues"},
|
115
|
-
{"shape":"InvalidHeadersForS3Origin"},
|
116
|
-
{"shape":"InconsistentQuantities"},
|
117
|
-
{"shape":"TooManyCertificates"},
|
118
|
-
{"shape":"InvalidLocationCode"},
|
119
|
-
{"shape":"InvalidGeoRestrictionParameter"},
|
120
|
-
{"shape":"InvalidProtocolSettings"},
|
121
|
-
{"shape":"InvalidTTLOrder"},
|
122
|
-
{"shape":"InvalidWebACLId"},
|
123
|
-
{"shape":"TooManyOriginCustomHeaders"},
|
124
|
-
{"shape":"InvalidTagging"},
|
125
|
-
{"shape":"TooManyQueryStringParameters"},
|
126
|
-
{"shape":"InvalidQueryStringParameters"},
|
127
|
-
{"shape":"TooManyDistributionsWithLambdaAssociations"},
|
128
|
-
{"shape":"TooManyLambdaFunctionAssociations"},
|
129
|
-
{"shape":"InvalidLambdaFunctionAssociation"}
|
130
|
-
]
|
131
|
-
},
|
132
|
-
"CreateInvalidation":{
|
133
|
-
"name":"CreateInvalidation2016_11_25",
|
134
|
-
"http":{
|
135
|
-
"method":"POST",
|
136
|
-
"requestUri":"/2016-11-25/distribution/{DistributionId}/invalidation",
|
137
|
-
"responseCode":201
|
138
|
-
},
|
139
|
-
"input":{"shape":"CreateInvalidationRequest"},
|
140
|
-
"output":{"shape":"CreateInvalidationResult"},
|
141
|
-
"errors":[
|
142
|
-
{"shape":"AccessDenied"},
|
143
|
-
{"shape":"MissingBody"},
|
144
|
-
{"shape":"InvalidArgument"},
|
145
|
-
{"shape":"NoSuchDistribution"},
|
146
|
-
{"shape":"BatchTooLarge"},
|
147
|
-
{"shape":"TooManyInvalidationsInProgress"},
|
148
|
-
{"shape":"InconsistentQuantities"}
|
149
|
-
]
|
150
|
-
},
|
151
|
-
"CreateStreamingDistribution":{
|
152
|
-
"name":"CreateStreamingDistribution2016_11_25",
|
153
|
-
"http":{
|
154
|
-
"method":"POST",
|
155
|
-
"requestUri":"/2016-11-25/streaming-distribution",
|
156
|
-
"responseCode":201
|
157
|
-
},
|
158
|
-
"input":{"shape":"CreateStreamingDistributionRequest"},
|
159
|
-
"output":{"shape":"CreateStreamingDistributionResult"},
|
160
|
-
"errors":[
|
161
|
-
{"shape":"CNAMEAlreadyExists"},
|
162
|
-
{"shape":"StreamingDistributionAlreadyExists"},
|
163
|
-
{"shape":"InvalidOrigin"},
|
164
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
165
|
-
{"shape":"AccessDenied"},
|
166
|
-
{"shape":"TooManyTrustedSigners"},
|
167
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
168
|
-
{"shape":"MissingBody"},
|
169
|
-
{"shape":"TooManyStreamingDistributionCNAMEs"},
|
170
|
-
{"shape":"TooManyStreamingDistributions"},
|
171
|
-
{"shape":"InvalidArgument"},
|
172
|
-
{"shape":"InconsistentQuantities"}
|
173
|
-
]
|
174
|
-
},
|
175
|
-
"CreateStreamingDistributionWithTags":{
|
176
|
-
"name":"CreateStreamingDistributionWithTags2016_11_25",
|
177
|
-
"http":{
|
178
|
-
"method":"POST",
|
179
|
-
"requestUri":"/2016-11-25/streaming-distribution?WithTags",
|
180
|
-
"responseCode":201
|
181
|
-
},
|
182
|
-
"input":{"shape":"CreateStreamingDistributionWithTagsRequest"},
|
183
|
-
"output":{"shape":"CreateStreamingDistributionWithTagsResult"},
|
184
|
-
"errors":[
|
185
|
-
{"shape":"CNAMEAlreadyExists"},
|
186
|
-
{"shape":"StreamingDistributionAlreadyExists"},
|
187
|
-
{"shape":"InvalidOrigin"},
|
188
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
189
|
-
{"shape":"AccessDenied"},
|
190
|
-
{"shape":"TooManyTrustedSigners"},
|
191
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
192
|
-
{"shape":"MissingBody"},
|
193
|
-
{"shape":"TooManyStreamingDistributionCNAMEs"},
|
194
|
-
{"shape":"TooManyStreamingDistributions"},
|
195
|
-
{"shape":"InvalidArgument"},
|
196
|
-
{"shape":"InconsistentQuantities"},
|
197
|
-
{"shape":"InvalidTagging"}
|
198
|
-
]
|
199
|
-
},
|
200
|
-
"DeleteCloudFrontOriginAccessIdentity":{
|
201
|
-
"name":"DeleteCloudFrontOriginAccessIdentity2016_11_25",
|
202
|
-
"http":{
|
203
|
-
"method":"DELETE",
|
204
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront/{Id}",
|
205
|
-
"responseCode":204
|
206
|
-
},
|
207
|
-
"input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
|
208
|
-
"errors":[
|
209
|
-
{"shape":"AccessDenied"},
|
210
|
-
{"shape":"InvalidIfMatchVersion"},
|
211
|
-
{"shape":"NoSuchCloudFrontOriginAccessIdentity"},
|
212
|
-
{"shape":"PreconditionFailed"},
|
213
|
-
{"shape":"CloudFrontOriginAccessIdentityInUse"}
|
214
|
-
]
|
215
|
-
},
|
216
|
-
"DeleteDistribution":{
|
217
|
-
"name":"DeleteDistribution2016_11_25",
|
218
|
-
"http":{
|
219
|
-
"method":"DELETE",
|
220
|
-
"requestUri":"/2016-11-25/distribution/{Id}",
|
221
|
-
"responseCode":204
|
222
|
-
},
|
223
|
-
"input":{"shape":"DeleteDistributionRequest"},
|
224
|
-
"errors":[
|
225
|
-
{"shape":"AccessDenied"},
|
226
|
-
{"shape":"DistributionNotDisabled"},
|
227
|
-
{"shape":"InvalidIfMatchVersion"},
|
228
|
-
{"shape":"NoSuchDistribution"},
|
229
|
-
{"shape":"PreconditionFailed"}
|
230
|
-
]
|
231
|
-
},
|
232
|
-
"DeleteStreamingDistribution":{
|
233
|
-
"name":"DeleteStreamingDistribution2016_11_25",
|
234
|
-
"http":{
|
235
|
-
"method":"DELETE",
|
236
|
-
"requestUri":"/2016-11-25/streaming-distribution/{Id}",
|
237
|
-
"responseCode":204
|
238
|
-
},
|
239
|
-
"input":{"shape":"DeleteStreamingDistributionRequest"},
|
240
|
-
"errors":[
|
241
|
-
{"shape":"AccessDenied"},
|
242
|
-
{"shape":"StreamingDistributionNotDisabled"},
|
243
|
-
{"shape":"InvalidIfMatchVersion"},
|
244
|
-
{"shape":"NoSuchStreamingDistribution"},
|
245
|
-
{"shape":"PreconditionFailed"}
|
246
|
-
]
|
247
|
-
},
|
248
|
-
"GetCloudFrontOriginAccessIdentity":{
|
249
|
-
"name":"GetCloudFrontOriginAccessIdentity2016_11_25",
|
250
|
-
"http":{
|
251
|
-
"method":"GET",
|
252
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront/{Id}"
|
253
|
-
},
|
254
|
-
"input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
|
255
|
-
"output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
|
256
|
-
"errors":[
|
257
|
-
{"shape":"NoSuchCloudFrontOriginAccessIdentity"},
|
258
|
-
{"shape":"AccessDenied"}
|
259
|
-
]
|
260
|
-
},
|
261
|
-
"GetCloudFrontOriginAccessIdentityConfig":{
|
262
|
-
"name":"GetCloudFrontOriginAccessIdentityConfig2016_11_25",
|
263
|
-
"http":{
|
264
|
-
"method":"GET",
|
265
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront/{Id}/config"
|
266
|
-
},
|
267
|
-
"input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
|
268
|
-
"output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
|
269
|
-
"errors":[
|
270
|
-
{"shape":"NoSuchCloudFrontOriginAccessIdentity"},
|
271
|
-
{"shape":"AccessDenied"}
|
272
|
-
]
|
273
|
-
},
|
274
|
-
"GetDistribution":{
|
275
|
-
"name":"GetDistribution2016_11_25",
|
276
|
-
"http":{
|
277
|
-
"method":"GET",
|
278
|
-
"requestUri":"/2016-11-25/distribution/{Id}"
|
279
|
-
},
|
280
|
-
"input":{"shape":"GetDistributionRequest"},
|
281
|
-
"output":{"shape":"GetDistributionResult"},
|
282
|
-
"errors":[
|
283
|
-
{"shape":"NoSuchDistribution"},
|
284
|
-
{"shape":"AccessDenied"}
|
285
|
-
]
|
286
|
-
},
|
287
|
-
"GetDistributionConfig":{
|
288
|
-
"name":"GetDistributionConfig2016_11_25",
|
289
|
-
"http":{
|
290
|
-
"method":"GET",
|
291
|
-
"requestUri":"/2016-11-25/distribution/{Id}/config"
|
292
|
-
},
|
293
|
-
"input":{"shape":"GetDistributionConfigRequest"},
|
294
|
-
"output":{"shape":"GetDistributionConfigResult"},
|
295
|
-
"errors":[
|
296
|
-
{"shape":"NoSuchDistribution"},
|
297
|
-
{"shape":"AccessDenied"}
|
298
|
-
]
|
299
|
-
},
|
300
|
-
"GetInvalidation":{
|
301
|
-
"name":"GetInvalidation2016_11_25",
|
302
|
-
"http":{
|
303
|
-
"method":"GET",
|
304
|
-
"requestUri":"/2016-11-25/distribution/{DistributionId}/invalidation/{Id}"
|
305
|
-
},
|
306
|
-
"input":{"shape":"GetInvalidationRequest"},
|
307
|
-
"output":{"shape":"GetInvalidationResult"},
|
308
|
-
"errors":[
|
309
|
-
{"shape":"NoSuchInvalidation"},
|
310
|
-
{"shape":"NoSuchDistribution"},
|
311
|
-
{"shape":"AccessDenied"}
|
312
|
-
]
|
313
|
-
},
|
314
|
-
"GetStreamingDistribution":{
|
315
|
-
"name":"GetStreamingDistribution2016_11_25",
|
316
|
-
"http":{
|
317
|
-
"method":"GET",
|
318
|
-
"requestUri":"/2016-11-25/streaming-distribution/{Id}"
|
319
|
-
},
|
320
|
-
"input":{"shape":"GetStreamingDistributionRequest"},
|
321
|
-
"output":{"shape":"GetStreamingDistributionResult"},
|
322
|
-
"errors":[
|
323
|
-
{"shape":"NoSuchStreamingDistribution"},
|
324
|
-
{"shape":"AccessDenied"}
|
325
|
-
]
|
326
|
-
},
|
327
|
-
"GetStreamingDistributionConfig":{
|
328
|
-
"name":"GetStreamingDistributionConfig2016_11_25",
|
329
|
-
"http":{
|
330
|
-
"method":"GET",
|
331
|
-
"requestUri":"/2016-11-25/streaming-distribution/{Id}/config"
|
332
|
-
},
|
333
|
-
"input":{"shape":"GetStreamingDistributionConfigRequest"},
|
334
|
-
"output":{"shape":"GetStreamingDistributionConfigResult"},
|
335
|
-
"errors":[
|
336
|
-
{"shape":"NoSuchStreamingDistribution"},
|
337
|
-
{"shape":"AccessDenied"}
|
338
|
-
]
|
339
|
-
},
|
340
|
-
"ListCloudFrontOriginAccessIdentities":{
|
341
|
-
"name":"ListCloudFrontOriginAccessIdentities2016_11_25",
|
342
|
-
"http":{
|
343
|
-
"method":"GET",
|
344
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront"
|
345
|
-
},
|
346
|
-
"input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
|
347
|
-
"output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
|
348
|
-
"errors":[
|
349
|
-
{"shape":"InvalidArgument"}
|
350
|
-
]
|
351
|
-
},
|
352
|
-
"ListDistributions":{
|
353
|
-
"name":"ListDistributions2016_11_25",
|
354
|
-
"http":{
|
355
|
-
"method":"GET",
|
356
|
-
"requestUri":"/2016-11-25/distribution"
|
357
|
-
},
|
358
|
-
"input":{"shape":"ListDistributionsRequest"},
|
359
|
-
"output":{"shape":"ListDistributionsResult"},
|
360
|
-
"errors":[
|
361
|
-
{"shape":"InvalidArgument"}
|
362
|
-
]
|
363
|
-
},
|
364
|
-
"ListDistributionsByWebACLId":{
|
365
|
-
"name":"ListDistributionsByWebACLId2016_11_25",
|
366
|
-
"http":{
|
367
|
-
"method":"GET",
|
368
|
-
"requestUri":"/2016-11-25/distributionsByWebACLId/{WebACLId}"
|
369
|
-
},
|
370
|
-
"input":{"shape":"ListDistributionsByWebACLIdRequest"},
|
371
|
-
"output":{"shape":"ListDistributionsByWebACLIdResult"},
|
372
|
-
"errors":[
|
373
|
-
{"shape":"InvalidArgument"},
|
374
|
-
{"shape":"InvalidWebACLId"}
|
375
|
-
]
|
376
|
-
},
|
377
|
-
"ListInvalidations":{
|
378
|
-
"name":"ListInvalidations2016_11_25",
|
379
|
-
"http":{
|
380
|
-
"method":"GET",
|
381
|
-
"requestUri":"/2016-11-25/distribution/{DistributionId}/invalidation"
|
382
|
-
},
|
383
|
-
"input":{"shape":"ListInvalidationsRequest"},
|
384
|
-
"output":{"shape":"ListInvalidationsResult"},
|
385
|
-
"errors":[
|
386
|
-
{"shape":"InvalidArgument"},
|
387
|
-
{"shape":"NoSuchDistribution"},
|
388
|
-
{"shape":"AccessDenied"}
|
389
|
-
]
|
390
|
-
},
|
391
|
-
"ListStreamingDistributions":{
|
392
|
-
"name":"ListStreamingDistributions2016_11_25",
|
393
|
-
"http":{
|
394
|
-
"method":"GET",
|
395
|
-
"requestUri":"/2016-11-25/streaming-distribution"
|
396
|
-
},
|
397
|
-
"input":{"shape":"ListStreamingDistributionsRequest"},
|
398
|
-
"output":{"shape":"ListStreamingDistributionsResult"},
|
399
|
-
"errors":[
|
400
|
-
{"shape":"InvalidArgument"}
|
401
|
-
]
|
402
|
-
},
|
403
|
-
"ListTagsForResource":{
|
404
|
-
"name":"ListTagsForResource2016_11_25",
|
405
|
-
"http":{
|
406
|
-
"method":"GET",
|
407
|
-
"requestUri":"/2016-11-25/tagging"
|
408
|
-
},
|
409
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
410
|
-
"output":{"shape":"ListTagsForResourceResult"},
|
411
|
-
"errors":[
|
412
|
-
{"shape":"AccessDenied"},
|
413
|
-
{"shape":"InvalidArgument"},
|
414
|
-
{"shape":"InvalidTagging"},
|
415
|
-
{"shape":"NoSuchResource"}
|
416
|
-
]
|
417
|
-
},
|
418
|
-
"TagResource":{
|
419
|
-
"name":"TagResource2016_11_25",
|
420
|
-
"http":{
|
421
|
-
"method":"POST",
|
422
|
-
"requestUri":"/2016-11-25/tagging?Operation=Tag",
|
423
|
-
"responseCode":204
|
424
|
-
},
|
425
|
-
"input":{"shape":"TagResourceRequest"},
|
426
|
-
"errors":[
|
427
|
-
{"shape":"AccessDenied"},
|
428
|
-
{"shape":"InvalidArgument"},
|
429
|
-
{"shape":"InvalidTagging"},
|
430
|
-
{"shape":"NoSuchResource"}
|
431
|
-
]
|
432
|
-
},
|
433
|
-
"UntagResource":{
|
434
|
-
"name":"UntagResource2016_11_25",
|
435
|
-
"http":{
|
436
|
-
"method":"POST",
|
437
|
-
"requestUri":"/2016-11-25/tagging?Operation=Untag",
|
438
|
-
"responseCode":204
|
439
|
-
},
|
440
|
-
"input":{"shape":"UntagResourceRequest"},
|
441
|
-
"errors":[
|
442
|
-
{"shape":"AccessDenied"},
|
443
|
-
{"shape":"InvalidArgument"},
|
444
|
-
{"shape":"InvalidTagging"},
|
445
|
-
{"shape":"NoSuchResource"}
|
446
|
-
]
|
447
|
-
},
|
448
|
-
"UpdateCloudFrontOriginAccessIdentity":{
|
449
|
-
"name":"UpdateCloudFrontOriginAccessIdentity2016_11_25",
|
450
|
-
"http":{
|
451
|
-
"method":"PUT",
|
452
|
-
"requestUri":"/2016-11-25/origin-access-identity/cloudfront/{Id}/config"
|
453
|
-
},
|
454
|
-
"input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
|
455
|
-
"output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
|
456
|
-
"errors":[
|
457
|
-
{"shape":"AccessDenied"},
|
458
|
-
{"shape":"IllegalUpdate"},
|
459
|
-
{"shape":"InvalidIfMatchVersion"},
|
460
|
-
{"shape":"MissingBody"},
|
461
|
-
{"shape":"NoSuchCloudFrontOriginAccessIdentity"},
|
462
|
-
{"shape":"PreconditionFailed"},
|
463
|
-
{"shape":"InvalidArgument"},
|
464
|
-
{"shape":"InconsistentQuantities"}
|
465
|
-
]
|
466
|
-
},
|
467
|
-
"UpdateDistribution":{
|
468
|
-
"name":"UpdateDistribution2016_11_25",
|
469
|
-
"http":{
|
470
|
-
"method":"PUT",
|
471
|
-
"requestUri":"/2016-11-25/distribution/{Id}/config"
|
472
|
-
},
|
473
|
-
"input":{"shape":"UpdateDistributionRequest"},
|
474
|
-
"output":{"shape":"UpdateDistributionResult"},
|
475
|
-
"errors":[
|
476
|
-
{"shape":"AccessDenied"},
|
477
|
-
{"shape":"CNAMEAlreadyExists"},
|
478
|
-
{"shape":"IllegalUpdate"},
|
479
|
-
{"shape":"InvalidIfMatchVersion"},
|
480
|
-
{"shape":"MissingBody"},
|
481
|
-
{"shape":"NoSuchDistribution"},
|
482
|
-
{"shape":"PreconditionFailed"},
|
483
|
-
{"shape":"TooManyDistributionCNAMEs"},
|
484
|
-
{"shape":"InvalidDefaultRootObject"},
|
485
|
-
{"shape":"InvalidRelativePath"},
|
486
|
-
{"shape":"InvalidErrorCode"},
|
487
|
-
{"shape":"InvalidResponseCode"},
|
488
|
-
{"shape":"InvalidArgument"},
|
489
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
490
|
-
{"shape":"TooManyTrustedSigners"},
|
491
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
492
|
-
{"shape":"InvalidViewerCertificate"},
|
493
|
-
{"shape":"InvalidMinimumProtocolVersion"},
|
494
|
-
{"shape":"InvalidRequiredProtocol"},
|
495
|
-
{"shape":"NoSuchOrigin"},
|
496
|
-
{"shape":"TooManyOrigins"},
|
497
|
-
{"shape":"TooManyCacheBehaviors"},
|
498
|
-
{"shape":"TooManyCookieNamesInWhiteList"},
|
499
|
-
{"shape":"InvalidForwardCookies"},
|
500
|
-
{"shape":"TooManyHeadersInForwardedValues"},
|
501
|
-
{"shape":"InvalidHeadersForS3Origin"},
|
502
|
-
{"shape":"InconsistentQuantities"},
|
503
|
-
{"shape":"TooManyCertificates"},
|
504
|
-
{"shape":"InvalidLocationCode"},
|
505
|
-
{"shape":"InvalidGeoRestrictionParameter"},
|
506
|
-
{"shape":"InvalidTTLOrder"},
|
507
|
-
{"shape":"InvalidWebACLId"},
|
508
|
-
{"shape":"TooManyOriginCustomHeaders"},
|
509
|
-
{"shape":"TooManyQueryStringParameters"},
|
510
|
-
{"shape":"InvalidQueryStringParameters"},
|
511
|
-
{"shape":"TooManyDistributionsWithLambdaAssociations"},
|
512
|
-
{"shape":"TooManyLambdaFunctionAssociations"},
|
513
|
-
{"shape":"InvalidLambdaFunctionAssociation"}
|
514
|
-
]
|
515
|
-
},
|
516
|
-
"UpdateStreamingDistribution":{
|
517
|
-
"name":"UpdateStreamingDistribution2016_11_25",
|
518
|
-
"http":{
|
519
|
-
"method":"PUT",
|
520
|
-
"requestUri":"/2016-11-25/streaming-distribution/{Id}/config"
|
521
|
-
},
|
522
|
-
"input":{"shape":"UpdateStreamingDistributionRequest"},
|
523
|
-
"output":{"shape":"UpdateStreamingDistributionResult"},
|
524
|
-
"errors":[
|
525
|
-
{"shape":"AccessDenied"},
|
526
|
-
{"shape":"CNAMEAlreadyExists"},
|
527
|
-
{"shape":"IllegalUpdate"},
|
528
|
-
{"shape":"InvalidIfMatchVersion"},
|
529
|
-
{"shape":"MissingBody"},
|
530
|
-
{"shape":"NoSuchStreamingDistribution"},
|
531
|
-
{"shape":"PreconditionFailed"},
|
532
|
-
{"shape":"TooManyStreamingDistributionCNAMEs"},
|
533
|
-
{"shape":"InvalidArgument"},
|
534
|
-
{"shape":"InvalidOriginAccessIdentity"},
|
535
|
-
{"shape":"TooManyTrustedSigners"},
|
536
|
-
{"shape":"TrustedSignerDoesNotExist"},
|
537
|
-
{"shape":"InconsistentQuantities"}
|
538
|
-
]
|
539
|
-
}
|
540
|
-
},
|
541
|
-
"shapes":{
|
542
|
-
"AccessDenied":{
|
543
|
-
"type":"structure",
|
544
|
-
"members":{
|
545
|
-
"Message":{"shape":"string"}
|
546
|
-
},
|
547
|
-
"error":{"httpStatusCode":403},
|
548
|
-
"exception":true
|
549
|
-
},
|
550
|
-
"ActiveTrustedSigners":{
|
551
|
-
"type":"structure",
|
552
|
-
"required":[
|
553
|
-
"Enabled",
|
554
|
-
"Quantity"
|
555
|
-
],
|
556
|
-
"members":{
|
557
|
-
"Enabled":{"shape":"boolean"},
|
558
|
-
"Quantity":{"shape":"integer"},
|
559
|
-
"Items":{"shape":"SignerList"}
|
560
|
-
}
|
561
|
-
},
|
562
|
-
"AliasList":{
|
563
|
-
"type":"list",
|
564
|
-
"member":{
|
565
|
-
"shape":"string",
|
566
|
-
"locationName":"CNAME"
|
567
|
-
}
|
568
|
-
},
|
569
|
-
"Aliases":{
|
570
|
-
"type":"structure",
|
571
|
-
"required":["Quantity"],
|
572
|
-
"members":{
|
573
|
-
"Quantity":{"shape":"integer"},
|
574
|
-
"Items":{"shape":"AliasList"}
|
575
|
-
}
|
576
|
-
},
|
577
|
-
"AllowedMethods":{
|
578
|
-
"type":"structure",
|
579
|
-
"required":[
|
580
|
-
"Quantity",
|
581
|
-
"Items"
|
582
|
-
],
|
583
|
-
"members":{
|
584
|
-
"Quantity":{"shape":"integer"},
|
585
|
-
"Items":{"shape":"MethodsList"},
|
586
|
-
"CachedMethods":{"shape":"CachedMethods"}
|
587
|
-
}
|
588
|
-
},
|
589
|
-
"AwsAccountNumberList":{
|
590
|
-
"type":"list",
|
591
|
-
"member":{
|
592
|
-
"shape":"string",
|
593
|
-
"locationName":"AwsAccountNumber"
|
594
|
-
}
|
595
|
-
},
|
596
|
-
"BatchTooLarge":{
|
597
|
-
"type":"structure",
|
598
|
-
"members":{
|
599
|
-
"Message":{"shape":"string"}
|
600
|
-
},
|
601
|
-
"error":{"httpStatusCode":413},
|
602
|
-
"exception":true
|
603
|
-
},
|
604
|
-
"CNAMEAlreadyExists":{
|
605
|
-
"type":"structure",
|
606
|
-
"members":{
|
607
|
-
"Message":{"shape":"string"}
|
608
|
-
},
|
609
|
-
"error":{"httpStatusCode":409},
|
610
|
-
"exception":true
|
611
|
-
},
|
612
|
-
"CacheBehavior":{
|
613
|
-
"type":"structure",
|
614
|
-
"required":[
|
615
|
-
"PathPattern",
|
616
|
-
"TargetOriginId",
|
617
|
-
"ForwardedValues",
|
618
|
-
"TrustedSigners",
|
619
|
-
"ViewerProtocolPolicy",
|
620
|
-
"MinTTL"
|
621
|
-
],
|
622
|
-
"members":{
|
623
|
-
"PathPattern":{"shape":"string"},
|
624
|
-
"TargetOriginId":{"shape":"string"},
|
625
|
-
"ForwardedValues":{"shape":"ForwardedValues"},
|
626
|
-
"TrustedSigners":{"shape":"TrustedSigners"},
|
627
|
-
"ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
|
628
|
-
"MinTTL":{"shape":"long"},
|
629
|
-
"AllowedMethods":{"shape":"AllowedMethods"},
|
630
|
-
"SmoothStreaming":{"shape":"boolean"},
|
631
|
-
"DefaultTTL":{"shape":"long"},
|
632
|
-
"MaxTTL":{"shape":"long"},
|
633
|
-
"Compress":{"shape":"boolean"},
|
634
|
-
"LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"}
|
635
|
-
}
|
636
|
-
},
|
637
|
-
"CacheBehaviorList":{
|
638
|
-
"type":"list",
|
639
|
-
"member":{
|
640
|
-
"shape":"CacheBehavior",
|
641
|
-
"locationName":"CacheBehavior"
|
642
|
-
}
|
643
|
-
},
|
644
|
-
"CacheBehaviors":{
|
645
|
-
"type":"structure",
|
646
|
-
"required":["Quantity"],
|
647
|
-
"members":{
|
648
|
-
"Quantity":{"shape":"integer"},
|
649
|
-
"Items":{"shape":"CacheBehaviorList"}
|
650
|
-
}
|
651
|
-
},
|
652
|
-
"CachedMethods":{
|
653
|
-
"type":"structure",
|
654
|
-
"required":[
|
655
|
-
"Quantity",
|
656
|
-
"Items"
|
657
|
-
],
|
658
|
-
"members":{
|
659
|
-
"Quantity":{"shape":"integer"},
|
660
|
-
"Items":{"shape":"MethodsList"}
|
661
|
-
}
|
662
|
-
},
|
663
|
-
"CertificateSource":{
|
664
|
-
"type":"string",
|
665
|
-
"enum":[
|
666
|
-
"cloudfront",
|
667
|
-
"iam",
|
668
|
-
"acm"
|
669
|
-
]
|
670
|
-
},
|
671
|
-
"CloudFrontOriginAccessIdentity":{
|
672
|
-
"type":"structure",
|
673
|
-
"required":[
|
674
|
-
"Id",
|
675
|
-
"S3CanonicalUserId"
|
676
|
-
],
|
677
|
-
"members":{
|
678
|
-
"Id":{"shape":"string"},
|
679
|
-
"S3CanonicalUserId":{"shape":"string"},
|
680
|
-
"CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
|
681
|
-
}
|
682
|
-
},
|
683
|
-
"CloudFrontOriginAccessIdentityAlreadyExists":{
|
684
|
-
"type":"structure",
|
685
|
-
"members":{
|
686
|
-
"Message":{"shape":"string"}
|
687
|
-
},
|
688
|
-
"error":{"httpStatusCode":409},
|
689
|
-
"exception":true
|
690
|
-
},
|
691
|
-
"CloudFrontOriginAccessIdentityConfig":{
|
692
|
-
"type":"structure",
|
693
|
-
"required":[
|
694
|
-
"CallerReference",
|
695
|
-
"Comment"
|
696
|
-
],
|
697
|
-
"members":{
|
698
|
-
"CallerReference":{"shape":"string"},
|
699
|
-
"Comment":{"shape":"string"}
|
700
|
-
}
|
701
|
-
},
|
702
|
-
"CloudFrontOriginAccessIdentityInUse":{
|
703
|
-
"type":"structure",
|
704
|
-
"members":{
|
705
|
-
"Message":{"shape":"string"}
|
706
|
-
},
|
707
|
-
"error":{"httpStatusCode":409},
|
708
|
-
"exception":true
|
709
|
-
},
|
710
|
-
"CloudFrontOriginAccessIdentityList":{
|
711
|
-
"type":"structure",
|
712
|
-
"required":[
|
713
|
-
"Marker",
|
714
|
-
"MaxItems",
|
715
|
-
"IsTruncated",
|
716
|
-
"Quantity"
|
717
|
-
],
|
718
|
-
"members":{
|
719
|
-
"Marker":{"shape":"string"},
|
720
|
-
"NextMarker":{"shape":"string"},
|
721
|
-
"MaxItems":{"shape":"integer"},
|
722
|
-
"IsTruncated":{"shape":"boolean"},
|
723
|
-
"Quantity":{"shape":"integer"},
|
724
|
-
"Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
|
725
|
-
}
|
726
|
-
},
|
727
|
-
"CloudFrontOriginAccessIdentitySummary":{
|
728
|
-
"type":"structure",
|
729
|
-
"required":[
|
730
|
-
"Id",
|
731
|
-
"S3CanonicalUserId",
|
732
|
-
"Comment"
|
733
|
-
],
|
734
|
-
"members":{
|
735
|
-
"Id":{"shape":"string"},
|
736
|
-
"S3CanonicalUserId":{"shape":"string"},
|
737
|
-
"Comment":{"shape":"string"}
|
738
|
-
}
|
739
|
-
},
|
740
|
-
"CloudFrontOriginAccessIdentitySummaryList":{
|
741
|
-
"type":"list",
|
742
|
-
"member":{
|
743
|
-
"shape":"CloudFrontOriginAccessIdentitySummary",
|
744
|
-
"locationName":"CloudFrontOriginAccessIdentitySummary"
|
745
|
-
}
|
746
|
-
},
|
747
|
-
"CookieNameList":{
|
748
|
-
"type":"list",
|
749
|
-
"member":{
|
750
|
-
"shape":"string",
|
751
|
-
"locationName":"Name"
|
752
|
-
}
|
753
|
-
},
|
754
|
-
"CookieNames":{
|
755
|
-
"type":"structure",
|
756
|
-
"required":["Quantity"],
|
757
|
-
"members":{
|
758
|
-
"Quantity":{"shape":"integer"},
|
759
|
-
"Items":{"shape":"CookieNameList"}
|
760
|
-
}
|
761
|
-
},
|
762
|
-
"CookiePreference":{
|
763
|
-
"type":"structure",
|
764
|
-
"required":["Forward"],
|
765
|
-
"members":{
|
766
|
-
"Forward":{"shape":"ItemSelection"},
|
767
|
-
"WhitelistedNames":{"shape":"CookieNames"}
|
768
|
-
}
|
769
|
-
},
|
770
|
-
"CreateCloudFrontOriginAccessIdentityRequest":{
|
771
|
-
"type":"structure",
|
772
|
-
"required":["CloudFrontOriginAccessIdentityConfig"],
|
773
|
-
"members":{
|
774
|
-
"CloudFrontOriginAccessIdentityConfig":{
|
775
|
-
"shape":"CloudFrontOriginAccessIdentityConfig",
|
776
|
-
"locationName":"CloudFrontOriginAccessIdentityConfig",
|
777
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
778
|
-
}
|
779
|
-
},
|
780
|
-
"payload":"CloudFrontOriginAccessIdentityConfig"
|
781
|
-
},
|
782
|
-
"CreateCloudFrontOriginAccessIdentityResult":{
|
783
|
-
"type":"structure",
|
784
|
-
"members":{
|
785
|
-
"CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
|
786
|
-
"Location":{
|
787
|
-
"shape":"string",
|
788
|
-
"location":"header",
|
789
|
-
"locationName":"Location"
|
790
|
-
},
|
791
|
-
"ETag":{
|
792
|
-
"shape":"string",
|
793
|
-
"location":"header",
|
794
|
-
"locationName":"ETag"
|
795
|
-
}
|
796
|
-
},
|
797
|
-
"payload":"CloudFrontOriginAccessIdentity"
|
798
|
-
},
|
799
|
-
"CreateDistributionRequest":{
|
800
|
-
"type":"structure",
|
801
|
-
"required":["DistributionConfig"],
|
802
|
-
"members":{
|
803
|
-
"DistributionConfig":{
|
804
|
-
"shape":"DistributionConfig",
|
805
|
-
"locationName":"DistributionConfig",
|
806
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
807
|
-
}
|
808
|
-
},
|
809
|
-
"payload":"DistributionConfig"
|
810
|
-
},
|
811
|
-
"CreateDistributionResult":{
|
812
|
-
"type":"structure",
|
813
|
-
"members":{
|
814
|
-
"Distribution":{"shape":"Distribution"},
|
815
|
-
"Location":{
|
816
|
-
"shape":"string",
|
817
|
-
"location":"header",
|
818
|
-
"locationName":"Location"
|
819
|
-
},
|
820
|
-
"ETag":{
|
821
|
-
"shape":"string",
|
822
|
-
"location":"header",
|
823
|
-
"locationName":"ETag"
|
824
|
-
}
|
825
|
-
},
|
826
|
-
"payload":"Distribution"
|
827
|
-
},
|
828
|
-
"CreateDistributionWithTagsRequest":{
|
829
|
-
"type":"structure",
|
830
|
-
"required":["DistributionConfigWithTags"],
|
831
|
-
"members":{
|
832
|
-
"DistributionConfigWithTags":{
|
833
|
-
"shape":"DistributionConfigWithTags",
|
834
|
-
"locationName":"DistributionConfigWithTags",
|
835
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
836
|
-
}
|
837
|
-
},
|
838
|
-
"payload":"DistributionConfigWithTags"
|
839
|
-
},
|
840
|
-
"CreateDistributionWithTagsResult":{
|
841
|
-
"type":"structure",
|
842
|
-
"members":{
|
843
|
-
"Distribution":{"shape":"Distribution"},
|
844
|
-
"Location":{
|
845
|
-
"shape":"string",
|
846
|
-
"location":"header",
|
847
|
-
"locationName":"Location"
|
848
|
-
},
|
849
|
-
"ETag":{
|
850
|
-
"shape":"string",
|
851
|
-
"location":"header",
|
852
|
-
"locationName":"ETag"
|
853
|
-
}
|
854
|
-
},
|
855
|
-
"payload":"Distribution"
|
856
|
-
},
|
857
|
-
"CreateInvalidationRequest":{
|
858
|
-
"type":"structure",
|
859
|
-
"required":[
|
860
|
-
"DistributionId",
|
861
|
-
"InvalidationBatch"
|
862
|
-
],
|
863
|
-
"members":{
|
864
|
-
"DistributionId":{
|
865
|
-
"shape":"string",
|
866
|
-
"location":"uri",
|
867
|
-
"locationName":"DistributionId"
|
868
|
-
},
|
869
|
-
"InvalidationBatch":{
|
870
|
-
"shape":"InvalidationBatch",
|
871
|
-
"locationName":"InvalidationBatch",
|
872
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
873
|
-
}
|
874
|
-
},
|
875
|
-
"payload":"InvalidationBatch"
|
876
|
-
},
|
877
|
-
"CreateInvalidationResult":{
|
878
|
-
"type":"structure",
|
879
|
-
"members":{
|
880
|
-
"Location":{
|
881
|
-
"shape":"string",
|
882
|
-
"location":"header",
|
883
|
-
"locationName":"Location"
|
884
|
-
},
|
885
|
-
"Invalidation":{"shape":"Invalidation"}
|
886
|
-
},
|
887
|
-
"payload":"Invalidation"
|
888
|
-
},
|
889
|
-
"CreateStreamingDistributionRequest":{
|
890
|
-
"type":"structure",
|
891
|
-
"required":["StreamingDistributionConfig"],
|
892
|
-
"members":{
|
893
|
-
"StreamingDistributionConfig":{
|
894
|
-
"shape":"StreamingDistributionConfig",
|
895
|
-
"locationName":"StreamingDistributionConfig",
|
896
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
897
|
-
}
|
898
|
-
},
|
899
|
-
"payload":"StreamingDistributionConfig"
|
900
|
-
},
|
901
|
-
"CreateStreamingDistributionResult":{
|
902
|
-
"type":"structure",
|
903
|
-
"members":{
|
904
|
-
"StreamingDistribution":{"shape":"StreamingDistribution"},
|
905
|
-
"Location":{
|
906
|
-
"shape":"string",
|
907
|
-
"location":"header",
|
908
|
-
"locationName":"Location"
|
909
|
-
},
|
910
|
-
"ETag":{
|
911
|
-
"shape":"string",
|
912
|
-
"location":"header",
|
913
|
-
"locationName":"ETag"
|
914
|
-
}
|
915
|
-
},
|
916
|
-
"payload":"StreamingDistribution"
|
917
|
-
},
|
918
|
-
"CreateStreamingDistributionWithTagsRequest":{
|
919
|
-
"type":"structure",
|
920
|
-
"required":["StreamingDistributionConfigWithTags"],
|
921
|
-
"members":{
|
922
|
-
"StreamingDistributionConfigWithTags":{
|
923
|
-
"shape":"StreamingDistributionConfigWithTags",
|
924
|
-
"locationName":"StreamingDistributionConfigWithTags",
|
925
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
926
|
-
}
|
927
|
-
},
|
928
|
-
"payload":"StreamingDistributionConfigWithTags"
|
929
|
-
},
|
930
|
-
"CreateStreamingDistributionWithTagsResult":{
|
931
|
-
"type":"structure",
|
932
|
-
"members":{
|
933
|
-
"StreamingDistribution":{"shape":"StreamingDistribution"},
|
934
|
-
"Location":{
|
935
|
-
"shape":"string",
|
936
|
-
"location":"header",
|
937
|
-
"locationName":"Location"
|
938
|
-
},
|
939
|
-
"ETag":{
|
940
|
-
"shape":"string",
|
941
|
-
"location":"header",
|
942
|
-
"locationName":"ETag"
|
943
|
-
}
|
944
|
-
},
|
945
|
-
"payload":"StreamingDistribution"
|
946
|
-
},
|
947
|
-
"CustomErrorResponse":{
|
948
|
-
"type":"structure",
|
949
|
-
"required":["ErrorCode"],
|
950
|
-
"members":{
|
951
|
-
"ErrorCode":{"shape":"integer"},
|
952
|
-
"ResponsePagePath":{"shape":"string"},
|
953
|
-
"ResponseCode":{"shape":"string"},
|
954
|
-
"ErrorCachingMinTTL":{"shape":"long"}
|
955
|
-
}
|
956
|
-
},
|
957
|
-
"CustomErrorResponseList":{
|
958
|
-
"type":"list",
|
959
|
-
"member":{
|
960
|
-
"shape":"CustomErrorResponse",
|
961
|
-
"locationName":"CustomErrorResponse"
|
962
|
-
}
|
963
|
-
},
|
964
|
-
"CustomErrorResponses":{
|
965
|
-
"type":"structure",
|
966
|
-
"required":["Quantity"],
|
967
|
-
"members":{
|
968
|
-
"Quantity":{"shape":"integer"},
|
969
|
-
"Items":{"shape":"CustomErrorResponseList"}
|
970
|
-
}
|
971
|
-
},
|
972
|
-
"CustomHeaders":{
|
973
|
-
"type":"structure",
|
974
|
-
"required":["Quantity"],
|
975
|
-
"members":{
|
976
|
-
"Quantity":{"shape":"integer"},
|
977
|
-
"Items":{"shape":"OriginCustomHeadersList"}
|
978
|
-
}
|
979
|
-
},
|
980
|
-
"CustomOriginConfig":{
|
981
|
-
"type":"structure",
|
982
|
-
"required":[
|
983
|
-
"HTTPPort",
|
984
|
-
"HTTPSPort",
|
985
|
-
"OriginProtocolPolicy"
|
986
|
-
],
|
987
|
-
"members":{
|
988
|
-
"HTTPPort":{"shape":"integer"},
|
989
|
-
"HTTPSPort":{"shape":"integer"},
|
990
|
-
"OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"},
|
991
|
-
"OriginSslProtocols":{"shape":"OriginSslProtocols"}
|
992
|
-
}
|
993
|
-
},
|
994
|
-
"DefaultCacheBehavior":{
|
995
|
-
"type":"structure",
|
996
|
-
"required":[
|
997
|
-
"TargetOriginId",
|
998
|
-
"ForwardedValues",
|
999
|
-
"TrustedSigners",
|
1000
|
-
"ViewerProtocolPolicy",
|
1001
|
-
"MinTTL"
|
1002
|
-
],
|
1003
|
-
"members":{
|
1004
|
-
"TargetOriginId":{"shape":"string"},
|
1005
|
-
"ForwardedValues":{"shape":"ForwardedValues"},
|
1006
|
-
"TrustedSigners":{"shape":"TrustedSigners"},
|
1007
|
-
"ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
|
1008
|
-
"MinTTL":{"shape":"long"},
|
1009
|
-
"AllowedMethods":{"shape":"AllowedMethods"},
|
1010
|
-
"SmoothStreaming":{"shape":"boolean"},
|
1011
|
-
"DefaultTTL":{"shape":"long"},
|
1012
|
-
"MaxTTL":{"shape":"long"},
|
1013
|
-
"Compress":{"shape":"boolean"},
|
1014
|
-
"LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"}
|
1015
|
-
}
|
1016
|
-
},
|
1017
|
-
"DeleteCloudFrontOriginAccessIdentityRequest":{
|
1018
|
-
"type":"structure",
|
1019
|
-
"required":["Id"],
|
1020
|
-
"members":{
|
1021
|
-
"Id":{
|
1022
|
-
"shape":"string",
|
1023
|
-
"location":"uri",
|
1024
|
-
"locationName":"Id"
|
1025
|
-
},
|
1026
|
-
"IfMatch":{
|
1027
|
-
"shape":"string",
|
1028
|
-
"location":"header",
|
1029
|
-
"locationName":"If-Match"
|
1030
|
-
}
|
1031
|
-
}
|
1032
|
-
},
|
1033
|
-
"DeleteDistributionRequest":{
|
1034
|
-
"type":"structure",
|
1035
|
-
"required":["Id"],
|
1036
|
-
"members":{
|
1037
|
-
"Id":{
|
1038
|
-
"shape":"string",
|
1039
|
-
"location":"uri",
|
1040
|
-
"locationName":"Id"
|
1041
|
-
},
|
1042
|
-
"IfMatch":{
|
1043
|
-
"shape":"string",
|
1044
|
-
"location":"header",
|
1045
|
-
"locationName":"If-Match"
|
1046
|
-
}
|
1047
|
-
}
|
1048
|
-
},
|
1049
|
-
"DeleteStreamingDistributionRequest":{
|
1050
|
-
"type":"structure",
|
1051
|
-
"required":["Id"],
|
1052
|
-
"members":{
|
1053
|
-
"Id":{
|
1054
|
-
"shape":"string",
|
1055
|
-
"location":"uri",
|
1056
|
-
"locationName":"Id"
|
1057
|
-
},
|
1058
|
-
"IfMatch":{
|
1059
|
-
"shape":"string",
|
1060
|
-
"location":"header",
|
1061
|
-
"locationName":"If-Match"
|
1062
|
-
}
|
1063
|
-
}
|
1064
|
-
},
|
1065
|
-
"Distribution":{
|
1066
|
-
"type":"structure",
|
1067
|
-
"required":[
|
1068
|
-
"Id",
|
1069
|
-
"ARN",
|
1070
|
-
"Status",
|
1071
|
-
"LastModifiedTime",
|
1072
|
-
"InProgressInvalidationBatches",
|
1073
|
-
"DomainName",
|
1074
|
-
"ActiveTrustedSigners",
|
1075
|
-
"DistributionConfig"
|
1076
|
-
],
|
1077
|
-
"members":{
|
1078
|
-
"Id":{"shape":"string"},
|
1079
|
-
"ARN":{"shape":"string"},
|
1080
|
-
"Status":{"shape":"string"},
|
1081
|
-
"LastModifiedTime":{"shape":"timestamp"},
|
1082
|
-
"InProgressInvalidationBatches":{"shape":"integer"},
|
1083
|
-
"DomainName":{"shape":"string"},
|
1084
|
-
"ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
|
1085
|
-
"DistributionConfig":{"shape":"DistributionConfig"}
|
1086
|
-
}
|
1087
|
-
},
|
1088
|
-
"DistributionAlreadyExists":{
|
1089
|
-
"type":"structure",
|
1090
|
-
"members":{
|
1091
|
-
"Message":{"shape":"string"}
|
1092
|
-
},
|
1093
|
-
"error":{"httpStatusCode":409},
|
1094
|
-
"exception":true
|
1095
|
-
},
|
1096
|
-
"DistributionConfig":{
|
1097
|
-
"type":"structure",
|
1098
|
-
"required":[
|
1099
|
-
"CallerReference",
|
1100
|
-
"Origins",
|
1101
|
-
"DefaultCacheBehavior",
|
1102
|
-
"Comment",
|
1103
|
-
"Enabled"
|
1104
|
-
],
|
1105
|
-
"members":{
|
1106
|
-
"CallerReference":{"shape":"string"},
|
1107
|
-
"Aliases":{"shape":"Aliases"},
|
1108
|
-
"DefaultRootObject":{"shape":"string"},
|
1109
|
-
"Origins":{"shape":"Origins"},
|
1110
|
-
"DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
|
1111
|
-
"CacheBehaviors":{"shape":"CacheBehaviors"},
|
1112
|
-
"CustomErrorResponses":{"shape":"CustomErrorResponses"},
|
1113
|
-
"Comment":{"shape":"string"},
|
1114
|
-
"Logging":{"shape":"LoggingConfig"},
|
1115
|
-
"PriceClass":{"shape":"PriceClass"},
|
1116
|
-
"Enabled":{"shape":"boolean"},
|
1117
|
-
"ViewerCertificate":{"shape":"ViewerCertificate"},
|
1118
|
-
"Restrictions":{"shape":"Restrictions"},
|
1119
|
-
"WebACLId":{"shape":"string"},
|
1120
|
-
"HttpVersion":{"shape":"HttpVersion"},
|
1121
|
-
"IsIPV6Enabled":{"shape":"boolean"}
|
1122
|
-
}
|
1123
|
-
},
|
1124
|
-
"DistributionConfigWithTags":{
|
1125
|
-
"type":"structure",
|
1126
|
-
"required":[
|
1127
|
-
"DistributionConfig",
|
1128
|
-
"Tags"
|
1129
|
-
],
|
1130
|
-
"members":{
|
1131
|
-
"DistributionConfig":{"shape":"DistributionConfig"},
|
1132
|
-
"Tags":{"shape":"Tags"}
|
1133
|
-
}
|
1134
|
-
},
|
1135
|
-
"DistributionList":{
|
1136
|
-
"type":"structure",
|
1137
|
-
"required":[
|
1138
|
-
"Marker",
|
1139
|
-
"MaxItems",
|
1140
|
-
"IsTruncated",
|
1141
|
-
"Quantity"
|
1142
|
-
],
|
1143
|
-
"members":{
|
1144
|
-
"Marker":{"shape":"string"},
|
1145
|
-
"NextMarker":{"shape":"string"},
|
1146
|
-
"MaxItems":{"shape":"integer"},
|
1147
|
-
"IsTruncated":{"shape":"boolean"},
|
1148
|
-
"Quantity":{"shape":"integer"},
|
1149
|
-
"Items":{"shape":"DistributionSummaryList"}
|
1150
|
-
}
|
1151
|
-
},
|
1152
|
-
"DistributionNotDisabled":{
|
1153
|
-
"type":"structure",
|
1154
|
-
"members":{
|
1155
|
-
"Message":{"shape":"string"}
|
1156
|
-
},
|
1157
|
-
"error":{"httpStatusCode":409},
|
1158
|
-
"exception":true
|
1159
|
-
},
|
1160
|
-
"DistributionSummary":{
|
1161
|
-
"type":"structure",
|
1162
|
-
"required":[
|
1163
|
-
"Id",
|
1164
|
-
"ARN",
|
1165
|
-
"Status",
|
1166
|
-
"LastModifiedTime",
|
1167
|
-
"DomainName",
|
1168
|
-
"Aliases",
|
1169
|
-
"Origins",
|
1170
|
-
"DefaultCacheBehavior",
|
1171
|
-
"CacheBehaviors",
|
1172
|
-
"CustomErrorResponses",
|
1173
|
-
"Comment",
|
1174
|
-
"PriceClass",
|
1175
|
-
"Enabled",
|
1176
|
-
"ViewerCertificate",
|
1177
|
-
"Restrictions",
|
1178
|
-
"WebACLId",
|
1179
|
-
"HttpVersion",
|
1180
|
-
"IsIPV6Enabled"
|
1181
|
-
],
|
1182
|
-
"members":{
|
1183
|
-
"Id":{"shape":"string"},
|
1184
|
-
"ARN":{"shape":"string"},
|
1185
|
-
"Status":{"shape":"string"},
|
1186
|
-
"LastModifiedTime":{"shape":"timestamp"},
|
1187
|
-
"DomainName":{"shape":"string"},
|
1188
|
-
"Aliases":{"shape":"Aliases"},
|
1189
|
-
"Origins":{"shape":"Origins"},
|
1190
|
-
"DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
|
1191
|
-
"CacheBehaviors":{"shape":"CacheBehaviors"},
|
1192
|
-
"CustomErrorResponses":{"shape":"CustomErrorResponses"},
|
1193
|
-
"Comment":{"shape":"string"},
|
1194
|
-
"PriceClass":{"shape":"PriceClass"},
|
1195
|
-
"Enabled":{"shape":"boolean"},
|
1196
|
-
"ViewerCertificate":{"shape":"ViewerCertificate"},
|
1197
|
-
"Restrictions":{"shape":"Restrictions"},
|
1198
|
-
"WebACLId":{"shape":"string"},
|
1199
|
-
"HttpVersion":{"shape":"HttpVersion"},
|
1200
|
-
"IsIPV6Enabled":{"shape":"boolean"}
|
1201
|
-
}
|
1202
|
-
},
|
1203
|
-
"DistributionSummaryList":{
|
1204
|
-
"type":"list",
|
1205
|
-
"member":{
|
1206
|
-
"shape":"DistributionSummary",
|
1207
|
-
"locationName":"DistributionSummary"
|
1208
|
-
}
|
1209
|
-
},
|
1210
|
-
"EventType":{
|
1211
|
-
"type":"string",
|
1212
|
-
"enum":[
|
1213
|
-
"viewer-request",
|
1214
|
-
"viewer-response",
|
1215
|
-
"origin-request",
|
1216
|
-
"origin-response"
|
1217
|
-
]
|
1218
|
-
},
|
1219
|
-
"ForwardedValues":{
|
1220
|
-
"type":"structure",
|
1221
|
-
"required":[
|
1222
|
-
"QueryString",
|
1223
|
-
"Cookies"
|
1224
|
-
],
|
1225
|
-
"members":{
|
1226
|
-
"QueryString":{"shape":"boolean"},
|
1227
|
-
"Cookies":{"shape":"CookiePreference"},
|
1228
|
-
"Headers":{"shape":"Headers"},
|
1229
|
-
"QueryStringCacheKeys":{"shape":"QueryStringCacheKeys"}
|
1230
|
-
}
|
1231
|
-
},
|
1232
|
-
"GeoRestriction":{
|
1233
|
-
"type":"structure",
|
1234
|
-
"required":[
|
1235
|
-
"RestrictionType",
|
1236
|
-
"Quantity"
|
1237
|
-
],
|
1238
|
-
"members":{
|
1239
|
-
"RestrictionType":{"shape":"GeoRestrictionType"},
|
1240
|
-
"Quantity":{"shape":"integer"},
|
1241
|
-
"Items":{"shape":"LocationList"}
|
1242
|
-
}
|
1243
|
-
},
|
1244
|
-
"GeoRestrictionType":{
|
1245
|
-
"type":"string",
|
1246
|
-
"enum":[
|
1247
|
-
"blacklist",
|
1248
|
-
"whitelist",
|
1249
|
-
"none"
|
1250
|
-
]
|
1251
|
-
},
|
1252
|
-
"GetCloudFrontOriginAccessIdentityConfigRequest":{
|
1253
|
-
"type":"structure",
|
1254
|
-
"required":["Id"],
|
1255
|
-
"members":{
|
1256
|
-
"Id":{
|
1257
|
-
"shape":"string",
|
1258
|
-
"location":"uri",
|
1259
|
-
"locationName":"Id"
|
1260
|
-
}
|
1261
|
-
}
|
1262
|
-
},
|
1263
|
-
"GetCloudFrontOriginAccessIdentityConfigResult":{
|
1264
|
-
"type":"structure",
|
1265
|
-
"members":{
|
1266
|
-
"CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
|
1267
|
-
"ETag":{
|
1268
|
-
"shape":"string",
|
1269
|
-
"location":"header",
|
1270
|
-
"locationName":"ETag"
|
1271
|
-
}
|
1272
|
-
},
|
1273
|
-
"payload":"CloudFrontOriginAccessIdentityConfig"
|
1274
|
-
},
|
1275
|
-
"GetCloudFrontOriginAccessIdentityRequest":{
|
1276
|
-
"type":"structure",
|
1277
|
-
"required":["Id"],
|
1278
|
-
"members":{
|
1279
|
-
"Id":{
|
1280
|
-
"shape":"string",
|
1281
|
-
"location":"uri",
|
1282
|
-
"locationName":"Id"
|
1283
|
-
}
|
1284
|
-
}
|
1285
|
-
},
|
1286
|
-
"GetCloudFrontOriginAccessIdentityResult":{
|
1287
|
-
"type":"structure",
|
1288
|
-
"members":{
|
1289
|
-
"CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
|
1290
|
-
"ETag":{
|
1291
|
-
"shape":"string",
|
1292
|
-
"location":"header",
|
1293
|
-
"locationName":"ETag"
|
1294
|
-
}
|
1295
|
-
},
|
1296
|
-
"payload":"CloudFrontOriginAccessIdentity"
|
1297
|
-
},
|
1298
|
-
"GetDistributionConfigRequest":{
|
1299
|
-
"type":"structure",
|
1300
|
-
"required":["Id"],
|
1301
|
-
"members":{
|
1302
|
-
"Id":{
|
1303
|
-
"shape":"string",
|
1304
|
-
"location":"uri",
|
1305
|
-
"locationName":"Id"
|
1306
|
-
}
|
1307
|
-
}
|
1308
|
-
},
|
1309
|
-
"GetDistributionConfigResult":{
|
1310
|
-
"type":"structure",
|
1311
|
-
"members":{
|
1312
|
-
"DistributionConfig":{"shape":"DistributionConfig"},
|
1313
|
-
"ETag":{
|
1314
|
-
"shape":"string",
|
1315
|
-
"location":"header",
|
1316
|
-
"locationName":"ETag"
|
1317
|
-
}
|
1318
|
-
},
|
1319
|
-
"payload":"DistributionConfig"
|
1320
|
-
},
|
1321
|
-
"GetDistributionRequest":{
|
1322
|
-
"type":"structure",
|
1323
|
-
"required":["Id"],
|
1324
|
-
"members":{
|
1325
|
-
"Id":{
|
1326
|
-
"shape":"string",
|
1327
|
-
"location":"uri",
|
1328
|
-
"locationName":"Id"
|
1329
|
-
}
|
1330
|
-
}
|
1331
|
-
},
|
1332
|
-
"GetDistributionResult":{
|
1333
|
-
"type":"structure",
|
1334
|
-
"members":{
|
1335
|
-
"Distribution":{"shape":"Distribution"},
|
1336
|
-
"ETag":{
|
1337
|
-
"shape":"string",
|
1338
|
-
"location":"header",
|
1339
|
-
"locationName":"ETag"
|
1340
|
-
}
|
1341
|
-
},
|
1342
|
-
"payload":"Distribution"
|
1343
|
-
},
|
1344
|
-
"GetInvalidationRequest":{
|
1345
|
-
"type":"structure",
|
1346
|
-
"required":[
|
1347
|
-
"DistributionId",
|
1348
|
-
"Id"
|
1349
|
-
],
|
1350
|
-
"members":{
|
1351
|
-
"DistributionId":{
|
1352
|
-
"shape":"string",
|
1353
|
-
"location":"uri",
|
1354
|
-
"locationName":"DistributionId"
|
1355
|
-
},
|
1356
|
-
"Id":{
|
1357
|
-
"shape":"string",
|
1358
|
-
"location":"uri",
|
1359
|
-
"locationName":"Id"
|
1360
|
-
}
|
1361
|
-
}
|
1362
|
-
},
|
1363
|
-
"GetInvalidationResult":{
|
1364
|
-
"type":"structure",
|
1365
|
-
"members":{
|
1366
|
-
"Invalidation":{"shape":"Invalidation"}
|
1367
|
-
},
|
1368
|
-
"payload":"Invalidation"
|
1369
|
-
},
|
1370
|
-
"GetStreamingDistributionConfigRequest":{
|
1371
|
-
"type":"structure",
|
1372
|
-
"required":["Id"],
|
1373
|
-
"members":{
|
1374
|
-
"Id":{
|
1375
|
-
"shape":"string",
|
1376
|
-
"location":"uri",
|
1377
|
-
"locationName":"Id"
|
1378
|
-
}
|
1379
|
-
}
|
1380
|
-
},
|
1381
|
-
"GetStreamingDistributionConfigResult":{
|
1382
|
-
"type":"structure",
|
1383
|
-
"members":{
|
1384
|
-
"StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
|
1385
|
-
"ETag":{
|
1386
|
-
"shape":"string",
|
1387
|
-
"location":"header",
|
1388
|
-
"locationName":"ETag"
|
1389
|
-
}
|
1390
|
-
},
|
1391
|
-
"payload":"StreamingDistributionConfig"
|
1392
|
-
},
|
1393
|
-
"GetStreamingDistributionRequest":{
|
1394
|
-
"type":"structure",
|
1395
|
-
"required":["Id"],
|
1396
|
-
"members":{
|
1397
|
-
"Id":{
|
1398
|
-
"shape":"string",
|
1399
|
-
"location":"uri",
|
1400
|
-
"locationName":"Id"
|
1401
|
-
}
|
1402
|
-
}
|
1403
|
-
},
|
1404
|
-
"GetStreamingDistributionResult":{
|
1405
|
-
"type":"structure",
|
1406
|
-
"members":{
|
1407
|
-
"StreamingDistribution":{"shape":"StreamingDistribution"},
|
1408
|
-
"ETag":{
|
1409
|
-
"shape":"string",
|
1410
|
-
"location":"header",
|
1411
|
-
"locationName":"ETag"
|
1412
|
-
}
|
1413
|
-
},
|
1414
|
-
"payload":"StreamingDistribution"
|
1415
|
-
},
|
1416
|
-
"HeaderList":{
|
1417
|
-
"type":"list",
|
1418
|
-
"member":{
|
1419
|
-
"shape":"string",
|
1420
|
-
"locationName":"Name"
|
1421
|
-
}
|
1422
|
-
},
|
1423
|
-
"Headers":{
|
1424
|
-
"type":"structure",
|
1425
|
-
"required":["Quantity"],
|
1426
|
-
"members":{
|
1427
|
-
"Quantity":{"shape":"integer"},
|
1428
|
-
"Items":{"shape":"HeaderList"}
|
1429
|
-
}
|
1430
|
-
},
|
1431
|
-
"HttpVersion":{
|
1432
|
-
"type":"string",
|
1433
|
-
"enum":[
|
1434
|
-
"http1.1",
|
1435
|
-
"http2"
|
1436
|
-
]
|
1437
|
-
},
|
1438
|
-
"IllegalUpdate":{
|
1439
|
-
"type":"structure",
|
1440
|
-
"members":{
|
1441
|
-
"Message":{"shape":"string"}
|
1442
|
-
},
|
1443
|
-
"error":{"httpStatusCode":400},
|
1444
|
-
"exception":true
|
1445
|
-
},
|
1446
|
-
"InconsistentQuantities":{
|
1447
|
-
"type":"structure",
|
1448
|
-
"members":{
|
1449
|
-
"Message":{"shape":"string"}
|
1450
|
-
},
|
1451
|
-
"error":{"httpStatusCode":400},
|
1452
|
-
"exception":true
|
1453
|
-
},
|
1454
|
-
"InvalidArgument":{
|
1455
|
-
"type":"structure",
|
1456
|
-
"members":{
|
1457
|
-
"Message":{"shape":"string"}
|
1458
|
-
},
|
1459
|
-
"error":{"httpStatusCode":400},
|
1460
|
-
"exception":true
|
1461
|
-
},
|
1462
|
-
"InvalidDefaultRootObject":{
|
1463
|
-
"type":"structure",
|
1464
|
-
"members":{
|
1465
|
-
"Message":{"shape":"string"}
|
1466
|
-
},
|
1467
|
-
"error":{"httpStatusCode":400},
|
1468
|
-
"exception":true
|
1469
|
-
},
|
1470
|
-
"InvalidErrorCode":{
|
1471
|
-
"type":"structure",
|
1472
|
-
"members":{
|
1473
|
-
"Message":{"shape":"string"}
|
1474
|
-
},
|
1475
|
-
"error":{"httpStatusCode":400},
|
1476
|
-
"exception":true
|
1477
|
-
},
|
1478
|
-
"InvalidForwardCookies":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"members":{
|
1481
|
-
"Message":{"shape":"string"}
|
1482
|
-
},
|
1483
|
-
"error":{"httpStatusCode":400},
|
1484
|
-
"exception":true
|
1485
|
-
},
|
1486
|
-
"InvalidGeoRestrictionParameter":{
|
1487
|
-
"type":"structure",
|
1488
|
-
"members":{
|
1489
|
-
"Message":{"shape":"string"}
|
1490
|
-
},
|
1491
|
-
"error":{"httpStatusCode":400},
|
1492
|
-
"exception":true
|
1493
|
-
},
|
1494
|
-
"InvalidHeadersForS3Origin":{
|
1495
|
-
"type":"structure",
|
1496
|
-
"members":{
|
1497
|
-
"Message":{"shape":"string"}
|
1498
|
-
},
|
1499
|
-
"error":{"httpStatusCode":400},
|
1500
|
-
"exception":true
|
1501
|
-
},
|
1502
|
-
"InvalidIfMatchVersion":{
|
1503
|
-
"type":"structure",
|
1504
|
-
"members":{
|
1505
|
-
"Message":{"shape":"string"}
|
1506
|
-
},
|
1507
|
-
"error":{"httpStatusCode":400},
|
1508
|
-
"exception":true
|
1509
|
-
},
|
1510
|
-
"InvalidLambdaFunctionAssociation":{
|
1511
|
-
"type":"structure",
|
1512
|
-
"members":{
|
1513
|
-
"Message":{"shape":"string"}
|
1514
|
-
},
|
1515
|
-
"error":{"httpStatusCode":400},
|
1516
|
-
"exception":true
|
1517
|
-
},
|
1518
|
-
"InvalidLocationCode":{
|
1519
|
-
"type":"structure",
|
1520
|
-
"members":{
|
1521
|
-
"Message":{"shape":"string"}
|
1522
|
-
},
|
1523
|
-
"error":{"httpStatusCode":400},
|
1524
|
-
"exception":true
|
1525
|
-
},
|
1526
|
-
"InvalidMinimumProtocolVersion":{
|
1527
|
-
"type":"structure",
|
1528
|
-
"members":{
|
1529
|
-
"Message":{"shape":"string"}
|
1530
|
-
},
|
1531
|
-
"error":{"httpStatusCode":400},
|
1532
|
-
"exception":true
|
1533
|
-
},
|
1534
|
-
"InvalidOrigin":{
|
1535
|
-
"type":"structure",
|
1536
|
-
"members":{
|
1537
|
-
"Message":{"shape":"string"}
|
1538
|
-
},
|
1539
|
-
"error":{"httpStatusCode":400},
|
1540
|
-
"exception":true
|
1541
|
-
},
|
1542
|
-
"InvalidOriginAccessIdentity":{
|
1543
|
-
"type":"structure",
|
1544
|
-
"members":{
|
1545
|
-
"Message":{"shape":"string"}
|
1546
|
-
},
|
1547
|
-
"error":{"httpStatusCode":400},
|
1548
|
-
"exception":true
|
1549
|
-
},
|
1550
|
-
"InvalidProtocolSettings":{
|
1551
|
-
"type":"structure",
|
1552
|
-
"members":{
|
1553
|
-
"Message":{"shape":"string"}
|
1554
|
-
},
|
1555
|
-
"error":{"httpStatusCode":400},
|
1556
|
-
"exception":true
|
1557
|
-
},
|
1558
|
-
"InvalidQueryStringParameters":{
|
1559
|
-
"type":"structure",
|
1560
|
-
"members":{
|
1561
|
-
"Message":{"shape":"string"}
|
1562
|
-
},
|
1563
|
-
"error":{"httpStatusCode":400},
|
1564
|
-
"exception":true
|
1565
|
-
},
|
1566
|
-
"InvalidRelativePath":{
|
1567
|
-
"type":"structure",
|
1568
|
-
"members":{
|
1569
|
-
"Message":{"shape":"string"}
|
1570
|
-
},
|
1571
|
-
"error":{"httpStatusCode":400},
|
1572
|
-
"exception":true
|
1573
|
-
},
|
1574
|
-
"InvalidRequiredProtocol":{
|
1575
|
-
"type":"structure",
|
1576
|
-
"members":{
|
1577
|
-
"Message":{"shape":"string"}
|
1578
|
-
},
|
1579
|
-
"error":{"httpStatusCode":400},
|
1580
|
-
"exception":true
|
1581
|
-
},
|
1582
|
-
"InvalidResponseCode":{
|
1583
|
-
"type":"structure",
|
1584
|
-
"members":{
|
1585
|
-
"Message":{"shape":"string"}
|
1586
|
-
},
|
1587
|
-
"error":{"httpStatusCode":400},
|
1588
|
-
"exception":true
|
1589
|
-
},
|
1590
|
-
"InvalidTTLOrder":{
|
1591
|
-
"type":"structure",
|
1592
|
-
"members":{
|
1593
|
-
"Message":{"shape":"string"}
|
1594
|
-
},
|
1595
|
-
"error":{"httpStatusCode":400},
|
1596
|
-
"exception":true
|
1597
|
-
},
|
1598
|
-
"InvalidTagging":{
|
1599
|
-
"type":"structure",
|
1600
|
-
"members":{
|
1601
|
-
"Message":{"shape":"string"}
|
1602
|
-
},
|
1603
|
-
"error":{"httpStatusCode":400},
|
1604
|
-
"exception":true
|
1605
|
-
},
|
1606
|
-
"InvalidViewerCertificate":{
|
1607
|
-
"type":"structure",
|
1608
|
-
"members":{
|
1609
|
-
"Message":{"shape":"string"}
|
1610
|
-
},
|
1611
|
-
"error":{"httpStatusCode":400},
|
1612
|
-
"exception":true
|
1613
|
-
},
|
1614
|
-
"InvalidWebACLId":{
|
1615
|
-
"type":"structure",
|
1616
|
-
"members":{
|
1617
|
-
"Message":{"shape":"string"}
|
1618
|
-
},
|
1619
|
-
"error":{"httpStatusCode":400},
|
1620
|
-
"exception":true
|
1621
|
-
},
|
1622
|
-
"Invalidation":{
|
1623
|
-
"type":"structure",
|
1624
|
-
"required":[
|
1625
|
-
"Id",
|
1626
|
-
"Status",
|
1627
|
-
"CreateTime",
|
1628
|
-
"InvalidationBatch"
|
1629
|
-
],
|
1630
|
-
"members":{
|
1631
|
-
"Id":{"shape":"string"},
|
1632
|
-
"Status":{"shape":"string"},
|
1633
|
-
"CreateTime":{"shape":"timestamp"},
|
1634
|
-
"InvalidationBatch":{"shape":"InvalidationBatch"}
|
1635
|
-
}
|
1636
|
-
},
|
1637
|
-
"InvalidationBatch":{
|
1638
|
-
"type":"structure",
|
1639
|
-
"required":[
|
1640
|
-
"Paths",
|
1641
|
-
"CallerReference"
|
1642
|
-
],
|
1643
|
-
"members":{
|
1644
|
-
"Paths":{"shape":"Paths"},
|
1645
|
-
"CallerReference":{"shape":"string"}
|
1646
|
-
}
|
1647
|
-
},
|
1648
|
-
"InvalidationList":{
|
1649
|
-
"type":"structure",
|
1650
|
-
"required":[
|
1651
|
-
"Marker",
|
1652
|
-
"MaxItems",
|
1653
|
-
"IsTruncated",
|
1654
|
-
"Quantity"
|
1655
|
-
],
|
1656
|
-
"members":{
|
1657
|
-
"Marker":{"shape":"string"},
|
1658
|
-
"NextMarker":{"shape":"string"},
|
1659
|
-
"MaxItems":{"shape":"integer"},
|
1660
|
-
"IsTruncated":{"shape":"boolean"},
|
1661
|
-
"Quantity":{"shape":"integer"},
|
1662
|
-
"Items":{"shape":"InvalidationSummaryList"}
|
1663
|
-
}
|
1664
|
-
},
|
1665
|
-
"InvalidationSummary":{
|
1666
|
-
"type":"structure",
|
1667
|
-
"required":[
|
1668
|
-
"Id",
|
1669
|
-
"CreateTime",
|
1670
|
-
"Status"
|
1671
|
-
],
|
1672
|
-
"members":{
|
1673
|
-
"Id":{"shape":"string"},
|
1674
|
-
"CreateTime":{"shape":"timestamp"},
|
1675
|
-
"Status":{"shape":"string"}
|
1676
|
-
}
|
1677
|
-
},
|
1678
|
-
"InvalidationSummaryList":{
|
1679
|
-
"type":"list",
|
1680
|
-
"member":{
|
1681
|
-
"shape":"InvalidationSummary",
|
1682
|
-
"locationName":"InvalidationSummary"
|
1683
|
-
}
|
1684
|
-
},
|
1685
|
-
"ItemSelection":{
|
1686
|
-
"type":"string",
|
1687
|
-
"enum":[
|
1688
|
-
"none",
|
1689
|
-
"whitelist",
|
1690
|
-
"all"
|
1691
|
-
]
|
1692
|
-
},
|
1693
|
-
"KeyPairIdList":{
|
1694
|
-
"type":"list",
|
1695
|
-
"member":{
|
1696
|
-
"shape":"string",
|
1697
|
-
"locationName":"KeyPairId"
|
1698
|
-
}
|
1699
|
-
},
|
1700
|
-
"KeyPairIds":{
|
1701
|
-
"type":"structure",
|
1702
|
-
"required":["Quantity"],
|
1703
|
-
"members":{
|
1704
|
-
"Quantity":{"shape":"integer"},
|
1705
|
-
"Items":{"shape":"KeyPairIdList"}
|
1706
|
-
}
|
1707
|
-
},
|
1708
|
-
"LambdaFunctionAssociation":{
|
1709
|
-
"type":"structure",
|
1710
|
-
"members":{
|
1711
|
-
"LambdaFunctionARN":{"shape":"string"},
|
1712
|
-
"EventType":{"shape":"EventType"}
|
1713
|
-
}
|
1714
|
-
},
|
1715
|
-
"LambdaFunctionAssociationList":{
|
1716
|
-
"type":"list",
|
1717
|
-
"member":{
|
1718
|
-
"shape":"LambdaFunctionAssociation",
|
1719
|
-
"locationName":"LambdaFunctionAssociation"
|
1720
|
-
}
|
1721
|
-
},
|
1722
|
-
"LambdaFunctionAssociations":{
|
1723
|
-
"type":"structure",
|
1724
|
-
"required":["Quantity"],
|
1725
|
-
"members":{
|
1726
|
-
"Quantity":{"shape":"integer"},
|
1727
|
-
"Items":{"shape":"LambdaFunctionAssociationList"}
|
1728
|
-
}
|
1729
|
-
},
|
1730
|
-
"ListCloudFrontOriginAccessIdentitiesRequest":{
|
1731
|
-
"type":"structure",
|
1732
|
-
"members":{
|
1733
|
-
"Marker":{
|
1734
|
-
"shape":"string",
|
1735
|
-
"location":"querystring",
|
1736
|
-
"locationName":"Marker"
|
1737
|
-
},
|
1738
|
-
"MaxItems":{
|
1739
|
-
"shape":"string",
|
1740
|
-
"location":"querystring",
|
1741
|
-
"locationName":"MaxItems"
|
1742
|
-
}
|
1743
|
-
}
|
1744
|
-
},
|
1745
|
-
"ListCloudFrontOriginAccessIdentitiesResult":{
|
1746
|
-
"type":"structure",
|
1747
|
-
"members":{
|
1748
|
-
"CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
|
1749
|
-
},
|
1750
|
-
"payload":"CloudFrontOriginAccessIdentityList"
|
1751
|
-
},
|
1752
|
-
"ListDistributionsByWebACLIdRequest":{
|
1753
|
-
"type":"structure",
|
1754
|
-
"required":["WebACLId"],
|
1755
|
-
"members":{
|
1756
|
-
"Marker":{
|
1757
|
-
"shape":"string",
|
1758
|
-
"location":"querystring",
|
1759
|
-
"locationName":"Marker"
|
1760
|
-
},
|
1761
|
-
"MaxItems":{
|
1762
|
-
"shape":"string",
|
1763
|
-
"location":"querystring",
|
1764
|
-
"locationName":"MaxItems"
|
1765
|
-
},
|
1766
|
-
"WebACLId":{
|
1767
|
-
"shape":"string",
|
1768
|
-
"location":"uri",
|
1769
|
-
"locationName":"WebACLId"
|
1770
|
-
}
|
1771
|
-
}
|
1772
|
-
},
|
1773
|
-
"ListDistributionsByWebACLIdResult":{
|
1774
|
-
"type":"structure",
|
1775
|
-
"members":{
|
1776
|
-
"DistributionList":{"shape":"DistributionList"}
|
1777
|
-
},
|
1778
|
-
"payload":"DistributionList"
|
1779
|
-
},
|
1780
|
-
"ListDistributionsRequest":{
|
1781
|
-
"type":"structure",
|
1782
|
-
"members":{
|
1783
|
-
"Marker":{
|
1784
|
-
"shape":"string",
|
1785
|
-
"location":"querystring",
|
1786
|
-
"locationName":"Marker"
|
1787
|
-
},
|
1788
|
-
"MaxItems":{
|
1789
|
-
"shape":"string",
|
1790
|
-
"location":"querystring",
|
1791
|
-
"locationName":"MaxItems"
|
1792
|
-
}
|
1793
|
-
}
|
1794
|
-
},
|
1795
|
-
"ListDistributionsResult":{
|
1796
|
-
"type":"structure",
|
1797
|
-
"members":{
|
1798
|
-
"DistributionList":{"shape":"DistributionList"}
|
1799
|
-
},
|
1800
|
-
"payload":"DistributionList"
|
1801
|
-
},
|
1802
|
-
"ListInvalidationsRequest":{
|
1803
|
-
"type":"structure",
|
1804
|
-
"required":["DistributionId"],
|
1805
|
-
"members":{
|
1806
|
-
"DistributionId":{
|
1807
|
-
"shape":"string",
|
1808
|
-
"location":"uri",
|
1809
|
-
"locationName":"DistributionId"
|
1810
|
-
},
|
1811
|
-
"Marker":{
|
1812
|
-
"shape":"string",
|
1813
|
-
"location":"querystring",
|
1814
|
-
"locationName":"Marker"
|
1815
|
-
},
|
1816
|
-
"MaxItems":{
|
1817
|
-
"shape":"string",
|
1818
|
-
"location":"querystring",
|
1819
|
-
"locationName":"MaxItems"
|
1820
|
-
}
|
1821
|
-
}
|
1822
|
-
},
|
1823
|
-
"ListInvalidationsResult":{
|
1824
|
-
"type":"structure",
|
1825
|
-
"members":{
|
1826
|
-
"InvalidationList":{"shape":"InvalidationList"}
|
1827
|
-
},
|
1828
|
-
"payload":"InvalidationList"
|
1829
|
-
},
|
1830
|
-
"ListStreamingDistributionsRequest":{
|
1831
|
-
"type":"structure",
|
1832
|
-
"members":{
|
1833
|
-
"Marker":{
|
1834
|
-
"shape":"string",
|
1835
|
-
"location":"querystring",
|
1836
|
-
"locationName":"Marker"
|
1837
|
-
},
|
1838
|
-
"MaxItems":{
|
1839
|
-
"shape":"string",
|
1840
|
-
"location":"querystring",
|
1841
|
-
"locationName":"MaxItems"
|
1842
|
-
}
|
1843
|
-
}
|
1844
|
-
},
|
1845
|
-
"ListStreamingDistributionsResult":{
|
1846
|
-
"type":"structure",
|
1847
|
-
"members":{
|
1848
|
-
"StreamingDistributionList":{"shape":"StreamingDistributionList"}
|
1849
|
-
},
|
1850
|
-
"payload":"StreamingDistributionList"
|
1851
|
-
},
|
1852
|
-
"ListTagsForResourceRequest":{
|
1853
|
-
"type":"structure",
|
1854
|
-
"required":["Resource"],
|
1855
|
-
"members":{
|
1856
|
-
"Resource":{
|
1857
|
-
"shape":"ResourceARN",
|
1858
|
-
"location":"querystring",
|
1859
|
-
"locationName":"Resource"
|
1860
|
-
}
|
1861
|
-
}
|
1862
|
-
},
|
1863
|
-
"ListTagsForResourceResult":{
|
1864
|
-
"type":"structure",
|
1865
|
-
"required":["Tags"],
|
1866
|
-
"members":{
|
1867
|
-
"Tags":{"shape":"Tags"}
|
1868
|
-
},
|
1869
|
-
"payload":"Tags"
|
1870
|
-
},
|
1871
|
-
"LocationList":{
|
1872
|
-
"type":"list",
|
1873
|
-
"member":{
|
1874
|
-
"shape":"string",
|
1875
|
-
"locationName":"Location"
|
1876
|
-
}
|
1877
|
-
},
|
1878
|
-
"LoggingConfig":{
|
1879
|
-
"type":"structure",
|
1880
|
-
"required":[
|
1881
|
-
"Enabled",
|
1882
|
-
"IncludeCookies",
|
1883
|
-
"Bucket",
|
1884
|
-
"Prefix"
|
1885
|
-
],
|
1886
|
-
"members":{
|
1887
|
-
"Enabled":{"shape":"boolean"},
|
1888
|
-
"IncludeCookies":{"shape":"boolean"},
|
1889
|
-
"Bucket":{"shape":"string"},
|
1890
|
-
"Prefix":{"shape":"string"}
|
1891
|
-
}
|
1892
|
-
},
|
1893
|
-
"Method":{
|
1894
|
-
"type":"string",
|
1895
|
-
"enum":[
|
1896
|
-
"GET",
|
1897
|
-
"HEAD",
|
1898
|
-
"POST",
|
1899
|
-
"PUT",
|
1900
|
-
"PATCH",
|
1901
|
-
"OPTIONS",
|
1902
|
-
"DELETE"
|
1903
|
-
]
|
1904
|
-
},
|
1905
|
-
"MethodsList":{
|
1906
|
-
"type":"list",
|
1907
|
-
"member":{
|
1908
|
-
"shape":"Method",
|
1909
|
-
"locationName":"Method"
|
1910
|
-
}
|
1911
|
-
},
|
1912
|
-
"MinimumProtocolVersion":{
|
1913
|
-
"type":"string",
|
1914
|
-
"enum":[
|
1915
|
-
"SSLv3",
|
1916
|
-
"TLSv1"
|
1917
|
-
]
|
1918
|
-
},
|
1919
|
-
"MissingBody":{
|
1920
|
-
"type":"structure",
|
1921
|
-
"members":{
|
1922
|
-
"Message":{"shape":"string"}
|
1923
|
-
},
|
1924
|
-
"error":{"httpStatusCode":400},
|
1925
|
-
"exception":true
|
1926
|
-
},
|
1927
|
-
"NoSuchCloudFrontOriginAccessIdentity":{
|
1928
|
-
"type":"structure",
|
1929
|
-
"members":{
|
1930
|
-
"Message":{"shape":"string"}
|
1931
|
-
},
|
1932
|
-
"error":{"httpStatusCode":404},
|
1933
|
-
"exception":true
|
1934
|
-
},
|
1935
|
-
"NoSuchDistribution":{
|
1936
|
-
"type":"structure",
|
1937
|
-
"members":{
|
1938
|
-
"Message":{"shape":"string"}
|
1939
|
-
},
|
1940
|
-
"error":{"httpStatusCode":404},
|
1941
|
-
"exception":true
|
1942
|
-
},
|
1943
|
-
"NoSuchInvalidation":{
|
1944
|
-
"type":"structure",
|
1945
|
-
"members":{
|
1946
|
-
"Message":{"shape":"string"}
|
1947
|
-
},
|
1948
|
-
"error":{"httpStatusCode":404},
|
1949
|
-
"exception":true
|
1950
|
-
},
|
1951
|
-
"NoSuchOrigin":{
|
1952
|
-
"type":"structure",
|
1953
|
-
"members":{
|
1954
|
-
"Message":{"shape":"string"}
|
1955
|
-
},
|
1956
|
-
"error":{"httpStatusCode":404},
|
1957
|
-
"exception":true
|
1958
|
-
},
|
1959
|
-
"NoSuchResource":{
|
1960
|
-
"type":"structure",
|
1961
|
-
"members":{
|
1962
|
-
"Message":{"shape":"string"}
|
1963
|
-
},
|
1964
|
-
"error":{"httpStatusCode":404},
|
1965
|
-
"exception":true
|
1966
|
-
},
|
1967
|
-
"NoSuchStreamingDistribution":{
|
1968
|
-
"type":"structure",
|
1969
|
-
"members":{
|
1970
|
-
"Message":{"shape":"string"}
|
1971
|
-
},
|
1972
|
-
"error":{"httpStatusCode":404},
|
1973
|
-
"exception":true
|
1974
|
-
},
|
1975
|
-
"Origin":{
|
1976
|
-
"type":"structure",
|
1977
|
-
"required":[
|
1978
|
-
"Id",
|
1979
|
-
"DomainName"
|
1980
|
-
],
|
1981
|
-
"members":{
|
1982
|
-
"Id":{"shape":"string"},
|
1983
|
-
"DomainName":{"shape":"string"},
|
1984
|
-
"OriginPath":{"shape":"string"},
|
1985
|
-
"CustomHeaders":{"shape":"CustomHeaders"},
|
1986
|
-
"S3OriginConfig":{"shape":"S3OriginConfig"},
|
1987
|
-
"CustomOriginConfig":{"shape":"CustomOriginConfig"}
|
1988
|
-
}
|
1989
|
-
},
|
1990
|
-
"OriginCustomHeader":{
|
1991
|
-
"type":"structure",
|
1992
|
-
"required":[
|
1993
|
-
"HeaderName",
|
1994
|
-
"HeaderValue"
|
1995
|
-
],
|
1996
|
-
"members":{
|
1997
|
-
"HeaderName":{"shape":"string"},
|
1998
|
-
"HeaderValue":{"shape":"string"}
|
1999
|
-
}
|
2000
|
-
},
|
2001
|
-
"OriginCustomHeadersList":{
|
2002
|
-
"type":"list",
|
2003
|
-
"member":{
|
2004
|
-
"shape":"OriginCustomHeader",
|
2005
|
-
"locationName":"OriginCustomHeader"
|
2006
|
-
}
|
2007
|
-
},
|
2008
|
-
"OriginList":{
|
2009
|
-
"type":"list",
|
2010
|
-
"member":{
|
2011
|
-
"shape":"Origin",
|
2012
|
-
"locationName":"Origin"
|
2013
|
-
},
|
2014
|
-
"min":1
|
2015
|
-
},
|
2016
|
-
"OriginProtocolPolicy":{
|
2017
|
-
"type":"string",
|
2018
|
-
"enum":[
|
2019
|
-
"http-only",
|
2020
|
-
"match-viewer",
|
2021
|
-
"https-only"
|
2022
|
-
]
|
2023
|
-
},
|
2024
|
-
"OriginSslProtocols":{
|
2025
|
-
"type":"structure",
|
2026
|
-
"required":[
|
2027
|
-
"Quantity",
|
2028
|
-
"Items"
|
2029
|
-
],
|
2030
|
-
"members":{
|
2031
|
-
"Quantity":{"shape":"integer"},
|
2032
|
-
"Items":{"shape":"SslProtocolsList"}
|
2033
|
-
}
|
2034
|
-
},
|
2035
|
-
"Origins":{
|
2036
|
-
"type":"structure",
|
2037
|
-
"required":["Quantity"],
|
2038
|
-
"members":{
|
2039
|
-
"Quantity":{"shape":"integer"},
|
2040
|
-
"Items":{"shape":"OriginList"}
|
2041
|
-
}
|
2042
|
-
},
|
2043
|
-
"PathList":{
|
2044
|
-
"type":"list",
|
2045
|
-
"member":{
|
2046
|
-
"shape":"string",
|
2047
|
-
"locationName":"Path"
|
2048
|
-
}
|
2049
|
-
},
|
2050
|
-
"Paths":{
|
2051
|
-
"type":"structure",
|
2052
|
-
"required":["Quantity"],
|
2053
|
-
"members":{
|
2054
|
-
"Quantity":{"shape":"integer"},
|
2055
|
-
"Items":{"shape":"PathList"}
|
2056
|
-
}
|
2057
|
-
},
|
2058
|
-
"PreconditionFailed":{
|
2059
|
-
"type":"structure",
|
2060
|
-
"members":{
|
2061
|
-
"Message":{"shape":"string"}
|
2062
|
-
},
|
2063
|
-
"error":{"httpStatusCode":412},
|
2064
|
-
"exception":true
|
2065
|
-
},
|
2066
|
-
"PriceClass":{
|
2067
|
-
"type":"string",
|
2068
|
-
"enum":[
|
2069
|
-
"PriceClass_100",
|
2070
|
-
"PriceClass_200",
|
2071
|
-
"PriceClass_All"
|
2072
|
-
]
|
2073
|
-
},
|
2074
|
-
"QueryStringCacheKeys":{
|
2075
|
-
"type":"structure",
|
2076
|
-
"required":["Quantity"],
|
2077
|
-
"members":{
|
2078
|
-
"Quantity":{"shape":"integer"},
|
2079
|
-
"Items":{"shape":"QueryStringCacheKeysList"}
|
2080
|
-
}
|
2081
|
-
},
|
2082
|
-
"QueryStringCacheKeysList":{
|
2083
|
-
"type":"list",
|
2084
|
-
"member":{
|
2085
|
-
"shape":"string",
|
2086
|
-
"locationName":"Name"
|
2087
|
-
}
|
2088
|
-
},
|
2089
|
-
"ResourceARN":{
|
2090
|
-
"type":"string",
|
2091
|
-
"pattern":"arn:aws:cloudfront::[0-9]+:.*"
|
2092
|
-
},
|
2093
|
-
"Restrictions":{
|
2094
|
-
"type":"structure",
|
2095
|
-
"required":["GeoRestriction"],
|
2096
|
-
"members":{
|
2097
|
-
"GeoRestriction":{"shape":"GeoRestriction"}
|
2098
|
-
}
|
2099
|
-
},
|
2100
|
-
"S3Origin":{
|
2101
|
-
"type":"structure",
|
2102
|
-
"required":[
|
2103
|
-
"DomainName",
|
2104
|
-
"OriginAccessIdentity"
|
2105
|
-
],
|
2106
|
-
"members":{
|
2107
|
-
"DomainName":{"shape":"string"},
|
2108
|
-
"OriginAccessIdentity":{"shape":"string"}
|
2109
|
-
}
|
2110
|
-
},
|
2111
|
-
"S3OriginConfig":{
|
2112
|
-
"type":"structure",
|
2113
|
-
"required":["OriginAccessIdentity"],
|
2114
|
-
"members":{
|
2115
|
-
"OriginAccessIdentity":{"shape":"string"}
|
2116
|
-
}
|
2117
|
-
},
|
2118
|
-
"SSLSupportMethod":{
|
2119
|
-
"type":"string",
|
2120
|
-
"enum":[
|
2121
|
-
"sni-only",
|
2122
|
-
"vip"
|
2123
|
-
]
|
2124
|
-
},
|
2125
|
-
"Signer":{
|
2126
|
-
"type":"structure",
|
2127
|
-
"members":{
|
2128
|
-
"AwsAccountNumber":{"shape":"string"},
|
2129
|
-
"KeyPairIds":{"shape":"KeyPairIds"}
|
2130
|
-
}
|
2131
|
-
},
|
2132
|
-
"SignerList":{
|
2133
|
-
"type":"list",
|
2134
|
-
"member":{
|
2135
|
-
"shape":"Signer",
|
2136
|
-
"locationName":"Signer"
|
2137
|
-
}
|
2138
|
-
},
|
2139
|
-
"SslProtocol":{
|
2140
|
-
"type":"string",
|
2141
|
-
"enum":[
|
2142
|
-
"SSLv3",
|
2143
|
-
"TLSv1",
|
2144
|
-
"TLSv1.1",
|
2145
|
-
"TLSv1.2"
|
2146
|
-
]
|
2147
|
-
},
|
2148
|
-
"SslProtocolsList":{
|
2149
|
-
"type":"list",
|
2150
|
-
"member":{
|
2151
|
-
"shape":"SslProtocol",
|
2152
|
-
"locationName":"SslProtocol"
|
2153
|
-
}
|
2154
|
-
},
|
2155
|
-
"StreamingDistribution":{
|
2156
|
-
"type":"structure",
|
2157
|
-
"required":[
|
2158
|
-
"Id",
|
2159
|
-
"ARN",
|
2160
|
-
"Status",
|
2161
|
-
"DomainName",
|
2162
|
-
"ActiveTrustedSigners",
|
2163
|
-
"StreamingDistributionConfig"
|
2164
|
-
],
|
2165
|
-
"members":{
|
2166
|
-
"Id":{"shape":"string"},
|
2167
|
-
"ARN":{"shape":"string"},
|
2168
|
-
"Status":{"shape":"string"},
|
2169
|
-
"LastModifiedTime":{"shape":"timestamp"},
|
2170
|
-
"DomainName":{"shape":"string"},
|
2171
|
-
"ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
|
2172
|
-
"StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
|
2173
|
-
}
|
2174
|
-
},
|
2175
|
-
"StreamingDistributionAlreadyExists":{
|
2176
|
-
"type":"structure",
|
2177
|
-
"members":{
|
2178
|
-
"Message":{"shape":"string"}
|
2179
|
-
},
|
2180
|
-
"error":{"httpStatusCode":409},
|
2181
|
-
"exception":true
|
2182
|
-
},
|
2183
|
-
"StreamingDistributionConfig":{
|
2184
|
-
"type":"structure",
|
2185
|
-
"required":[
|
2186
|
-
"CallerReference",
|
2187
|
-
"S3Origin",
|
2188
|
-
"Comment",
|
2189
|
-
"TrustedSigners",
|
2190
|
-
"Enabled"
|
2191
|
-
],
|
2192
|
-
"members":{
|
2193
|
-
"CallerReference":{"shape":"string"},
|
2194
|
-
"S3Origin":{"shape":"S3Origin"},
|
2195
|
-
"Aliases":{"shape":"Aliases"},
|
2196
|
-
"Comment":{"shape":"string"},
|
2197
|
-
"Logging":{"shape":"StreamingLoggingConfig"},
|
2198
|
-
"TrustedSigners":{"shape":"TrustedSigners"},
|
2199
|
-
"PriceClass":{"shape":"PriceClass"},
|
2200
|
-
"Enabled":{"shape":"boolean"}
|
2201
|
-
}
|
2202
|
-
},
|
2203
|
-
"StreamingDistributionConfigWithTags":{
|
2204
|
-
"type":"structure",
|
2205
|
-
"required":[
|
2206
|
-
"StreamingDistributionConfig",
|
2207
|
-
"Tags"
|
2208
|
-
],
|
2209
|
-
"members":{
|
2210
|
-
"StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
|
2211
|
-
"Tags":{"shape":"Tags"}
|
2212
|
-
}
|
2213
|
-
},
|
2214
|
-
"StreamingDistributionList":{
|
2215
|
-
"type":"structure",
|
2216
|
-
"required":[
|
2217
|
-
"Marker",
|
2218
|
-
"MaxItems",
|
2219
|
-
"IsTruncated",
|
2220
|
-
"Quantity"
|
2221
|
-
],
|
2222
|
-
"members":{
|
2223
|
-
"Marker":{"shape":"string"},
|
2224
|
-
"NextMarker":{"shape":"string"},
|
2225
|
-
"MaxItems":{"shape":"integer"},
|
2226
|
-
"IsTruncated":{"shape":"boolean"},
|
2227
|
-
"Quantity":{"shape":"integer"},
|
2228
|
-
"Items":{"shape":"StreamingDistributionSummaryList"}
|
2229
|
-
}
|
2230
|
-
},
|
2231
|
-
"StreamingDistributionNotDisabled":{
|
2232
|
-
"type":"structure",
|
2233
|
-
"members":{
|
2234
|
-
"Message":{"shape":"string"}
|
2235
|
-
},
|
2236
|
-
"error":{"httpStatusCode":409},
|
2237
|
-
"exception":true
|
2238
|
-
},
|
2239
|
-
"StreamingDistributionSummary":{
|
2240
|
-
"type":"structure",
|
2241
|
-
"required":[
|
2242
|
-
"Id",
|
2243
|
-
"ARN",
|
2244
|
-
"Status",
|
2245
|
-
"LastModifiedTime",
|
2246
|
-
"DomainName",
|
2247
|
-
"S3Origin",
|
2248
|
-
"Aliases",
|
2249
|
-
"TrustedSigners",
|
2250
|
-
"Comment",
|
2251
|
-
"PriceClass",
|
2252
|
-
"Enabled"
|
2253
|
-
],
|
2254
|
-
"members":{
|
2255
|
-
"Id":{"shape":"string"},
|
2256
|
-
"ARN":{"shape":"string"},
|
2257
|
-
"Status":{"shape":"string"},
|
2258
|
-
"LastModifiedTime":{"shape":"timestamp"},
|
2259
|
-
"DomainName":{"shape":"string"},
|
2260
|
-
"S3Origin":{"shape":"S3Origin"},
|
2261
|
-
"Aliases":{"shape":"Aliases"},
|
2262
|
-
"TrustedSigners":{"shape":"TrustedSigners"},
|
2263
|
-
"Comment":{"shape":"string"},
|
2264
|
-
"PriceClass":{"shape":"PriceClass"},
|
2265
|
-
"Enabled":{"shape":"boolean"}
|
2266
|
-
}
|
2267
|
-
},
|
2268
|
-
"StreamingDistributionSummaryList":{
|
2269
|
-
"type":"list",
|
2270
|
-
"member":{
|
2271
|
-
"shape":"StreamingDistributionSummary",
|
2272
|
-
"locationName":"StreamingDistributionSummary"
|
2273
|
-
}
|
2274
|
-
},
|
2275
|
-
"StreamingLoggingConfig":{
|
2276
|
-
"type":"structure",
|
2277
|
-
"required":[
|
2278
|
-
"Enabled",
|
2279
|
-
"Bucket",
|
2280
|
-
"Prefix"
|
2281
|
-
],
|
2282
|
-
"members":{
|
2283
|
-
"Enabled":{"shape":"boolean"},
|
2284
|
-
"Bucket":{"shape":"string"},
|
2285
|
-
"Prefix":{"shape":"string"}
|
2286
|
-
}
|
2287
|
-
},
|
2288
|
-
"Tag":{
|
2289
|
-
"type":"structure",
|
2290
|
-
"required":["Key"],
|
2291
|
-
"members":{
|
2292
|
-
"Key":{"shape":"TagKey"},
|
2293
|
-
"Value":{"shape":"TagValue"}
|
2294
|
-
}
|
2295
|
-
},
|
2296
|
-
"TagKey":{
|
2297
|
-
"type":"string",
|
2298
|
-
"max":128,
|
2299
|
-
"min":1,
|
2300
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
2301
|
-
},
|
2302
|
-
"TagKeyList":{
|
2303
|
-
"type":"list",
|
2304
|
-
"member":{
|
2305
|
-
"shape":"TagKey",
|
2306
|
-
"locationName":"Key"
|
2307
|
-
}
|
2308
|
-
},
|
2309
|
-
"TagKeys":{
|
2310
|
-
"type":"structure",
|
2311
|
-
"members":{
|
2312
|
-
"Items":{"shape":"TagKeyList"}
|
2313
|
-
}
|
2314
|
-
},
|
2315
|
-
"TagList":{
|
2316
|
-
"type":"list",
|
2317
|
-
"member":{
|
2318
|
-
"shape":"Tag",
|
2319
|
-
"locationName":"Tag"
|
2320
|
-
}
|
2321
|
-
},
|
2322
|
-
"TagResourceRequest":{
|
2323
|
-
"type":"structure",
|
2324
|
-
"required":[
|
2325
|
-
"Resource",
|
2326
|
-
"Tags"
|
2327
|
-
],
|
2328
|
-
"members":{
|
2329
|
-
"Resource":{
|
2330
|
-
"shape":"ResourceARN",
|
2331
|
-
"location":"querystring",
|
2332
|
-
"locationName":"Resource"
|
2333
|
-
},
|
2334
|
-
"Tags":{
|
2335
|
-
"shape":"Tags",
|
2336
|
-
"locationName":"Tags",
|
2337
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
2338
|
-
}
|
2339
|
-
},
|
2340
|
-
"payload":"Tags"
|
2341
|
-
},
|
2342
|
-
"TagValue":{
|
2343
|
-
"type":"string",
|
2344
|
-
"max":256,
|
2345
|
-
"min":0,
|
2346
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
2347
|
-
},
|
2348
|
-
"Tags":{
|
2349
|
-
"type":"structure",
|
2350
|
-
"members":{
|
2351
|
-
"Items":{"shape":"TagList"}
|
2352
|
-
}
|
2353
|
-
},
|
2354
|
-
"TooManyCacheBehaviors":{
|
2355
|
-
"type":"structure",
|
2356
|
-
"members":{
|
2357
|
-
"Message":{"shape":"string"}
|
2358
|
-
},
|
2359
|
-
"error":{"httpStatusCode":400},
|
2360
|
-
"exception":true
|
2361
|
-
},
|
2362
|
-
"TooManyCertificates":{
|
2363
|
-
"type":"structure",
|
2364
|
-
"members":{
|
2365
|
-
"Message":{"shape":"string"}
|
2366
|
-
},
|
2367
|
-
"error":{"httpStatusCode":400},
|
2368
|
-
"exception":true
|
2369
|
-
},
|
2370
|
-
"TooManyCloudFrontOriginAccessIdentities":{
|
2371
|
-
"type":"structure",
|
2372
|
-
"members":{
|
2373
|
-
"Message":{"shape":"string"}
|
2374
|
-
},
|
2375
|
-
"error":{"httpStatusCode":400},
|
2376
|
-
"exception":true
|
2377
|
-
},
|
2378
|
-
"TooManyCookieNamesInWhiteList":{
|
2379
|
-
"type":"structure",
|
2380
|
-
"members":{
|
2381
|
-
"Message":{"shape":"string"}
|
2382
|
-
},
|
2383
|
-
"error":{"httpStatusCode":400},
|
2384
|
-
"exception":true
|
2385
|
-
},
|
2386
|
-
"TooManyDistributionCNAMEs":{
|
2387
|
-
"type":"structure",
|
2388
|
-
"members":{
|
2389
|
-
"Message":{"shape":"string"}
|
2390
|
-
},
|
2391
|
-
"error":{"httpStatusCode":400},
|
2392
|
-
"exception":true
|
2393
|
-
},
|
2394
|
-
"TooManyDistributions":{
|
2395
|
-
"type":"structure",
|
2396
|
-
"members":{
|
2397
|
-
"Message":{"shape":"string"}
|
2398
|
-
},
|
2399
|
-
"error":{"httpStatusCode":400},
|
2400
|
-
"exception":true
|
2401
|
-
},
|
2402
|
-
"TooManyDistributionsWithLambdaAssociations":{
|
2403
|
-
"type":"structure",
|
2404
|
-
"members":{
|
2405
|
-
"Message":{"shape":"string"}
|
2406
|
-
},
|
2407
|
-
"error":{"httpStatusCode":400},
|
2408
|
-
"exception":true
|
2409
|
-
},
|
2410
|
-
"TooManyHeadersInForwardedValues":{
|
2411
|
-
"type":"structure",
|
2412
|
-
"members":{
|
2413
|
-
"Message":{"shape":"string"}
|
2414
|
-
},
|
2415
|
-
"error":{"httpStatusCode":400},
|
2416
|
-
"exception":true
|
2417
|
-
},
|
2418
|
-
"TooManyInvalidationsInProgress":{
|
2419
|
-
"type":"structure",
|
2420
|
-
"members":{
|
2421
|
-
"Message":{"shape":"string"}
|
2422
|
-
},
|
2423
|
-
"error":{"httpStatusCode":400},
|
2424
|
-
"exception":true
|
2425
|
-
},
|
2426
|
-
"TooManyLambdaFunctionAssociations":{
|
2427
|
-
"type":"structure",
|
2428
|
-
"members":{
|
2429
|
-
"Message":{"shape":"string"}
|
2430
|
-
},
|
2431
|
-
"error":{"httpStatusCode":400},
|
2432
|
-
"exception":true
|
2433
|
-
},
|
2434
|
-
"TooManyOriginCustomHeaders":{
|
2435
|
-
"type":"structure",
|
2436
|
-
"members":{
|
2437
|
-
"Message":{"shape":"string"}
|
2438
|
-
},
|
2439
|
-
"error":{"httpStatusCode":400},
|
2440
|
-
"exception":true
|
2441
|
-
},
|
2442
|
-
"TooManyOrigins":{
|
2443
|
-
"type":"structure",
|
2444
|
-
"members":{
|
2445
|
-
"Message":{"shape":"string"}
|
2446
|
-
},
|
2447
|
-
"error":{"httpStatusCode":400},
|
2448
|
-
"exception":true
|
2449
|
-
},
|
2450
|
-
"TooManyQueryStringParameters":{
|
2451
|
-
"type":"structure",
|
2452
|
-
"members":{
|
2453
|
-
"Message":{"shape":"string"}
|
2454
|
-
},
|
2455
|
-
"error":{"httpStatusCode":400},
|
2456
|
-
"exception":true
|
2457
|
-
},
|
2458
|
-
"TooManyStreamingDistributionCNAMEs":{
|
2459
|
-
"type":"structure",
|
2460
|
-
"members":{
|
2461
|
-
"Message":{"shape":"string"}
|
2462
|
-
},
|
2463
|
-
"error":{"httpStatusCode":400},
|
2464
|
-
"exception":true
|
2465
|
-
},
|
2466
|
-
"TooManyStreamingDistributions":{
|
2467
|
-
"type":"structure",
|
2468
|
-
"members":{
|
2469
|
-
"Message":{"shape":"string"}
|
2470
|
-
},
|
2471
|
-
"error":{"httpStatusCode":400},
|
2472
|
-
"exception":true
|
2473
|
-
},
|
2474
|
-
"TooManyTrustedSigners":{
|
2475
|
-
"type":"structure",
|
2476
|
-
"members":{
|
2477
|
-
"Message":{"shape":"string"}
|
2478
|
-
},
|
2479
|
-
"error":{"httpStatusCode":400},
|
2480
|
-
"exception":true
|
2481
|
-
},
|
2482
|
-
"TrustedSignerDoesNotExist":{
|
2483
|
-
"type":"structure",
|
2484
|
-
"members":{
|
2485
|
-
"Message":{"shape":"string"}
|
2486
|
-
},
|
2487
|
-
"error":{"httpStatusCode":400},
|
2488
|
-
"exception":true
|
2489
|
-
},
|
2490
|
-
"TrustedSigners":{
|
2491
|
-
"type":"structure",
|
2492
|
-
"required":[
|
2493
|
-
"Enabled",
|
2494
|
-
"Quantity"
|
2495
|
-
],
|
2496
|
-
"members":{
|
2497
|
-
"Enabled":{"shape":"boolean"},
|
2498
|
-
"Quantity":{"shape":"integer"},
|
2499
|
-
"Items":{"shape":"AwsAccountNumberList"}
|
2500
|
-
}
|
2501
|
-
},
|
2502
|
-
"UntagResourceRequest":{
|
2503
|
-
"type":"structure",
|
2504
|
-
"required":[
|
2505
|
-
"Resource",
|
2506
|
-
"TagKeys"
|
2507
|
-
],
|
2508
|
-
"members":{
|
2509
|
-
"Resource":{
|
2510
|
-
"shape":"ResourceARN",
|
2511
|
-
"location":"querystring",
|
2512
|
-
"locationName":"Resource"
|
2513
|
-
},
|
2514
|
-
"TagKeys":{
|
2515
|
-
"shape":"TagKeys",
|
2516
|
-
"locationName":"TagKeys",
|
2517
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
2518
|
-
}
|
2519
|
-
},
|
2520
|
-
"payload":"TagKeys"
|
2521
|
-
},
|
2522
|
-
"UpdateCloudFrontOriginAccessIdentityRequest":{
|
2523
|
-
"type":"structure",
|
2524
|
-
"required":[
|
2525
|
-
"CloudFrontOriginAccessIdentityConfig",
|
2526
|
-
"Id"
|
2527
|
-
],
|
2528
|
-
"members":{
|
2529
|
-
"CloudFrontOriginAccessIdentityConfig":{
|
2530
|
-
"shape":"CloudFrontOriginAccessIdentityConfig",
|
2531
|
-
"locationName":"CloudFrontOriginAccessIdentityConfig",
|
2532
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
2533
|
-
},
|
2534
|
-
"Id":{
|
2535
|
-
"shape":"string",
|
2536
|
-
"location":"uri",
|
2537
|
-
"locationName":"Id"
|
2538
|
-
},
|
2539
|
-
"IfMatch":{
|
2540
|
-
"shape":"string",
|
2541
|
-
"location":"header",
|
2542
|
-
"locationName":"If-Match"
|
2543
|
-
}
|
2544
|
-
},
|
2545
|
-
"payload":"CloudFrontOriginAccessIdentityConfig"
|
2546
|
-
},
|
2547
|
-
"UpdateCloudFrontOriginAccessIdentityResult":{
|
2548
|
-
"type":"structure",
|
2549
|
-
"members":{
|
2550
|
-
"CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
|
2551
|
-
"ETag":{
|
2552
|
-
"shape":"string",
|
2553
|
-
"location":"header",
|
2554
|
-
"locationName":"ETag"
|
2555
|
-
}
|
2556
|
-
},
|
2557
|
-
"payload":"CloudFrontOriginAccessIdentity"
|
2558
|
-
},
|
2559
|
-
"UpdateDistributionRequest":{
|
2560
|
-
"type":"structure",
|
2561
|
-
"required":[
|
2562
|
-
"DistributionConfig",
|
2563
|
-
"Id"
|
2564
|
-
],
|
2565
|
-
"members":{
|
2566
|
-
"DistributionConfig":{
|
2567
|
-
"shape":"DistributionConfig",
|
2568
|
-
"locationName":"DistributionConfig",
|
2569
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
2570
|
-
},
|
2571
|
-
"Id":{
|
2572
|
-
"shape":"string",
|
2573
|
-
"location":"uri",
|
2574
|
-
"locationName":"Id"
|
2575
|
-
},
|
2576
|
-
"IfMatch":{
|
2577
|
-
"shape":"string",
|
2578
|
-
"location":"header",
|
2579
|
-
"locationName":"If-Match"
|
2580
|
-
}
|
2581
|
-
},
|
2582
|
-
"payload":"DistributionConfig"
|
2583
|
-
},
|
2584
|
-
"UpdateDistributionResult":{
|
2585
|
-
"type":"structure",
|
2586
|
-
"members":{
|
2587
|
-
"Distribution":{"shape":"Distribution"},
|
2588
|
-
"ETag":{
|
2589
|
-
"shape":"string",
|
2590
|
-
"location":"header",
|
2591
|
-
"locationName":"ETag"
|
2592
|
-
}
|
2593
|
-
},
|
2594
|
-
"payload":"Distribution"
|
2595
|
-
},
|
2596
|
-
"UpdateStreamingDistributionRequest":{
|
2597
|
-
"type":"structure",
|
2598
|
-
"required":[
|
2599
|
-
"StreamingDistributionConfig",
|
2600
|
-
"Id"
|
2601
|
-
],
|
2602
|
-
"members":{
|
2603
|
-
"StreamingDistributionConfig":{
|
2604
|
-
"shape":"StreamingDistributionConfig",
|
2605
|
-
"locationName":"StreamingDistributionConfig",
|
2606
|
-
"xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2016-11-25/"}
|
2607
|
-
},
|
2608
|
-
"Id":{
|
2609
|
-
"shape":"string",
|
2610
|
-
"location":"uri",
|
2611
|
-
"locationName":"Id"
|
2612
|
-
},
|
2613
|
-
"IfMatch":{
|
2614
|
-
"shape":"string",
|
2615
|
-
"location":"header",
|
2616
|
-
"locationName":"If-Match"
|
2617
|
-
}
|
2618
|
-
},
|
2619
|
-
"payload":"StreamingDistributionConfig"
|
2620
|
-
},
|
2621
|
-
"UpdateStreamingDistributionResult":{
|
2622
|
-
"type":"structure",
|
2623
|
-
"members":{
|
2624
|
-
"StreamingDistribution":{"shape":"StreamingDistribution"},
|
2625
|
-
"ETag":{
|
2626
|
-
"shape":"string",
|
2627
|
-
"location":"header",
|
2628
|
-
"locationName":"ETag"
|
2629
|
-
}
|
2630
|
-
},
|
2631
|
-
"payload":"StreamingDistribution"
|
2632
|
-
},
|
2633
|
-
"ViewerCertificate":{
|
2634
|
-
"type":"structure",
|
2635
|
-
"members":{
|
2636
|
-
"CloudFrontDefaultCertificate":{"shape":"boolean"},
|
2637
|
-
"IAMCertificateId":{"shape":"string"},
|
2638
|
-
"ACMCertificateArn":{"shape":"string"},
|
2639
|
-
"SSLSupportMethod":{"shape":"SSLSupportMethod"},
|
2640
|
-
"MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"},
|
2641
|
-
"Certificate":{
|
2642
|
-
"shape":"string",
|
2643
|
-
"deprecated":true
|
2644
|
-
},
|
2645
|
-
"CertificateSource":{
|
2646
|
-
"shape":"CertificateSource",
|
2647
|
-
"deprecated":true
|
2648
|
-
}
|
2649
|
-
}
|
2650
|
-
},
|
2651
|
-
"ViewerProtocolPolicy":{
|
2652
|
-
"type":"string",
|
2653
|
-
"enum":[
|
2654
|
-
"allow-all",
|
2655
|
-
"https-only",
|
2656
|
-
"redirect-to-https"
|
2657
|
-
]
|
2658
|
-
},
|
2659
|
-
"boolean":{"type":"boolean"},
|
2660
|
-
"integer":{"type":"integer"},
|
2661
|
-
"long":{"type":"long"},
|
2662
|
-
"string":{"type":"string"},
|
2663
|
-
"timestamp":{"type":"timestamp"}
|
2664
|
-
}
|
2665
|
-
}
|