aws-sdk-core 2.11.632 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/VERSION +1 -0
 - data/ca-bundle.crt +3541 -3615
 - data/lib/aws-sdk-core.rb +64 -615
 - data/lib/aws-sdk-core/client_stubs.rb +3 -64
 - data/lib/aws-sdk-core/credential_provider.rb +2 -0
 - data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
 - data/lib/aws-sdk-core/eager_loader.rb +0 -1
 - data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
 - data/lib/aws-sdk-core/errors.rb +12 -34
 - data/lib/aws-sdk-core/ini_parser.rb +1 -0
 - data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
 - data/lib/aws-sdk-core/json.rb +4 -5
 - data/lib/aws-sdk-core/json/handler.rb +3 -2
 - 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 +10 -4
 - data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -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/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/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 -20
 - data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
 - data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
 - data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
 - data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
 - data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
 - data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
 - data/lib/aws-sdk-core/query.rb +5 -0
 - data/lib/aws-sdk-core/query/handler.rb +15 -16
 - data/lib/aws-sdk-core/query/param_builder.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/endpoint.rb +1 -1
 - data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
 - data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
 - data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
 - data/lib/aws-sdk-core/shared_config.rb +1 -38
 - data/lib/aws-sdk-core/shared_credentials.rb +2 -0
 - data/lib/aws-sdk-core/structure.rb +17 -12
 - data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
 - data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
 - data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
 - data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
 - data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
 - data/lib/aws-sdk-core/util.rb +39 -0
 - data/lib/aws-sdk-core/version.rb +1 -1
 - 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 +3 -2
 - data/lib/aws-sdk-core/xml.rb +9 -0
 - data/lib/aws-sdk-core/xml/builder.rb +2 -2
 - data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
 - data/lib/aws-sdk-core/xml/parser.rb +1 -11
 - data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
 - data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
 - data/lib/aws-sdk-sts.rb +45 -0
 - data/lib/aws-sdk-sts/client.rb +1198 -0
 - data/lib/aws-sdk-sts/client_api.rb +266 -0
 - data/lib/aws-sdk-sts/customizations.rb +0 -0
 - data/lib/aws-sdk-sts/errors.rb +23 -0
 - data/lib/aws-sdk-sts/resource.rb +25 -0
 - data/lib/aws-sdk-sts/types.rb +854 -0
 - data/lib/seahorse.rb +50 -60
 - data/lib/seahorse/client/base.rb +1 -7
 - data/lib/seahorse/client/configuration.rb +2 -8
 - data/lib/seahorse/client/events.rb +1 -1
 - data/lib/seahorse/client/http/response.rb +3 -3
 - data/lib/seahorse/client/logging/formatter.rb +3 -3
 - data/lib/seahorse/client/logging/handler.rb +2 -0
 - data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
 - data/lib/seahorse/client/net_http/handler.rb +4 -5
 - data/lib/seahorse/client/net_http/patches.rb +1 -0
 - data/lib/seahorse/client/plugin.rb +66 -6
 - data/lib/seahorse/client/plugin_list.rb +1 -3
 - data/lib/seahorse/client/plugins/endpoint.rb +14 -10
 - 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 +2 -0
 - data/lib/seahorse/model/api.rb +4 -4
 - data/lib/seahorse/model/operation.rb +0 -9
 - data/lib/seahorse/model/shapes.rb +18 -2
 - data/lib/seahorse/util.rb +0 -21
 - metadata +42 -1249
 - data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
 - data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
 - data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
 - data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
 - data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
 - data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
 - data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
 - 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 -873
 - 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 -4146
 - 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 -2419
 - 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 -5412
 - 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 -7236
 - data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
 - data/apis/appconfig/2019-10-09/api-2.json +0 -1699
 - data/apis/appconfig/2019-10-09/examples-1.json +0 -5
 - data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
 - data/apis/appflow/2020-08-23/api-2.json +0 -2422
 - data/apis/appflow/2020-08-23/examples-1.json +0 -5
 - data/apis/appflow/2020-08-23/paginators-1.json +0 -23
 - data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
 - data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
 - 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 -1261
 - data/apis/application-insights/2018-11-25/examples-1.json +0 -5
 - data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
 - 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 -3764
 - data/apis/appmesh/2019-01-25/examples-1.json +0 -5
 - data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
 - data/apis/appstream/2016-12-01/api-2.json +0 -2390
 - 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 -2294
 - 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 -1403
 - data/apis/athena/2017-05-18/examples-1.json +0 -5
 - data/apis/athena/2017-05-18/paginators-1.json +0 -48
 - 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 -2676
 - data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
 - 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 -2522
 - data/apis/backup/2018-11-15/examples-1.json +0 -5
 - data/apis/backup/2018-11-15/paginators-1.json +0 -64
 - data/apis/batch/2016-08-10/api-2.json +0 -1360
 - data/apis/batch/2016-08-10/examples-1.json +0 -687
 - data/apis/batch/2016-08-10/paginators-1.json +0 -28
 - data/apis/batch/2016-08-10/smoke.json +0 -11
 - data/apis/braket/2019-09-01/api-2.json +0 -703
 - data/apis/braket/2019-09-01/examples-1.json +0 -5
 - data/apis/braket/2019-09-01/paginators-1.json +0 -16
 - data/apis/budgets/2016-10-20/api-2.json +0 -1444
 - data/apis/budgets/2016-10-20/examples-1.json +0 -5
 - data/apis/budgets/2016-10-20/paginators-1.json +0 -46
 - data/apis/ce/2017-10-25/api-2.json +0 -2268
 - data/apis/ce/2017-10-25/examples-1.json +0 -5
 - data/apis/ce/2017-10-25/paginators-1.json +0 -19
 - data/apis/chime/2018-05-01/api-2.json +0 -8964
 - data/apis/chime/2018-05-01/examples-1.json +0 -5
 - data/apis/chime/2018-05-01/paginators-1.json +0 -124
 - data/apis/cloud9/2017-09-23/api-2.json +0 -691
 - data/apis/cloud9/2017-09-23/examples-1.json +0 -315
 - data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
 - data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
 - data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
 - data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
 - data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
 - data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
 - data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
 - data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
 - data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
 - data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
 - data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
 - data/apis/cloudformation/2010-05-15/smoke.json +0 -19
 - data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
 - 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 -4035
 - 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/cloudfront/2020-05-31/api-2.json +0 -5976
 - data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
 - data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
 - data/apis/cloudfront/2020-05-31/smoke.json +0 -20
 - data/apis/cloudfront/2020-05-31/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 -837
 - 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 -1529
 - data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
 - data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
 - data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
 - 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 -1168
 - data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
 - data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
 - data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
 - data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
 - data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
 - data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
 - data/apis/codebuild/2016-10-06/api-2.json +0 -2438
 - data/apis/codebuild/2016-10-06/examples-1.json +0 -281
 - data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
 - data/apis/codebuild/2016-10-06/smoke.json +0 -11
 - data/apis/codecommit/2015-04-13/api-2.json +0 -5517
 - data/apis/codecommit/2015-04-13/examples-1.json +0 -5
 - data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
 - data/apis/codecommit/2015-04-13/smoke.json +0 -18
 - data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
 - 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/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
 - data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
 - data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
 - data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
 - data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
 - data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
 - data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
 - 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-connections/2019-12-01/api-2.json +0 -515
 - data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
 - data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
 - data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
 - data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
 - data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
 - data/apis/codestar/2017-04-19/api-2.json +0 -1033
 - data/apis/codestar/2017-04-19/examples-1.json +0 -5
 - data/apis/codestar/2017-04-19/paginators-1.json +0 -4
 - data/apis/codestar/2017-04-19/smoke.json +0 -11
 - data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
 - data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
 - data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
 - data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
 - data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
 - data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
 - data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
 - data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
 - data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
 - data/apis/comprehend/2017-11-27/api-2.json +0 -3004
 - 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 -1210
 - data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
 - data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
 - data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
 - data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
 - data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
 - data/apis/config/2014-11-12/api-2.json +0 -4378
 - data/apis/config/2014-11-12/examples-1.json +0 -5
 - data/apis/config/2014-11-12/paginators-1.json +0 -26
 - data/apis/config/2014-11-12/smoke.json +0 -19
 - data/apis/connect/2017-08-08/api-2.json +0 -4452
 - data/apis/connect/2017-08-08/examples-1.json +0 -5
 - data/apis/connect/2017-08-08/paginators-1.json +0 -116
 - data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
 - data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
 - data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
 - data/apis/cur/2017-01-06/api-2.json +0 -295
 - 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/databrew/2017-07-25/api-2.json +0 -2127
 - data/apis/databrew/2017-07-25/examples-1.json +0 -5
 - data/apis/databrew/2017-07-25/paginators-1.json +0 -46
 - data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
 - data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
 - 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 -1675
 - 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/detective/2018-10-26/api-2.json +0 -486
 - data/apis/detective/2018-10-26/examples-1.json +0 -5
 - data/apis/detective/2018-10-26/paginators-1.json +0 -19
 - data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
 - data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
 - data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
 - data/apis/devicefarm/2015-06-23/smoke.json +0 -18
 - data/apis/directconnect/2012-10-25/api-2.json +0 -2188
 - 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 -1369
 - 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 -696
 - 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 -2844
 - data/apis/dms/2016-01-01/examples-1.json +0 -1074
 - data/apis/dms/2016-01-01/paginators-1.json +0 -94
 - 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 -2535
 - data/apis/docdb/2014-10-31/examples-1.json +0 -5
 - data/apis/docdb/2014-10-31/paginators-1.json +0 -73
 - 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 -3179
 - 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 -818
 - 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 -3392
 - data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
 - data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
 - 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/ebs/2019-11-02/api-2.json +0 -645
 - data/apis/ebs/2019-11-02/examples-1.json +0 -5
 - data/apis/ebs/2019-11-02/paginators-1.json +0 -14
 - 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 -31412
 - data/apis/ec2/2016-11-15/examples-1.json +0 -5048
 - data/apis/ec2/2016-11-15/paginators-1.json +0 -594
 - data/apis/ec2/2016-11-15/resources-1.json +0 -2907
 - data/apis/ec2/2016-11-15/smoke.json +0 -20
 - data/apis/ec2/2016-11-15/waiters-2.json +0 -640
 - data/apis/ecr/2015-09-21/api-2.json +0 -1684
 - data/apis/ecr/2015-09-21/examples-1.json +0 -215
 - data/apis/ecr/2015-09-21/paginators-1.json +0 -48
 - data/apis/ecr/2015-09-21/smoke.json +0 -18
 - data/apis/ecr/2015-09-21/waiters-2.json +0 -45
 - data/apis/ecs/2014-11-13/api-2.json +0 -3263
 - data/apis/ecs/2014-11-13/examples-1.json +0 -1137
 - data/apis/ecs/2014-11-13/paginators-1.json +0 -52
 - 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 -1485
 - data/apis/eks/2017-11-01/examples-1.json +0 -135
 - data/apis/eks/2017-11-01/paginators-1.json +0 -28
 - data/apis/eks/2017-11-01/waiters-2.json +0 -91
 - data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
 - data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
 - data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
 - data/apis/elasticache/2015-02-02/api-2.json +0 -4349
 - data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
 - data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
 - 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 -2617
 - data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
 - data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
 - data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
 - data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
 - data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
 - data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
 - data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
 - 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 -2391
 - 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 -2555
 - data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
 - data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
 - 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 -2533
 - data/apis/es/2015-01-01/examples-1.json +0 -5
 - data/apis/es/2015-01-01/paginators-1.json +0 -59
 - data/apis/es/2015-01-01/smoke.json +0 -18
 - data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
 - 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 -2052
 - 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 -1717
 - 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 -1449
 - 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 -1565
 - 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 -146
 - data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
 - data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
 - data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
 - data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
 - data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
 - data/apis/fsx/2018-03-01/api-2.json +0 -1642
 - data/apis/fsx/2018-03-01/examples-1.json +0 -395
 - data/apis/fsx/2018-03-01/paginators-1.json +0 -24
 - data/apis/gamelift/2015-10-01/api-2.json +0 -4505
 - data/apis/gamelift/2015-10-01/examples-1.json +0 -5
 - data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
 - 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 -1181
 - 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 -8102
 - data/apis/glue/2017-03-31/examples-1.json +0 -5
 - data/apis/glue/2017-03-31/paginators-1.json +0 -154
 - data/apis/glue/2017-03-31/smoke.json +0 -11
 - data/apis/greengrass/2017-06-07/api-2.json +0 -5244
 - data/apis/groundstation/2019-05-23/api-2.json +0 -1463
 - data/apis/groundstation/2019-05-23/examples-1.json +0 -5
 - data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
 - data/apis/guardduty/2017-11-28/api-2.json +0 -4370
 - data/apis/guardduty/2017-11-28/examples-1.json +0 -5
 - data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
 - data/apis/health/2016-08-04/api-2.json +0 -847
 - data/apis/health/2016-08-04/examples-1.json +0 -5
 - data/apis/health/2016-08-04/paginators-1.json +0 -55
 - data/apis/health/2016-08-04/smoke.json +0 -11
 - data/apis/honeycode/2020-03-01/api-2.json +0 -321
 - data/apis/honeycode/2020-03-01/examples-1.json +0 -5
 - data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
 - data/apis/iam/2010-05-08/api-2.json +0 -5821
 - data/apis/iam/2010-05-08/examples-1.json +0 -1577
 - 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/identitystore/2020-06-15/api-2.json +0 -318
 - data/apis/identitystore/2020-06-15/examples-1.json +0 -5
 - data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
 - data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
 - data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
 - data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
 - 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 -343
 - data/apis/iot-data/2015-05-28/examples-1.json +0 -5
 - data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
 - data/apis/iot-data/2015-05-28/smoke.json +0 -13
 - 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 -11835
 - data/apis/iot/2015-05-28/examples-1.json +0 -5
 - data/apis/iot/2015-05-28/paginators-1.json +0 -294
 - 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 -2269
 - 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 -1262
 - data/apis/iotevents/2018-07-27/examples-1.json +0 -5
 - data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
 - data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
 - data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
 - data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
 - data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
 - data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
 - data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
 - data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
 - 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/ivs/2020-07-14/api-2.json +0 -981
 - data/apis/ivs/2020-07-14/examples-1.json +0 -5
 - data/apis/ivs/2020-07-14/paginators-1.json +0 -33
 - data/apis/kafka/2018-11-14/api-2.json +0 -2917
 - data/apis/kafka/2018-11-14/paginators-1.json +0 -46
 - data/apis/kendra/2019-02-03/api-2.json +0 -2561
 - data/apis/kendra/2019-02-03/examples-1.json +0 -5
 - data/apis/kendra/2019-02-03/paginators-1.json +0 -19
 - data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
 - 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-video-signaling/2019-12-04/api-2.json +0 -200
 - data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
 - data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
 - data/apis/kinesis/2013-12-02/api-2.json +0 -1449
 - 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 -2342
 - 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 -958
 - data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
 - data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
 - data/apis/kms/2014-11-01/api-2.json +0 -2158
 - 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 -737
 - 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 -3067
 - data/apis/lambda/2015-03-31/examples-1.json +0 -1513
 - data/apis/lambda/2015-03-31/paginators-1.json +0 -52
 - data/apis/lambda/2015-03-31/smoke.json +0 -18
 - data/apis/lambda/2015-03-31/waiters-2.json +0 -74
 - data/apis/lex-models/2017-04-19/api-2.json +0 -2688
 - 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 -886
 - 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 -6873
 - 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 -1819
 - 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/macie2/2020-01-01/api-2.json +0 -5775
 - data/apis/macie2/2020-01-01/paginators-1.json +0 -58
 - data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
 - data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
 - data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
 - data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
 - data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
 - data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
 - data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
 - data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
 - data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
 - data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
 - data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
 - data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
 - data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
 - data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
 - data/apis/medialive/2017-10-14/api-2.json +0 -12784
 - data/apis/medialive/2017-10-14/paginators-1.json +0 -64
 - data/apis/medialive/2017-10-14/waiters-2.json +0 -298
 - data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
 - data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
 - data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
 - data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
 - data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
 - data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
 - data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
 - data/apis/mediastore/2017-09-01/api-2.json +0 -871
 - 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 -629
 - data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
 - data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
 - data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
 - data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
 - data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
 - data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
 - data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
 - 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 -1978
 - data/apis/monitoring/2010-08-01/examples-1.json +0 -5
 - data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
 - data/apis/monitoring/2010-08-01/resources-1.json +0 -505
 - data/apis/monitoring/2010-08-01/smoke.json +0 -22
 - data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
 - data/apis/mq/2017-11-27/api-2.json +0 -2783
 - data/apis/mq/2017-11-27/paginators-1.json +0 -10
 - 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 -3822
 - data/apis/neptune/2014-10-31/examples-1.json +0 -5
 - data/apis/neptune/2014-10-31/paginators-1.json +0 -67
 - data/apis/neptune/2014-10-31/smoke.json +0 -18
 - data/apis/neptune/2014-10-31/waiters-2.json +0 -90
 - data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
 - data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
 - data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
 - data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
 - data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
 - data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
 - 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 -948
 - data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
 - data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
 - data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
 - data/apis/organizations/2016-11-28/api-2.json +0 -2618
 - data/apis/organizations/2016-11-28/examples-1.json +0 -1409
 - data/apis/organizations/2016-11-28/paginators-1.json +0 -86
 - data/apis/outposts/2019-12-03/api-2.json +0 -432
 - data/apis/outposts/2019-12-03/examples-1.json +0 -5
 - data/apis/outposts/2019-12-03/paginators-1.json +0 -14
 - data/apis/personalize-events/2018-03-22/api-2.json +0 -214
 - 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 -172
 - 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 -2038
 - data/apis/personalize/2018-05-22/examples-1.json +0 -5
 - data/apis/personalize/2018-05-22/paginators-1.json +0 -64
 - data/apis/pi/2018-02-27/api-2.json +0 -253
 - data/apis/pi/2018-02-27/examples-1.json +0 -5
 - data/apis/pi/2018-02-27/paginators-1.json +0 -4
 - data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
 - data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
 - data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
 - data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
 - data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
 - data/apis/polly/2016-06-10/api-2.json +0 -836
 - 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 -999
 - data/apis/qldb/2019-01-02/examples-1.json +0 -5
 - data/apis/qldb/2019-01-02/paginators-1.json +0 -24
 - data/apis/quicksight/2018-04-01/api-2.json +0 -7780
 - data/apis/quicksight/2018-04-01/examples-1.json +0 -5
 - data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
 - data/apis/ram/2018-01-04/api-2.json +0 -1315
 - data/apis/ram/2018-01-04/examples-1.json +0 -5
 - data/apis/ram/2018-01-04/paginators-1.json +0 -39
 - data/apis/rds-data/2018-08-01/api-2.json +0 -552
 - data/apis/rds-data/2018-08-01/examples-1.json +0 -5
 - data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
 - data/apis/rds/2013-01-10/api-2.json +0 -2903
 - data/apis/rds/2013-01-10/examples-1.json +0 -5
 - data/apis/rds/2013-01-10/paginators-1.json +0 -97
 - data/apis/rds/2013-01-10/smoke.json +0 -18
 - data/apis/rds/2013-02-12/api-2.json +0 -3059
 - data/apis/rds/2013-02-12/examples-1.json +0 -5
 - data/apis/rds/2013-02-12/paginators-1.json +0 -110
 - data/apis/rds/2013-02-12/smoke.json +0 -18
 - data/apis/rds/2013-09-09/api-2.json +0 -3160
 - data/apis/rds/2013-09-09/examples-1.json +0 -5
 - data/apis/rds/2013-09-09/paginators-1.json +0 -110
 - data/apis/rds/2013-09-09/smoke.json +0 -18
 - data/apis/rds/2013-09-09/waiters-2.json +0 -97
 - data/apis/rds/2014-09-01/api-2.json +0 -3273
 - data/apis/rds/2014-09-01/examples-1.json +0 -5
 - data/apis/rds/2014-09-01/paginators-1.json +0 -4
 - data/apis/rds/2014-09-01/smoke.json +0 -18
 - data/apis/rds/2014-10-31/api-2.json +0 -7765
 - data/apis/rds/2014-10-31/examples-1.json +0 -1951
 - data/apis/rds/2014-10-31/paginators-1.json +0 -212
 - data/apis/rds/2014-10-31/resources-1.json +0 -3272
 - data/apis/rds/2014-10-31/smoke.json +0 -18
 - data/apis/rds/2014-10-31/waiters-2.json +0 -260
 - data/apis/redshift-data/2019-12-20/api-2.json +0 -501
 - data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
 - data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
 - data/apis/redshift/2012-12-01/api-2.json +0 -5527
 - data/apis/redshift/2012-12-01/examples-1.json +0 -5
 - data/apis/redshift/2012-12-01/paginators-1.json +0 -154
 - 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 -3180
 - data/apis/rekognition/2016-06-27/examples-1.json +0 -651
 - data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
 - data/apis/rekognition/2016-06-27/smoke.json +0 -11
 - data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
 - data/apis/resource-groups/2017-11-27/api-2.json +0 -927
 - data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
 - data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
 - data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
 - data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
 - data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
 - data/apis/robomaker/2018-06-29/api-2.json +0 -3160
 - data/apis/robomaker/2018-06-29/examples-1.json +0 -5
 - data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
 - data/apis/route53/2013-04-01/api-2.json +0 -3881
 - data/apis/route53/2013-04-01/examples-1.json +0 -762
 - data/apis/route53/2013-04-01/paginators-1.json +0 -39
 - 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 -1507
 - data/apis/route53domains/2014-05-15/examples-1.json +0 -5
 - data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
 - data/apis/route53domains/2014-05-15/smoke.json +0 -18
 - data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
 - data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
 - data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
 - data/apis/route53resolver/2018-04-01/smoke.json +0 -18
 - data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
 - 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 -175
 - 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 -7474
 - 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 -2903
 - data/apis/s3control/2018-08-20/examples-1.json +0 -5
 - data/apis/s3control/2018-08-20/paginators-1.json +0 -19
 - data/apis/s3outposts/2017-07-25/api-2.json +0 -250
 - data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
 - data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
 - data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
 - data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
 - data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
 - data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
 - data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
 - data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
 - data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
 - data/apis/savingsplans/2019-06-28/api-2.json +0 -786
 - data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
 - data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
 - data/apis/schemas/2019-12-02/api-2.json +0 -2980
 - data/apis/schemas/2019-12-02/paginators-1.json +0 -34
 - data/apis/schemas/2019-12-02/waiters-2.json +0 -36
 - 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 -1088
 - data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
 - 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 -4515
 - data/apis/securityhub/2018-10-26/examples-1.json +0 -5
 - data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
 - data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
 - 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-appregistry/2020-06-24/api-2.json +0 -857
 - data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
 - data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
 - data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
 - data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
 - data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
 - data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
 - data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
 - data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
 - data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
 - data/apis/sesv2/2019-09-27/api-2.json +0 -3966
 - data/apis/sesv2/2019-09-27/examples-1.json +0 -5
 - data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
 - data/apis/shield/2016-06-02/api-2.json +0 -1445
 - data/apis/shield/2016-06-02/examples-1.json +0 -5
 - data/apis/shield/2016-06-02/paginators-1.json +0 -26
 - data/apis/shield/2016-06-02/smoke.json +0 -11
 - data/apis/signer/2017-08-25/api-2.json +0 -822
 - 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 -1775
 - 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 -1116
 - 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 -1471
 - 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 -1139
 - data/apis/sqs/2012-11-05/examples-1.json +0 -5
 - data/apis/sqs/2012-11-05/paginators-1.json +0 -16
 - 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 -9349
 - data/apis/ssm/2014-11-06/examples-1.json +0 -5
 - data/apis/ssm/2014-11-06/paginators-1.json +0 -259
 - data/apis/ssm/2014-11-06/smoke.json +0 -18
 - data/apis/ssm/2014-11-06/waiters-2.json +0 -60
 - data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
 - data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
 - data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
 - data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
 - data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
 - data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
 - data/apis/sso/2019-06-10/api-2.json +0 -281
 - data/apis/sso/2019-06-10/examples-1.json +0 -5
 - data/apis/sso/2019-06-10/paginators-1.json +0 -16
 - data/apis/states/2016-11-23/api-2.json +0 -1539
 - 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 -3733
 - data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
 - data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
 - data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
 - 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 -599
 - data/apis/sts/2011-06-15/examples-1.json +0 -271
 - data/apis/sts/2011-06-15/paginators-1.json +0 -4
 - data/apis/sts/2011-06-15/smoke.json +0 -19
 - data/apis/support/2013-04-15/api-2.json +0 -773
 - data/apis/support/2013-04-15/examples-1.json +0 -5
 - data/apis/support/2013-04-15/paginators-1.json +0 -25
 - data/apis/support/2013-04-15/smoke.json +0 -22
 - data/apis/swf/2012-01-25/api-2.json +0 -2792
 - data/apis/swf/2012-01-25/examples-1.json +0 -5
 - data/apis/swf/2012-01-25/paginators-1.json +0 -46
 - data/apis/synthetics/2017-10-11/api-2.json +0 -790
 - data/apis/synthetics/2017-10-11/examples-1.json +0 -5
 - data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
 - data/apis/textract/2018-06-27/api-2.json +0 -690
 - data/apis/textract/2018-06-27/examples-1.json +0 -5
 - data/apis/textract/2018-06-27/paginators-1.json +0 -4
 - data/apis/timestream-query/2018-11-01/api-2.json +0 -299
 - data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
 - data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
 - data/apis/timestream-write/2018-11-01/api-2.json +0 -775
 - data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
 - data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
 - data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
 - data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
 - data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
 - data/apis/transcribe/2017-10-26/api-2.json +0 -1327
 - data/apis/transcribe/2017-10-26/examples-1.json +0 -5
 - data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
 - data/apis/transfer/2018-11-05/api-2.json +0 -1110
 - data/apis/transfer/2018-11-05/examples-1.json +0 -5
 - data/apis/transfer/2018-11-05/paginators-1.json +0 -24
 - data/apis/translate/2017-07-01/api-2.json +0 -660
 - data/apis/translate/2017-07-01/examples-1.json +0 -5
 - data/apis/translate/2017-07-01/paginators-1.json +0 -14
 - data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
 - 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 -3958
 - 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/wafv2/2019-07-29/api-2.json +0 -2698
 - data/apis/wafv2/2019-07-29/examples-1.json +0 -5
 - data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
 - data/apis/wafv2/2019-07-29/smoke.json +0 -22
 - 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 -1393
 - 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 -2430
 - data/apis/workmail/2017-10-01/examples-1.json +0 -5
 - data/apis/workmail/2017-10-01/paginators-1.json +0 -49
 - 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 -2442
 - 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 -1792
 - data/apis/xray/2016-04-12/examples-1.json +0 -5
 - data/apis/xray/2016-04-12/paginators-1.json +0 -54
 - data/bin/aws.rb +0 -180
 - data/endpoints.json +0 -9478
 - data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
 - 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 -304
 - 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/appconfig.rb +0 -6
 - data/lib/aws-sdk-core/appflow.rb +0 -6
 - 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/appregistry.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/augmentedairuntime.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/braket.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 -78
 - 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 -6
 - 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/codeartifact.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/codeguruprofiler.rb +0 -6
 - data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
 - data/lib/aws-sdk-core/codepipeline.rb +0 -6
 - data/lib/aws-sdk-core/codestar.rb +0 -6
 - data/lib/aws-sdk-core/codestarconnections.rb +0 -6
 - data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
 - data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
 - data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
 - data/lib/aws-sdk-core/cognitosync.rb +0 -4
 - data/lib/aws-sdk-core/comprehend.rb +0 -6
 - data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
 - data/lib/aws-sdk-core/computeoptimizer.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/connectparticipant.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/dataexchange.rb +0 -5
 - 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/detective.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/ebs.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 -7
 - 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 -7
 - data/lib/aws-sdk-core/elasticinference.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_cache.rb +0 -188
 - data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
 - data/lib/aws-sdk-core/eventbridge.rb +0 -6
 - data/lib/aws-sdk-core/firehose.rb +0 -6
 - data/lib/aws-sdk-core/fms.rb +0 -6
 - data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
 - data/lib/aws-sdk-core/forecastservice.rb +0 -6
 - data/lib/aws-sdk-core/frauddetector.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/gluedatabrew.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/honeycode.rb +0 -6
 - data/lib/aws-sdk-core/iam.rb +0 -8
 - data/lib/aws-sdk-core/identitystore.rb +0 -6
 - data/lib/aws-sdk-core/imagebuilder.rb +0 -6
 - 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 -6
 - 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/iotsecuretunneling.rb +0 -6
 - data/lib/aws-sdk-core/iotsitewise.rb +0 -7
 - data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
 - data/lib/aws-sdk-core/ivs.rb +0 -6
 - data/lib/aws-sdk-core/kafka.rb +0 -5
 - data/lib/aws-sdk-core/kendra.rb +0 -6
 - 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/kinesisvideosignalingchannels.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/macie2.rb +0 -5
 - data/lib/aws-sdk-core/managedblockchain.rb +0 -6
 - data/lib/aws-sdk-core/marketplacecatalog.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/migrationhubconfig.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/networkfirewall.rb +0 -6
 - data/lib/aws-sdk-core/networkmanager.rb +0 -6
 - 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/outposts.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/endpoint_discovery.rb +0 -167
 - data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
 - 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/jsonvalue_converter.rb +0 -29
 - 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_iad_regional_endpoint.rb +0 -58
 - data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
 - data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
 - data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
 - data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
 - data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
 - data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
 - data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
 - data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
 - data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
 - data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
 - data/lib/aws-sdk-core/polly.rb +0 -14
 - data/lib/aws-sdk-core/polly/presigner.rb +0 -70
 - data/lib/aws-sdk-core/pricing.rb +0 -6
 - data/lib/aws-sdk-core/qldb.rb +0 -6
 - data/lib/aws-sdk-core/qldbsession.rb +0 -6
 - data/lib/aws-sdk-core/quicksight.rb +0 -6
 - data/lib/aws-sdk-core/ram.rb +0 -6
 - data/lib/aws-sdk-core/rds.rb +0 -16
 - data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
 - data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
 - data/lib/aws-sdk-core/redshift.rb +0 -7
 - data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
 - data/lib/aws-sdk-core/rekognition.rb +0 -7
 - 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/s3outposts.rb +0 -6
 - data/lib/aws-sdk-core/sagemaker.rb +0 -7
 - data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
 - data/lib/aws-sdk-core/savingsplans.rb +0 -6
 - data/lib/aws-sdk-core/schemas.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/sesv2.rb +0 -6
 - 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 -7
 - data/lib/aws-sdk-core/sso.rb +0 -6
 - data/lib/aws-sdk-core/ssoadmin.rb +0 -6
 - data/lib/aws-sdk-core/ssooidc.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/synthetics.rb +0 -6
 - data/lib/aws-sdk-core/textract.rb +0 -6
 - data/lib/aws-sdk-core/timestreamquery.rb +0 -6
 - data/lib/aws-sdk-core/timestreamwrite.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/waf.rb +0 -6
 - data/lib/aws-sdk-core/wafregional.rb +0 -6
 - data/lib/aws-sdk-core/wafv2.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 -949
 
| 
         @@ -1,83 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "version": "1.0",
         
     | 
| 
       3 
     | 
    
         
            -
              "examples": {
         
     | 
| 
       4 
     | 
    
         
            -
                "CreateCloudFrontOriginAccessIdentity": [
         
     | 
| 
       5 
     | 
    
         
            -
                  null
         
     | 
| 
       6 
     | 
    
         
            -
                ],
         
     | 
| 
       7 
     | 
    
         
            -
                "CreateDistribution": [
         
     | 
| 
       8 
     | 
    
         
            -
                  null
         
     | 
| 
       9 
     | 
    
         
            -
                ],
         
     | 
| 
       10 
     | 
    
         
            -
                "CreateDistributionWithTags": [
         
     | 
| 
       11 
     | 
    
         
            -
                  null
         
     | 
| 
       12 
     | 
    
         
            -
                ],
         
     | 
| 
       13 
     | 
    
         
            -
                "CreateInvalidation": [
         
     | 
| 
       14 
     | 
    
         
            -
                  null
         
     | 
| 
       15 
     | 
    
         
            -
                ],
         
     | 
| 
       16 
     | 
    
         
            -
                "CreateStreamingDistribution": [
         
     | 
| 
       17 
     | 
    
         
            -
                  null
         
     | 
| 
       18 
     | 
    
         
            -
                ],
         
     | 
| 
       19 
     | 
    
         
            -
                "DeleteCloudFrontOriginAccessIdentity": [
         
     | 
| 
       20 
     | 
    
         
            -
                  null
         
     | 
| 
       21 
     | 
    
         
            -
                ],
         
     | 
| 
       22 
     | 
    
         
            -
                "DeleteDistribution": [
         
     | 
| 
       23 
     | 
    
         
            -
                  null
         
     | 
| 
       24 
     | 
    
         
            -
                ],
         
     | 
| 
       25 
     | 
    
         
            -
                "DeleteStreamingDistribution": [
         
     | 
| 
       26 
     | 
    
         
            -
                  null
         
     | 
| 
       27 
     | 
    
         
            -
                ],
         
     | 
| 
       28 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentity": [
         
     | 
| 
       29 
     | 
    
         
            -
                  null
         
     | 
| 
       30 
     | 
    
         
            -
                ],
         
     | 
| 
       31 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityConfig": [
         
     | 
| 
       32 
     | 
    
         
            -
                  null
         
     | 
| 
       33 
     | 
    
         
            -
                ],
         
     | 
| 
       34 
     | 
    
         
            -
                "GetDistribution": [
         
     | 
| 
       35 
     | 
    
         
            -
                  null
         
     | 
| 
       36 
     | 
    
         
            -
                ],
         
     | 
| 
       37 
     | 
    
         
            -
                "GetDistributionConfig": [
         
     | 
| 
       38 
     | 
    
         
            -
                  null
         
     | 
| 
       39 
     | 
    
         
            -
                ],
         
     | 
| 
       40 
     | 
    
         
            -
                "GetInvalidation": [
         
     | 
| 
       41 
     | 
    
         
            -
                  null
         
     | 
| 
       42 
     | 
    
         
            -
                ],
         
     | 
| 
       43 
     | 
    
         
            -
                "GetStreamingDistribution": [
         
     | 
| 
       44 
     | 
    
         
            -
                  null
         
     | 
| 
       45 
     | 
    
         
            -
                ],
         
     | 
| 
       46 
     | 
    
         
            -
                "GetStreamingDistributionConfig": [
         
     | 
| 
       47 
     | 
    
         
            -
                  null
         
     | 
| 
       48 
     | 
    
         
            -
                ],
         
     | 
| 
       49 
     | 
    
         
            -
                "ListCloudFrontOriginAccessIdentities": [
         
     | 
| 
       50 
     | 
    
         
            -
                  null
         
     | 
| 
       51 
     | 
    
         
            -
                ],
         
     | 
| 
       52 
     | 
    
         
            -
                "ListDistributions": [
         
     | 
| 
       53 
     | 
    
         
            -
                  null
         
     | 
| 
       54 
     | 
    
         
            -
                ],
         
     | 
| 
       55 
     | 
    
         
            -
                "ListDistributionsByWebACLId": [
         
     | 
| 
       56 
     | 
    
         
            -
                  null
         
     | 
| 
       57 
     | 
    
         
            -
                ],
         
     | 
| 
       58 
     | 
    
         
            -
                "ListInvalidations": [
         
     | 
| 
       59 
     | 
    
         
            -
                  null
         
     | 
| 
       60 
     | 
    
         
            -
                ],
         
     | 
| 
       61 
     | 
    
         
            -
                "ListStreamingDistributions": [
         
     | 
| 
       62 
     | 
    
         
            -
                  null
         
     | 
| 
       63 
     | 
    
         
            -
                ],
         
     | 
| 
       64 
     | 
    
         
            -
                "ListTagsForResource": [
         
     | 
| 
       65 
     | 
    
         
            -
                  null
         
     | 
| 
       66 
     | 
    
         
            -
                ],
         
     | 
| 
       67 
     | 
    
         
            -
                "TagResource": [
         
     | 
| 
       68 
     | 
    
         
            -
                  null
         
     | 
| 
       69 
     | 
    
         
            -
                ],
         
     | 
| 
       70 
     | 
    
         
            -
                "UntagResource": [
         
     | 
| 
       71 
     | 
    
         
            -
                  null
         
     | 
| 
       72 
     | 
    
         
            -
                ],
         
     | 
| 
       73 
     | 
    
         
            -
                "UpdateCloudFrontOriginAccessIdentity": [
         
     | 
| 
       74 
     | 
    
         
            -
                  null
         
     | 
| 
       75 
     | 
    
         
            -
                ],
         
     | 
| 
       76 
     | 
    
         
            -
                "UpdateDistribution": [
         
     | 
| 
       77 
     | 
    
         
            -
                  null
         
     | 
| 
       78 
     | 
    
         
            -
                ],
         
     | 
| 
       79 
     | 
    
         
            -
                "UpdateStreamingDistribution": [
         
     | 
| 
       80 
     | 
    
         
            -
                  null
         
     | 
| 
       81 
     | 
    
         
            -
                ]
         
     | 
| 
       82 
     | 
    
         
            -
              }
         
     | 
| 
       83 
     | 
    
         
            -
            }
         
     | 
| 
         @@ -1,32 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "pagination": {
         
     | 
| 
       3 
     | 
    
         
            -
                "ListCloudFrontOriginAccessIdentities": {
         
     | 
| 
       4 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       5 
     | 
    
         
            -
                  "limit_key": "MaxItems",
         
     | 
| 
       6 
     | 
    
         
            -
                  "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
         
     | 
| 
       7 
     | 
    
         
            -
                  "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
         
     | 
| 
       8 
     | 
    
         
            -
                  "result_key": "CloudFrontOriginAccessIdentityList.Items"
         
     | 
| 
       9 
     | 
    
         
            -
                },
         
     | 
| 
       10 
     | 
    
         
            -
                "ListDistributions": {
         
     | 
| 
       11 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       12 
     | 
    
         
            -
                  "limit_key": "MaxItems",
         
     | 
| 
       13 
     | 
    
         
            -
                  "more_results": "DistributionList.IsTruncated",
         
     | 
| 
       14 
     | 
    
         
            -
                  "output_token": "DistributionList.NextMarker",
         
     | 
| 
       15 
     | 
    
         
            -
                  "result_key": "DistributionList.Items"
         
     | 
| 
       16 
     | 
    
         
            -
                },
         
     | 
| 
       17 
     | 
    
         
            -
                "ListInvalidations": {
         
     | 
| 
       18 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       19 
     | 
    
         
            -
                  "limit_key": "MaxItems",
         
     | 
| 
       20 
     | 
    
         
            -
                  "more_results": "InvalidationList.IsTruncated",
         
     | 
| 
       21 
     | 
    
         
            -
                  "output_token": "InvalidationList.NextMarker",
         
     | 
| 
       22 
     | 
    
         
            -
                  "result_key": "InvalidationList.Items"
         
     | 
| 
       23 
     | 
    
         
            -
                },
         
     | 
| 
       24 
     | 
    
         
            -
                "ListStreamingDistributions": {
         
     | 
| 
       25 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       26 
     | 
    
         
            -
                  "limit_key": "MaxItems",
         
     | 
| 
       27 
     | 
    
         
            -
                  "more_results": "StreamingDistributionList.IsTruncated",
         
     | 
| 
       28 
     | 
    
         
            -
                  "output_token": "StreamingDistributionList.NextMarker",
         
     | 
| 
       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,3906 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "version":"2.0",
         
     | 
| 
       3 
     | 
    
         
            -
              "metadata":{
         
     | 
| 
       4 
     | 
    
         
            -
                "apiVersion":"2017-10-30",
         
     | 
| 
       5 
     | 
    
         
            -
                "endpointPrefix":"cloudfront",
         
     | 
| 
       6 
     | 
    
         
            -
                "globalEndpoint":"cloudfront.amazonaws.com",
         
     | 
| 
       7 
     | 
    
         
            -
                "protocol":"rest-xml",
         
     | 
| 
       8 
     | 
    
         
            -
                "serviceAbbreviation":"CloudFront",
         
     | 
| 
       9 
     | 
    
         
            -
                "serviceFullName":"Amazon CloudFront",
         
     | 
| 
       10 
     | 
    
         
            -
                "serviceId":"CloudFront",
         
     | 
| 
       11 
     | 
    
         
            -
                "signatureVersion":"v4",
         
     | 
| 
       12 
     | 
    
         
            -
                "uid":"cloudfront-2017-10-30"
         
     | 
| 
       13 
     | 
    
         
            -
              },
         
     | 
| 
       14 
     | 
    
         
            -
              "operations":{
         
     | 
| 
       15 
     | 
    
         
            -
                "CreateCloudFrontOriginAccessIdentity":{
         
     | 
| 
       16 
     | 
    
         
            -
                  "name":"CreateCloudFrontOriginAccessIdentity2017_10_30",
         
     | 
| 
       17 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       18 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       19 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront",
         
     | 
| 
       20 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       21 
     | 
    
         
            -
                  },
         
     | 
| 
       22 
     | 
    
         
            -
                  "input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
         
     | 
| 
       23 
     | 
    
         
            -
                  "output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
         
     | 
| 
       24 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       25 
     | 
    
         
            -
                    {"shape":"CloudFrontOriginAccessIdentityAlreadyExists"},
         
     | 
| 
       26 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       27 
     | 
    
         
            -
                    {"shape":"TooManyCloudFrontOriginAccessIdentities"},
         
     | 
| 
       28 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       29 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"}
         
     | 
| 
       30 
     | 
    
         
            -
                  ]
         
     | 
| 
       31 
     | 
    
         
            -
                },
         
     | 
| 
       32 
     | 
    
         
            -
                "CreateDistribution":{
         
     | 
| 
       33 
     | 
    
         
            -
                  "name":"CreateDistribution2017_10_30",
         
     | 
| 
       34 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       35 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       36 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution",
         
     | 
| 
       37 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       38 
     | 
    
         
            -
                  },
         
     | 
| 
       39 
     | 
    
         
            -
                  "input":{"shape":"CreateDistributionRequest"},
         
     | 
| 
       40 
     | 
    
         
            -
                  "output":{"shape":"CreateDistributionResult"},
         
     | 
| 
       41 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       42 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       43 
     | 
    
         
            -
                    {"shape":"DistributionAlreadyExists"},
         
     | 
| 
       44 
     | 
    
         
            -
                    {"shape":"InvalidOrigin"},
         
     | 
| 
       45 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       46 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       47 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       48 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       49 
     | 
    
         
            -
                    {"shape":"InvalidViewerCertificate"},
         
     | 
| 
       50 
     | 
    
         
            -
                    {"shape":"InvalidMinimumProtocolVersion"},
         
     | 
| 
       51 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       52 
     | 
    
         
            -
                    {"shape":"TooManyDistributionCNAMEs"},
         
     | 
| 
       53 
     | 
    
         
            -
                    {"shape":"TooManyDistributions"},
         
     | 
| 
       54 
     | 
    
         
            -
                    {"shape":"InvalidDefaultRootObject"},
         
     | 
| 
       55 
     | 
    
         
            -
                    {"shape":"InvalidRelativePath"},
         
     | 
| 
       56 
     | 
    
         
            -
                    {"shape":"InvalidErrorCode"},
         
     | 
| 
       57 
     | 
    
         
            -
                    {"shape":"InvalidResponseCode"},
         
     | 
| 
       58 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       59 
     | 
    
         
            -
                    {"shape":"InvalidRequiredProtocol"},
         
     | 
| 
       60 
     | 
    
         
            -
                    {"shape":"NoSuchOrigin"},
         
     | 
| 
       61 
     | 
    
         
            -
                    {"shape":"TooManyOrigins"},
         
     | 
| 
       62 
     | 
    
         
            -
                    {"shape":"TooManyCacheBehaviors"},
         
     | 
| 
       63 
     | 
    
         
            -
                    {"shape":"TooManyCookieNamesInWhiteList"},
         
     | 
| 
       64 
     | 
    
         
            -
                    {"shape":"InvalidForwardCookies"},
         
     | 
| 
       65 
     | 
    
         
            -
                    {"shape":"TooManyHeadersInForwardedValues"},
         
     | 
| 
       66 
     | 
    
         
            -
                    {"shape":"InvalidHeadersForS3Origin"},
         
     | 
| 
       67 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       68 
     | 
    
         
            -
                    {"shape":"TooManyCertificates"},
         
     | 
| 
       69 
     | 
    
         
            -
                    {"shape":"InvalidLocationCode"},
         
     | 
| 
       70 
     | 
    
         
            -
                    {"shape":"InvalidGeoRestrictionParameter"},
         
     | 
| 
       71 
     | 
    
         
            -
                    {"shape":"InvalidProtocolSettings"},
         
     | 
| 
       72 
     | 
    
         
            -
                    {"shape":"InvalidTTLOrder"},
         
     | 
| 
       73 
     | 
    
         
            -
                    {"shape":"InvalidWebACLId"},
         
     | 
| 
       74 
     | 
    
         
            -
                    {"shape":"TooManyOriginCustomHeaders"},
         
     | 
| 
       75 
     | 
    
         
            -
                    {"shape":"TooManyQueryStringParameters"},
         
     | 
| 
       76 
     | 
    
         
            -
                    {"shape":"InvalidQueryStringParameters"},
         
     | 
| 
       77 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsWithLambdaAssociations"},
         
     | 
| 
       78 
     | 
    
         
            -
                    {"shape":"TooManyLambdaFunctionAssociations"},
         
     | 
| 
       79 
     | 
    
         
            -
                    {"shape":"InvalidLambdaFunctionAssociation"},
         
     | 
| 
       80 
     | 
    
         
            -
                    {"shape":"InvalidOriginReadTimeout"},
         
     | 
| 
       81 
     | 
    
         
            -
                    {"shape":"InvalidOriginKeepaliveTimeout"},
         
     | 
| 
       82 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"},
         
     | 
| 
       83 
     | 
    
         
            -
                    {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
         
     | 
| 
       84 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
         
     | 
| 
       85 
     | 
    
         
            -
                  ]
         
     | 
| 
       86 
     | 
    
         
            -
                },
         
     | 
| 
       87 
     | 
    
         
            -
                "CreateDistributionWithTags":{
         
     | 
| 
       88 
     | 
    
         
            -
                  "name":"CreateDistributionWithTags2017_10_30",
         
     | 
| 
       89 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       90 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       91 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution?WithTags",
         
     | 
| 
       92 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       93 
     | 
    
         
            -
                  },
         
     | 
| 
       94 
     | 
    
         
            -
                  "input":{"shape":"CreateDistributionWithTagsRequest"},
         
     | 
| 
       95 
     | 
    
         
            -
                  "output":{"shape":"CreateDistributionWithTagsResult"},
         
     | 
| 
       96 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       97 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       98 
     | 
    
         
            -
                    {"shape":"DistributionAlreadyExists"},
         
     | 
| 
       99 
     | 
    
         
            -
                    {"shape":"InvalidOrigin"},
         
     | 
| 
       100 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       101 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       102 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       103 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       104 
     | 
    
         
            -
                    {"shape":"InvalidViewerCertificate"},
         
     | 
| 
       105 
     | 
    
         
            -
                    {"shape":"InvalidMinimumProtocolVersion"},
         
     | 
| 
       106 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       107 
     | 
    
         
            -
                    {"shape":"TooManyDistributionCNAMEs"},
         
     | 
| 
       108 
     | 
    
         
            -
                    {"shape":"TooManyDistributions"},
         
     | 
| 
       109 
     | 
    
         
            -
                    {"shape":"InvalidDefaultRootObject"},
         
     | 
| 
       110 
     | 
    
         
            -
                    {"shape":"InvalidRelativePath"},
         
     | 
| 
       111 
     | 
    
         
            -
                    {"shape":"InvalidErrorCode"},
         
     | 
| 
       112 
     | 
    
         
            -
                    {"shape":"InvalidResponseCode"},
         
     | 
| 
       113 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       114 
     | 
    
         
            -
                    {"shape":"InvalidRequiredProtocol"},
         
     | 
| 
       115 
     | 
    
         
            -
                    {"shape":"NoSuchOrigin"},
         
     | 
| 
       116 
     | 
    
         
            -
                    {"shape":"TooManyOrigins"},
         
     | 
| 
       117 
     | 
    
         
            -
                    {"shape":"TooManyCacheBehaviors"},
         
     | 
| 
       118 
     | 
    
         
            -
                    {"shape":"TooManyCookieNamesInWhiteList"},
         
     | 
| 
       119 
     | 
    
         
            -
                    {"shape":"InvalidForwardCookies"},
         
     | 
| 
       120 
     | 
    
         
            -
                    {"shape":"TooManyHeadersInForwardedValues"},
         
     | 
| 
       121 
     | 
    
         
            -
                    {"shape":"InvalidHeadersForS3Origin"},
         
     | 
| 
       122 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       123 
     | 
    
         
            -
                    {"shape":"TooManyCertificates"},
         
     | 
| 
       124 
     | 
    
         
            -
                    {"shape":"InvalidLocationCode"},
         
     | 
| 
       125 
     | 
    
         
            -
                    {"shape":"InvalidGeoRestrictionParameter"},
         
     | 
| 
       126 
     | 
    
         
            -
                    {"shape":"InvalidProtocolSettings"},
         
     | 
| 
       127 
     | 
    
         
            -
                    {"shape":"InvalidTTLOrder"},
         
     | 
| 
       128 
     | 
    
         
            -
                    {"shape":"InvalidWebACLId"},
         
     | 
| 
       129 
     | 
    
         
            -
                    {"shape":"TooManyOriginCustomHeaders"},
         
     | 
| 
       130 
     | 
    
         
            -
                    {"shape":"InvalidTagging"},
         
     | 
| 
       131 
     | 
    
         
            -
                    {"shape":"TooManyQueryStringParameters"},
         
     | 
| 
       132 
     | 
    
         
            -
                    {"shape":"InvalidQueryStringParameters"},
         
     | 
| 
       133 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsWithLambdaAssociations"},
         
     | 
| 
       134 
     | 
    
         
            -
                    {"shape":"TooManyLambdaFunctionAssociations"},
         
     | 
| 
       135 
     | 
    
         
            -
                    {"shape":"InvalidLambdaFunctionAssociation"},
         
     | 
| 
       136 
     | 
    
         
            -
                    {"shape":"InvalidOriginReadTimeout"},
         
     | 
| 
       137 
     | 
    
         
            -
                    {"shape":"InvalidOriginKeepaliveTimeout"},
         
     | 
| 
       138 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"},
         
     | 
| 
       139 
     | 
    
         
            -
                    {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
         
     | 
| 
       140 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
         
     | 
| 
       141 
     | 
    
         
            -
                  ]
         
     | 
| 
       142 
     | 
    
         
            -
                },
         
     | 
| 
       143 
     | 
    
         
            -
                "CreateFieldLevelEncryptionConfig":{
         
     | 
| 
       144 
     | 
    
         
            -
                  "name":"CreateFieldLevelEncryptionConfig2017_10_30",
         
     | 
| 
       145 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       146 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       147 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption",
         
     | 
| 
       148 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       149 
     | 
    
         
            -
                  },
         
     | 
| 
       150 
     | 
    
         
            -
                  "input":{"shape":"CreateFieldLevelEncryptionConfigRequest"},
         
     | 
| 
       151 
     | 
    
         
            -
                  "output":{"shape":"CreateFieldLevelEncryptionConfigResult"},
         
     | 
| 
       152 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       153 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       154 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       155 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"},
         
     | 
| 
       156 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionConfigAlreadyExists"},
         
     | 
| 
       157 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionConfigs"},
         
     | 
| 
       158 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
         
     | 
| 
       159 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
         
     | 
| 
       160 
     | 
    
         
            -
                    {"shape":"QueryArgProfileEmpty"}
         
     | 
| 
       161 
     | 
    
         
            -
                  ]
         
     | 
| 
       162 
     | 
    
         
            -
                },
         
     | 
| 
       163 
     | 
    
         
            -
                "CreateFieldLevelEncryptionProfile":{
         
     | 
| 
       164 
     | 
    
         
            -
                  "name":"CreateFieldLevelEncryptionProfile2017_10_30",
         
     | 
| 
       165 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       166 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       167 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile",
         
     | 
| 
       168 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       169 
     | 
    
         
            -
                  },
         
     | 
| 
       170 
     | 
    
         
            -
                  "input":{"shape":"CreateFieldLevelEncryptionProfileRequest"},
         
     | 
| 
       171 
     | 
    
         
            -
                  "output":{"shape":"CreateFieldLevelEncryptionProfileResult"},
         
     | 
| 
       172 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       173 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       174 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       175 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"},
         
     | 
| 
       176 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
         
     | 
| 
       177 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
         
     | 
| 
       178 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionProfiles"},
         
     | 
| 
       179 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
         
     | 
| 
       180 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
         
     | 
| 
       181 
     | 
    
         
            -
                  ]
         
     | 
| 
       182 
     | 
    
         
            -
                },
         
     | 
| 
       183 
     | 
    
         
            -
                "CreateInvalidation":{
         
     | 
| 
       184 
     | 
    
         
            -
                  "name":"CreateInvalidation2017_10_30",
         
     | 
| 
       185 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       186 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       187 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{DistributionId}/invalidation",
         
     | 
| 
       188 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       189 
     | 
    
         
            -
                  },
         
     | 
| 
       190 
     | 
    
         
            -
                  "input":{"shape":"CreateInvalidationRequest"},
         
     | 
| 
       191 
     | 
    
         
            -
                  "output":{"shape":"CreateInvalidationResult"},
         
     | 
| 
       192 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       193 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       194 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       195 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       196 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       197 
     | 
    
         
            -
                    {"shape":"BatchTooLarge"},
         
     | 
| 
       198 
     | 
    
         
            -
                    {"shape":"TooManyInvalidationsInProgress"},
         
     | 
| 
       199 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"}
         
     | 
| 
       200 
     | 
    
         
            -
                  ]
         
     | 
| 
       201 
     | 
    
         
            -
                },
         
     | 
| 
       202 
     | 
    
         
            -
                "CreatePublicKey":{
         
     | 
| 
       203 
     | 
    
         
            -
                  "name":"CreatePublicKey2017_10_30",
         
     | 
| 
       204 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       205 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       206 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key",
         
     | 
| 
       207 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       208 
     | 
    
         
            -
                  },
         
     | 
| 
       209 
     | 
    
         
            -
                  "input":{"shape":"CreatePublicKeyRequest"},
         
     | 
| 
       210 
     | 
    
         
            -
                  "output":{"shape":"CreatePublicKeyResult"},
         
     | 
| 
       211 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       212 
     | 
    
         
            -
                    {"shape":"PublicKeyAlreadyExists"},
         
     | 
| 
       213 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       214 
     | 
    
         
            -
                    {"shape":"TooManyPublicKeys"}
         
     | 
| 
       215 
     | 
    
         
            -
                  ]
         
     | 
| 
       216 
     | 
    
         
            -
                },
         
     | 
| 
       217 
     | 
    
         
            -
                "CreateStreamingDistribution":{
         
     | 
| 
       218 
     | 
    
         
            -
                  "name":"CreateStreamingDistribution2017_10_30",
         
     | 
| 
       219 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       220 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       221 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution",
         
     | 
| 
       222 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       223 
     | 
    
         
            -
                  },
         
     | 
| 
       224 
     | 
    
         
            -
                  "input":{"shape":"CreateStreamingDistributionRequest"},
         
     | 
| 
       225 
     | 
    
         
            -
                  "output":{"shape":"CreateStreamingDistributionResult"},
         
     | 
| 
       226 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       227 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       228 
     | 
    
         
            -
                    {"shape":"StreamingDistributionAlreadyExists"},
         
     | 
| 
       229 
     | 
    
         
            -
                    {"shape":"InvalidOrigin"},
         
     | 
| 
       230 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       231 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       232 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       233 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       234 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       235 
     | 
    
         
            -
                    {"shape":"TooManyStreamingDistributionCNAMEs"},
         
     | 
| 
       236 
     | 
    
         
            -
                    {"shape":"TooManyStreamingDistributions"},
         
     | 
| 
       237 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       238 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"}
         
     | 
| 
       239 
     | 
    
         
            -
                  ]
         
     | 
| 
       240 
     | 
    
         
            -
                },
         
     | 
| 
       241 
     | 
    
         
            -
                "CreateStreamingDistributionWithTags":{
         
     | 
| 
       242 
     | 
    
         
            -
                  "name":"CreateStreamingDistributionWithTags2017_10_30",
         
     | 
| 
       243 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       244 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       245 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution?WithTags",
         
     | 
| 
       246 
     | 
    
         
            -
                    "responseCode":201
         
     | 
| 
       247 
     | 
    
         
            -
                  },
         
     | 
| 
       248 
     | 
    
         
            -
                  "input":{"shape":"CreateStreamingDistributionWithTagsRequest"},
         
     | 
| 
       249 
     | 
    
         
            -
                  "output":{"shape":"CreateStreamingDistributionWithTagsResult"},
         
     | 
| 
       250 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       251 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       252 
     | 
    
         
            -
                    {"shape":"StreamingDistributionAlreadyExists"},
         
     | 
| 
       253 
     | 
    
         
            -
                    {"shape":"InvalidOrigin"},
         
     | 
| 
       254 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       255 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       256 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       257 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       258 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       259 
     | 
    
         
            -
                    {"shape":"TooManyStreamingDistributionCNAMEs"},
         
     | 
| 
       260 
     | 
    
         
            -
                    {"shape":"TooManyStreamingDistributions"},
         
     | 
| 
       261 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       262 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       263 
     | 
    
         
            -
                    {"shape":"InvalidTagging"}
         
     | 
| 
       264 
     | 
    
         
            -
                  ]
         
     | 
| 
       265 
     | 
    
         
            -
                },
         
     | 
| 
       266 
     | 
    
         
            -
                "DeleteCloudFrontOriginAccessIdentity":{
         
     | 
| 
       267 
     | 
    
         
            -
                  "name":"DeleteCloudFrontOriginAccessIdentity2017_10_30",
         
     | 
| 
       268 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       269 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       270 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront/{Id}",
         
     | 
| 
       271 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       272 
     | 
    
         
            -
                  },
         
     | 
| 
       273 
     | 
    
         
            -
                  "input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
         
     | 
| 
       274 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       275 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       276 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       277 
     | 
    
         
            -
                    {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
         
     | 
| 
       278 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       279 
     | 
    
         
            -
                    {"shape":"CloudFrontOriginAccessIdentityInUse"}
         
     | 
| 
       280 
     | 
    
         
            -
                  ]
         
     | 
| 
       281 
     | 
    
         
            -
                },
         
     | 
| 
       282 
     | 
    
         
            -
                "DeleteDistribution":{
         
     | 
| 
       283 
     | 
    
         
            -
                  "name":"DeleteDistribution2017_10_30",
         
     | 
| 
       284 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       285 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       286 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{Id}",
         
     | 
| 
       287 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       288 
     | 
    
         
            -
                  },
         
     | 
| 
       289 
     | 
    
         
            -
                  "input":{"shape":"DeleteDistributionRequest"},
         
     | 
| 
       290 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       291 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       292 
     | 
    
         
            -
                    {"shape":"DistributionNotDisabled"},
         
     | 
| 
       293 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       294 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       295 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"}
         
     | 
| 
       296 
     | 
    
         
            -
                  ]
         
     | 
| 
       297 
     | 
    
         
            -
                },
         
     | 
| 
       298 
     | 
    
         
            -
                "DeleteFieldLevelEncryptionConfig":{
         
     | 
| 
       299 
     | 
    
         
            -
                  "name":"DeleteFieldLevelEncryptionConfig2017_10_30",
         
     | 
| 
       300 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       301 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       302 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption/{Id}",
         
     | 
| 
       303 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       304 
     | 
    
         
            -
                  },
         
     | 
| 
       305 
     | 
    
         
            -
                  "input":{"shape":"DeleteFieldLevelEncryptionConfigRequest"},
         
     | 
| 
       306 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       307 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       308 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       309 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"},
         
     | 
| 
       310 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       311 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionConfigInUse"}
         
     | 
| 
       312 
     | 
    
         
            -
                  ]
         
     | 
| 
       313 
     | 
    
         
            -
                },
         
     | 
| 
       314 
     | 
    
         
            -
                "DeleteFieldLevelEncryptionProfile":{
         
     | 
| 
       315 
     | 
    
         
            -
                  "name":"DeleteFieldLevelEncryptionProfile2017_10_30",
         
     | 
| 
       316 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       317 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       318 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile/{Id}",
         
     | 
| 
       319 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       320 
     | 
    
         
            -
                  },
         
     | 
| 
       321 
     | 
    
         
            -
                  "input":{"shape":"DeleteFieldLevelEncryptionProfileRequest"},
         
     | 
| 
       322 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       323 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       324 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       325 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"},
         
     | 
| 
       326 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       327 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionProfileInUse"}
         
     | 
| 
       328 
     | 
    
         
            -
                  ]
         
     | 
| 
       329 
     | 
    
         
            -
                },
         
     | 
| 
       330 
     | 
    
         
            -
                "DeletePublicKey":{
         
     | 
| 
       331 
     | 
    
         
            -
                  "name":"DeletePublicKey2017_10_30",
         
     | 
| 
       332 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       333 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       334 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key/{Id}",
         
     | 
| 
       335 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       336 
     | 
    
         
            -
                  },
         
     | 
| 
       337 
     | 
    
         
            -
                  "input":{"shape":"DeletePublicKeyRequest"},
         
     | 
| 
       338 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       339 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       340 
     | 
    
         
            -
                    {"shape":"PublicKeyInUse"},
         
     | 
| 
       341 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       342 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"},
         
     | 
| 
       343 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"}
         
     | 
| 
       344 
     | 
    
         
            -
                  ]
         
     | 
| 
       345 
     | 
    
         
            -
                },
         
     | 
| 
       346 
     | 
    
         
            -
                "DeleteStreamingDistribution":{
         
     | 
| 
       347 
     | 
    
         
            -
                  "name":"DeleteStreamingDistribution2017_10_30",
         
     | 
| 
       348 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       349 
     | 
    
         
            -
                    "method":"DELETE",
         
     | 
| 
       350 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution/{Id}",
         
     | 
| 
       351 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       352 
     | 
    
         
            -
                  },
         
     | 
| 
       353 
     | 
    
         
            -
                  "input":{"shape":"DeleteStreamingDistributionRequest"},
         
     | 
| 
       354 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       355 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       356 
     | 
    
         
            -
                    {"shape":"StreamingDistributionNotDisabled"},
         
     | 
| 
       357 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       358 
     | 
    
         
            -
                    {"shape":"NoSuchStreamingDistribution"},
         
     | 
| 
       359 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"}
         
     | 
| 
       360 
     | 
    
         
            -
                  ]
         
     | 
| 
       361 
     | 
    
         
            -
                },
         
     | 
| 
       362 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentity":{
         
     | 
| 
       363 
     | 
    
         
            -
                  "name":"GetCloudFrontOriginAccessIdentity2017_10_30",
         
     | 
| 
       364 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       365 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       366 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront/{Id}"
         
     | 
| 
       367 
     | 
    
         
            -
                  },
         
     | 
| 
       368 
     | 
    
         
            -
                  "input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
         
     | 
| 
       369 
     | 
    
         
            -
                  "output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
         
     | 
| 
       370 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       371 
     | 
    
         
            -
                    {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
         
     | 
| 
       372 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       373 
     | 
    
         
            -
                  ]
         
     | 
| 
       374 
     | 
    
         
            -
                },
         
     | 
| 
       375 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityConfig":{
         
     | 
| 
       376 
     | 
    
         
            -
                  "name":"GetCloudFrontOriginAccessIdentityConfig2017_10_30",
         
     | 
| 
       377 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       378 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       379 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront/{Id}/config"
         
     | 
| 
       380 
     | 
    
         
            -
                  },
         
     | 
| 
       381 
     | 
    
         
            -
                  "input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
         
     | 
| 
       382 
     | 
    
         
            -
                  "output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
         
     | 
| 
       383 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       384 
     | 
    
         
            -
                    {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
         
     | 
| 
       385 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       386 
     | 
    
         
            -
                  ]
         
     | 
| 
       387 
     | 
    
         
            -
                },
         
     | 
| 
       388 
     | 
    
         
            -
                "GetDistribution":{
         
     | 
| 
       389 
     | 
    
         
            -
                  "name":"GetDistribution2017_10_30",
         
     | 
| 
       390 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       391 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       392 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{Id}"
         
     | 
| 
       393 
     | 
    
         
            -
                  },
         
     | 
| 
       394 
     | 
    
         
            -
                  "input":{"shape":"GetDistributionRequest"},
         
     | 
| 
       395 
     | 
    
         
            -
                  "output":{"shape":"GetDistributionResult"},
         
     | 
| 
       396 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       397 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       398 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       399 
     | 
    
         
            -
                  ]
         
     | 
| 
       400 
     | 
    
         
            -
                },
         
     | 
| 
       401 
     | 
    
         
            -
                "GetDistributionConfig":{
         
     | 
| 
       402 
     | 
    
         
            -
                  "name":"GetDistributionConfig2017_10_30",
         
     | 
| 
       403 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       404 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       405 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{Id}/config"
         
     | 
| 
       406 
     | 
    
         
            -
                  },
         
     | 
| 
       407 
     | 
    
         
            -
                  "input":{"shape":"GetDistributionConfigRequest"},
         
     | 
| 
       408 
     | 
    
         
            -
                  "output":{"shape":"GetDistributionConfigResult"},
         
     | 
| 
       409 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       410 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       411 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       412 
     | 
    
         
            -
                  ]
         
     | 
| 
       413 
     | 
    
         
            -
                },
         
     | 
| 
       414 
     | 
    
         
            -
                "GetFieldLevelEncryption":{
         
     | 
| 
       415 
     | 
    
         
            -
                  "name":"GetFieldLevelEncryption2017_10_30",
         
     | 
| 
       416 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       417 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       418 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption/{Id}"
         
     | 
| 
       419 
     | 
    
         
            -
                  },
         
     | 
| 
       420 
     | 
    
         
            -
                  "input":{"shape":"GetFieldLevelEncryptionRequest"},
         
     | 
| 
       421 
     | 
    
         
            -
                  "output":{"shape":"GetFieldLevelEncryptionResult"},
         
     | 
| 
       422 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       423 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       424 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"}
         
     | 
| 
       425 
     | 
    
         
            -
                  ]
         
     | 
| 
       426 
     | 
    
         
            -
                },
         
     | 
| 
       427 
     | 
    
         
            -
                "GetFieldLevelEncryptionConfig":{
         
     | 
| 
       428 
     | 
    
         
            -
                  "name":"GetFieldLevelEncryptionConfig2017_10_30",
         
     | 
| 
       429 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       430 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       431 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption/{Id}/config"
         
     | 
| 
       432 
     | 
    
         
            -
                  },
         
     | 
| 
       433 
     | 
    
         
            -
                  "input":{"shape":"GetFieldLevelEncryptionConfigRequest"},
         
     | 
| 
       434 
     | 
    
         
            -
                  "output":{"shape":"GetFieldLevelEncryptionConfigResult"},
         
     | 
| 
       435 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       436 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       437 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"}
         
     | 
| 
       438 
     | 
    
         
            -
                  ]
         
     | 
| 
       439 
     | 
    
         
            -
                },
         
     | 
| 
       440 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfile":{
         
     | 
| 
       441 
     | 
    
         
            -
                  "name":"GetFieldLevelEncryptionProfile2017_10_30",
         
     | 
| 
       442 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       443 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       444 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile/{Id}"
         
     | 
| 
       445 
     | 
    
         
            -
                  },
         
     | 
| 
       446 
     | 
    
         
            -
                  "input":{"shape":"GetFieldLevelEncryptionProfileRequest"},
         
     | 
| 
       447 
     | 
    
         
            -
                  "output":{"shape":"GetFieldLevelEncryptionProfileResult"},
         
     | 
| 
       448 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       449 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       450 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"}
         
     | 
| 
       451 
     | 
    
         
            -
                  ]
         
     | 
| 
       452 
     | 
    
         
            -
                },
         
     | 
| 
       453 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfileConfig":{
         
     | 
| 
       454 
     | 
    
         
            -
                  "name":"GetFieldLevelEncryptionProfileConfig2017_10_30",
         
     | 
| 
       455 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       456 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       457 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile/{Id}/config"
         
     | 
| 
       458 
     | 
    
         
            -
                  },
         
     | 
| 
       459 
     | 
    
         
            -
                  "input":{"shape":"GetFieldLevelEncryptionProfileConfigRequest"},
         
     | 
| 
       460 
     | 
    
         
            -
                  "output":{"shape":"GetFieldLevelEncryptionProfileConfigResult"},
         
     | 
| 
       461 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       462 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       463 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"}
         
     | 
| 
       464 
     | 
    
         
            -
                  ]
         
     | 
| 
       465 
     | 
    
         
            -
                },
         
     | 
| 
       466 
     | 
    
         
            -
                "GetInvalidation":{
         
     | 
| 
       467 
     | 
    
         
            -
                  "name":"GetInvalidation2017_10_30",
         
     | 
| 
       468 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       469 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       470 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{DistributionId}/invalidation/{Id}"
         
     | 
| 
       471 
     | 
    
         
            -
                  },
         
     | 
| 
       472 
     | 
    
         
            -
                  "input":{"shape":"GetInvalidationRequest"},
         
     | 
| 
       473 
     | 
    
         
            -
                  "output":{"shape":"GetInvalidationResult"},
         
     | 
| 
       474 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       475 
     | 
    
         
            -
                    {"shape":"NoSuchInvalidation"},
         
     | 
| 
       476 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       477 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       478 
     | 
    
         
            -
                  ]
         
     | 
| 
       479 
     | 
    
         
            -
                },
         
     | 
| 
       480 
     | 
    
         
            -
                "GetPublicKey":{
         
     | 
| 
       481 
     | 
    
         
            -
                  "name":"GetPublicKey2017_10_30",
         
     | 
| 
       482 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       483 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       484 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key/{Id}"
         
     | 
| 
       485 
     | 
    
         
            -
                  },
         
     | 
| 
       486 
     | 
    
         
            -
                  "input":{"shape":"GetPublicKeyRequest"},
         
     | 
| 
       487 
     | 
    
         
            -
                  "output":{"shape":"GetPublicKeyResult"},
         
     | 
| 
       488 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       489 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       490 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"}
         
     | 
| 
       491 
     | 
    
         
            -
                  ]
         
     | 
| 
       492 
     | 
    
         
            -
                },
         
     | 
| 
       493 
     | 
    
         
            -
                "GetPublicKeyConfig":{
         
     | 
| 
       494 
     | 
    
         
            -
                  "name":"GetPublicKeyConfig2017_10_30",
         
     | 
| 
       495 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       496 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       497 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key/{Id}/config"
         
     | 
| 
       498 
     | 
    
         
            -
                  },
         
     | 
| 
       499 
     | 
    
         
            -
                  "input":{"shape":"GetPublicKeyConfigRequest"},
         
     | 
| 
       500 
     | 
    
         
            -
                  "output":{"shape":"GetPublicKeyConfigResult"},
         
     | 
| 
       501 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       502 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       503 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"}
         
     | 
| 
       504 
     | 
    
         
            -
                  ]
         
     | 
| 
       505 
     | 
    
         
            -
                },
         
     | 
| 
       506 
     | 
    
         
            -
                "GetStreamingDistribution":{
         
     | 
| 
       507 
     | 
    
         
            -
                  "name":"GetStreamingDistribution2017_10_30",
         
     | 
| 
       508 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       509 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       510 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution/{Id}"
         
     | 
| 
       511 
     | 
    
         
            -
                  },
         
     | 
| 
       512 
     | 
    
         
            -
                  "input":{"shape":"GetStreamingDistributionRequest"},
         
     | 
| 
       513 
     | 
    
         
            -
                  "output":{"shape":"GetStreamingDistributionResult"},
         
     | 
| 
       514 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       515 
     | 
    
         
            -
                    {"shape":"NoSuchStreamingDistribution"},
         
     | 
| 
       516 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       517 
     | 
    
         
            -
                  ]
         
     | 
| 
       518 
     | 
    
         
            -
                },
         
     | 
| 
       519 
     | 
    
         
            -
                "GetStreamingDistributionConfig":{
         
     | 
| 
       520 
     | 
    
         
            -
                  "name":"GetStreamingDistributionConfig2017_10_30",
         
     | 
| 
       521 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       522 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       523 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution/{Id}/config"
         
     | 
| 
       524 
     | 
    
         
            -
                  },
         
     | 
| 
       525 
     | 
    
         
            -
                  "input":{"shape":"GetStreamingDistributionConfigRequest"},
         
     | 
| 
       526 
     | 
    
         
            -
                  "output":{"shape":"GetStreamingDistributionConfigResult"},
         
     | 
| 
       527 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       528 
     | 
    
         
            -
                    {"shape":"NoSuchStreamingDistribution"},
         
     | 
| 
       529 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       530 
     | 
    
         
            -
                  ]
         
     | 
| 
       531 
     | 
    
         
            -
                },
         
     | 
| 
       532 
     | 
    
         
            -
                "ListCloudFrontOriginAccessIdentities":{
         
     | 
| 
       533 
     | 
    
         
            -
                  "name":"ListCloudFrontOriginAccessIdentities2017_10_30",
         
     | 
| 
       534 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       535 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       536 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront"
         
     | 
| 
       537 
     | 
    
         
            -
                  },
         
     | 
| 
       538 
     | 
    
         
            -
                  "input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
         
     | 
| 
       539 
     | 
    
         
            -
                  "output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
         
     | 
| 
       540 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       541 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       542 
     | 
    
         
            -
                  ]
         
     | 
| 
       543 
     | 
    
         
            -
                },
         
     | 
| 
       544 
     | 
    
         
            -
                "ListDistributions":{
         
     | 
| 
       545 
     | 
    
         
            -
                  "name":"ListDistributions2017_10_30",
         
     | 
| 
       546 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       547 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       548 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution"
         
     | 
| 
       549 
     | 
    
         
            -
                  },
         
     | 
| 
       550 
     | 
    
         
            -
                  "input":{"shape":"ListDistributionsRequest"},
         
     | 
| 
       551 
     | 
    
         
            -
                  "output":{"shape":"ListDistributionsResult"},
         
     | 
| 
       552 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       553 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       554 
     | 
    
         
            -
                  ]
         
     | 
| 
       555 
     | 
    
         
            -
                },
         
     | 
| 
       556 
     | 
    
         
            -
                "ListDistributionsByWebACLId":{
         
     | 
| 
       557 
     | 
    
         
            -
                  "name":"ListDistributionsByWebACLId2017_10_30",
         
     | 
| 
       558 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       559 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       560 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distributionsByWebACLId/{WebACLId}"
         
     | 
| 
       561 
     | 
    
         
            -
                  },
         
     | 
| 
       562 
     | 
    
         
            -
                  "input":{"shape":"ListDistributionsByWebACLIdRequest"},
         
     | 
| 
       563 
     | 
    
         
            -
                  "output":{"shape":"ListDistributionsByWebACLIdResult"},
         
     | 
| 
       564 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       565 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       566 
     | 
    
         
            -
                    {"shape":"InvalidWebACLId"}
         
     | 
| 
       567 
     | 
    
         
            -
                  ]
         
     | 
| 
       568 
     | 
    
         
            -
                },
         
     | 
| 
       569 
     | 
    
         
            -
                "ListFieldLevelEncryptionConfigs":{
         
     | 
| 
       570 
     | 
    
         
            -
                  "name":"ListFieldLevelEncryptionConfigs2017_10_30",
         
     | 
| 
       571 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       572 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       573 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption"
         
     | 
| 
       574 
     | 
    
         
            -
                  },
         
     | 
| 
       575 
     | 
    
         
            -
                  "input":{"shape":"ListFieldLevelEncryptionConfigsRequest"},
         
     | 
| 
       576 
     | 
    
         
            -
                  "output":{"shape":"ListFieldLevelEncryptionConfigsResult"},
         
     | 
| 
       577 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       578 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       579 
     | 
    
         
            -
                  ]
         
     | 
| 
       580 
     | 
    
         
            -
                },
         
     | 
| 
       581 
     | 
    
         
            -
                "ListFieldLevelEncryptionProfiles":{
         
     | 
| 
       582 
     | 
    
         
            -
                  "name":"ListFieldLevelEncryptionProfiles2017_10_30",
         
     | 
| 
       583 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       584 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       585 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile"
         
     | 
| 
       586 
     | 
    
         
            -
                  },
         
     | 
| 
       587 
     | 
    
         
            -
                  "input":{"shape":"ListFieldLevelEncryptionProfilesRequest"},
         
     | 
| 
       588 
     | 
    
         
            -
                  "output":{"shape":"ListFieldLevelEncryptionProfilesResult"},
         
     | 
| 
       589 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       590 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       591 
     | 
    
         
            -
                  ]
         
     | 
| 
       592 
     | 
    
         
            -
                },
         
     | 
| 
       593 
     | 
    
         
            -
                "ListInvalidations":{
         
     | 
| 
       594 
     | 
    
         
            -
                  "name":"ListInvalidations2017_10_30",
         
     | 
| 
       595 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       596 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       597 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{DistributionId}/invalidation"
         
     | 
| 
       598 
     | 
    
         
            -
                  },
         
     | 
| 
       599 
     | 
    
         
            -
                  "input":{"shape":"ListInvalidationsRequest"},
         
     | 
| 
       600 
     | 
    
         
            -
                  "output":{"shape":"ListInvalidationsResult"},
         
     | 
| 
       601 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       602 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       603 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       604 
     | 
    
         
            -
                    {"shape":"AccessDenied"}
         
     | 
| 
       605 
     | 
    
         
            -
                  ]
         
     | 
| 
       606 
     | 
    
         
            -
                },
         
     | 
| 
       607 
     | 
    
         
            -
                "ListPublicKeys":{
         
     | 
| 
       608 
     | 
    
         
            -
                  "name":"ListPublicKeys2017_10_30",
         
     | 
| 
       609 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       610 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       611 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key"
         
     | 
| 
       612 
     | 
    
         
            -
                  },
         
     | 
| 
       613 
     | 
    
         
            -
                  "input":{"shape":"ListPublicKeysRequest"},
         
     | 
| 
       614 
     | 
    
         
            -
                  "output":{"shape":"ListPublicKeysResult"},
         
     | 
| 
       615 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       616 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       617 
     | 
    
         
            -
                  ]
         
     | 
| 
       618 
     | 
    
         
            -
                },
         
     | 
| 
       619 
     | 
    
         
            -
                "ListStreamingDistributions":{
         
     | 
| 
       620 
     | 
    
         
            -
                  "name":"ListStreamingDistributions2017_10_30",
         
     | 
| 
       621 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       622 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       623 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution"
         
     | 
| 
       624 
     | 
    
         
            -
                  },
         
     | 
| 
       625 
     | 
    
         
            -
                  "input":{"shape":"ListStreamingDistributionsRequest"},
         
     | 
| 
       626 
     | 
    
         
            -
                  "output":{"shape":"ListStreamingDistributionsResult"},
         
     | 
| 
       627 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       628 
     | 
    
         
            -
                    {"shape":"InvalidArgument"}
         
     | 
| 
       629 
     | 
    
         
            -
                  ]
         
     | 
| 
       630 
     | 
    
         
            -
                },
         
     | 
| 
       631 
     | 
    
         
            -
                "ListTagsForResource":{
         
     | 
| 
       632 
     | 
    
         
            -
                  "name":"ListTagsForResource2017_10_30",
         
     | 
| 
       633 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       634 
     | 
    
         
            -
                    "method":"GET",
         
     | 
| 
       635 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/tagging"
         
     | 
| 
       636 
     | 
    
         
            -
                  },
         
     | 
| 
       637 
     | 
    
         
            -
                  "input":{"shape":"ListTagsForResourceRequest"},
         
     | 
| 
       638 
     | 
    
         
            -
                  "output":{"shape":"ListTagsForResourceResult"},
         
     | 
| 
       639 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       640 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       641 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       642 
     | 
    
         
            -
                    {"shape":"InvalidTagging"},
         
     | 
| 
       643 
     | 
    
         
            -
                    {"shape":"NoSuchResource"}
         
     | 
| 
       644 
     | 
    
         
            -
                  ]
         
     | 
| 
       645 
     | 
    
         
            -
                },
         
     | 
| 
       646 
     | 
    
         
            -
                "TagResource":{
         
     | 
| 
       647 
     | 
    
         
            -
                  "name":"TagResource2017_10_30",
         
     | 
| 
       648 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       649 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       650 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/tagging?Operation=Tag",
         
     | 
| 
       651 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       652 
     | 
    
         
            -
                  },
         
     | 
| 
       653 
     | 
    
         
            -
                  "input":{"shape":"TagResourceRequest"},
         
     | 
| 
       654 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       655 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       656 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       657 
     | 
    
         
            -
                    {"shape":"InvalidTagging"},
         
     | 
| 
       658 
     | 
    
         
            -
                    {"shape":"NoSuchResource"}
         
     | 
| 
       659 
     | 
    
         
            -
                  ]
         
     | 
| 
       660 
     | 
    
         
            -
                },
         
     | 
| 
       661 
     | 
    
         
            -
                "UntagResource":{
         
     | 
| 
       662 
     | 
    
         
            -
                  "name":"UntagResource2017_10_30",
         
     | 
| 
       663 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       664 
     | 
    
         
            -
                    "method":"POST",
         
     | 
| 
       665 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/tagging?Operation=Untag",
         
     | 
| 
       666 
     | 
    
         
            -
                    "responseCode":204
         
     | 
| 
       667 
     | 
    
         
            -
                  },
         
     | 
| 
       668 
     | 
    
         
            -
                  "input":{"shape":"UntagResourceRequest"},
         
     | 
| 
       669 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       670 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       671 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       672 
     | 
    
         
            -
                    {"shape":"InvalidTagging"},
         
     | 
| 
       673 
     | 
    
         
            -
                    {"shape":"NoSuchResource"}
         
     | 
| 
       674 
     | 
    
         
            -
                  ]
         
     | 
| 
       675 
     | 
    
         
            -
                },
         
     | 
| 
       676 
     | 
    
         
            -
                "UpdateCloudFrontOriginAccessIdentity":{
         
     | 
| 
       677 
     | 
    
         
            -
                  "name":"UpdateCloudFrontOriginAccessIdentity2017_10_30",
         
     | 
| 
       678 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       679 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       680 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/origin-access-identity/cloudfront/{Id}/config"
         
     | 
| 
       681 
     | 
    
         
            -
                  },
         
     | 
| 
       682 
     | 
    
         
            -
                  "input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
         
     | 
| 
       683 
     | 
    
         
            -
                  "output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
         
     | 
| 
       684 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       685 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       686 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       687 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       688 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       689 
     | 
    
         
            -
                    {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
         
     | 
| 
       690 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       691 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       692 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"}
         
     | 
| 
       693 
     | 
    
         
            -
                  ]
         
     | 
| 
       694 
     | 
    
         
            -
                },
         
     | 
| 
       695 
     | 
    
         
            -
                "UpdateDistribution":{
         
     | 
| 
       696 
     | 
    
         
            -
                  "name":"UpdateDistribution2017_10_30",
         
     | 
| 
       697 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       698 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       699 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/distribution/{Id}/config"
         
     | 
| 
       700 
     | 
    
         
            -
                  },
         
     | 
| 
       701 
     | 
    
         
            -
                  "input":{"shape":"UpdateDistributionRequest"},
         
     | 
| 
       702 
     | 
    
         
            -
                  "output":{"shape":"UpdateDistributionResult"},
         
     | 
| 
       703 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       704 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       705 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       706 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       707 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       708 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       709 
     | 
    
         
            -
                    {"shape":"NoSuchDistribution"},
         
     | 
| 
       710 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       711 
     | 
    
         
            -
                    {"shape":"TooManyDistributionCNAMEs"},
         
     | 
| 
       712 
     | 
    
         
            -
                    {"shape":"InvalidDefaultRootObject"},
         
     | 
| 
       713 
     | 
    
         
            -
                    {"shape":"InvalidRelativePath"},
         
     | 
| 
       714 
     | 
    
         
            -
                    {"shape":"InvalidErrorCode"},
         
     | 
| 
       715 
     | 
    
         
            -
                    {"shape":"InvalidResponseCode"},
         
     | 
| 
       716 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       717 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       718 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       719 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       720 
     | 
    
         
            -
                    {"shape":"InvalidViewerCertificate"},
         
     | 
| 
       721 
     | 
    
         
            -
                    {"shape":"InvalidMinimumProtocolVersion"},
         
     | 
| 
       722 
     | 
    
         
            -
                    {"shape":"InvalidRequiredProtocol"},
         
     | 
| 
       723 
     | 
    
         
            -
                    {"shape":"NoSuchOrigin"},
         
     | 
| 
       724 
     | 
    
         
            -
                    {"shape":"TooManyOrigins"},
         
     | 
| 
       725 
     | 
    
         
            -
                    {"shape":"TooManyCacheBehaviors"},
         
     | 
| 
       726 
     | 
    
         
            -
                    {"shape":"TooManyCookieNamesInWhiteList"},
         
     | 
| 
       727 
     | 
    
         
            -
                    {"shape":"InvalidForwardCookies"},
         
     | 
| 
       728 
     | 
    
         
            -
                    {"shape":"TooManyHeadersInForwardedValues"},
         
     | 
| 
       729 
     | 
    
         
            -
                    {"shape":"InvalidHeadersForS3Origin"},
         
     | 
| 
       730 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       731 
     | 
    
         
            -
                    {"shape":"TooManyCertificates"},
         
     | 
| 
       732 
     | 
    
         
            -
                    {"shape":"InvalidLocationCode"},
         
     | 
| 
       733 
     | 
    
         
            -
                    {"shape":"InvalidGeoRestrictionParameter"},
         
     | 
| 
       734 
     | 
    
         
            -
                    {"shape":"InvalidTTLOrder"},
         
     | 
| 
       735 
     | 
    
         
            -
                    {"shape":"InvalidWebACLId"},
         
     | 
| 
       736 
     | 
    
         
            -
                    {"shape":"TooManyOriginCustomHeaders"},
         
     | 
| 
       737 
     | 
    
         
            -
                    {"shape":"TooManyQueryStringParameters"},
         
     | 
| 
       738 
     | 
    
         
            -
                    {"shape":"InvalidQueryStringParameters"},
         
     | 
| 
       739 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsWithLambdaAssociations"},
         
     | 
| 
       740 
     | 
    
         
            -
                    {"shape":"TooManyLambdaFunctionAssociations"},
         
     | 
| 
       741 
     | 
    
         
            -
                    {"shape":"InvalidLambdaFunctionAssociation"},
         
     | 
| 
       742 
     | 
    
         
            -
                    {"shape":"InvalidOriginReadTimeout"},
         
     | 
| 
       743 
     | 
    
         
            -
                    {"shape":"InvalidOriginKeepaliveTimeout"},
         
     | 
| 
       744 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"},
         
     | 
| 
       745 
     | 
    
         
            -
                    {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
         
     | 
| 
       746 
     | 
    
         
            -
                    {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
         
     | 
| 
       747 
     | 
    
         
            -
                  ]
         
     | 
| 
       748 
     | 
    
         
            -
                },
         
     | 
| 
       749 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionConfig":{
         
     | 
| 
       750 
     | 
    
         
            -
                  "name":"UpdateFieldLevelEncryptionConfig2017_10_30",
         
     | 
| 
       751 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       752 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       753 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption/{Id}/config"
         
     | 
| 
       754 
     | 
    
         
            -
                  },
         
     | 
| 
       755 
     | 
    
         
            -
                  "input":{"shape":"UpdateFieldLevelEncryptionConfigRequest"},
         
     | 
| 
       756 
     | 
    
         
            -
                  "output":{"shape":"UpdateFieldLevelEncryptionConfigResult"},
         
     | 
| 
       757 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       758 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       759 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       760 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       761 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       762 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       763 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"},
         
     | 
| 
       764 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionConfig"},
         
     | 
| 
       765 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       766 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
         
     | 
| 
       767 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
         
     | 
| 
       768 
     | 
    
         
            -
                    {"shape":"QueryArgProfileEmpty"}
         
     | 
| 
       769 
     | 
    
         
            -
                  ]
         
     | 
| 
       770 
     | 
    
         
            -
                },
         
     | 
| 
       771 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionProfile":{
         
     | 
| 
       772 
     | 
    
         
            -
                  "name":"UpdateFieldLevelEncryptionProfile2017_10_30",
         
     | 
| 
       773 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       774 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       775 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/field-level-encryption-profile/{Id}/config"
         
     | 
| 
       776 
     | 
    
         
            -
                  },
         
     | 
| 
       777 
     | 
    
         
            -
                  "input":{"shape":"UpdateFieldLevelEncryptionProfileRequest"},
         
     | 
| 
       778 
     | 
    
         
            -
                  "output":{"shape":"UpdateFieldLevelEncryptionProfileResult"},
         
     | 
| 
       779 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       780 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       781 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
         
     | 
| 
       782 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       783 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"},
         
     | 
| 
       784 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       785 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       786 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"},
         
     | 
| 
       787 
     | 
    
         
            -
                    {"shape":"NoSuchFieldLevelEncryptionProfile"},
         
     | 
| 
       788 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       789 
     | 
    
         
            -
                    {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
         
     | 
| 
       790 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
         
     | 
| 
       791 
     | 
    
         
            -
                    {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
         
     | 
| 
       792 
     | 
    
         
            -
                  ]
         
     | 
| 
       793 
     | 
    
         
            -
                },
         
     | 
| 
       794 
     | 
    
         
            -
                "UpdatePublicKey":{
         
     | 
| 
       795 
     | 
    
         
            -
                  "name":"UpdatePublicKey2017_10_30",
         
     | 
| 
       796 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       797 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       798 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/public-key/{Id}/config"
         
     | 
| 
       799 
     | 
    
         
            -
                  },
         
     | 
| 
       800 
     | 
    
         
            -
                  "input":{"shape":"UpdatePublicKeyRequest"},
         
     | 
| 
       801 
     | 
    
         
            -
                  "output":{"shape":"UpdatePublicKeyResult"},
         
     | 
| 
       802 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       803 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       804 
     | 
    
         
            -
                    {"shape":"CannotChangeImmutablePublicKeyFields"},
         
     | 
| 
       805 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       806 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       807 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       808 
     | 
    
         
            -
                    {"shape":"NoSuchPublicKey"},
         
     | 
| 
       809 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"}
         
     | 
| 
       810 
     | 
    
         
            -
                  ]
         
     | 
| 
       811 
     | 
    
         
            -
                },
         
     | 
| 
       812 
     | 
    
         
            -
                "UpdateStreamingDistribution":{
         
     | 
| 
       813 
     | 
    
         
            -
                  "name":"UpdateStreamingDistribution2017_10_30",
         
     | 
| 
       814 
     | 
    
         
            -
                  "http":{
         
     | 
| 
       815 
     | 
    
         
            -
                    "method":"PUT",
         
     | 
| 
       816 
     | 
    
         
            -
                    "requestUri":"/2017-10-30/streaming-distribution/{Id}/config"
         
     | 
| 
       817 
     | 
    
         
            -
                  },
         
     | 
| 
       818 
     | 
    
         
            -
                  "input":{"shape":"UpdateStreamingDistributionRequest"},
         
     | 
| 
       819 
     | 
    
         
            -
                  "output":{"shape":"UpdateStreamingDistributionResult"},
         
     | 
| 
       820 
     | 
    
         
            -
                  "errors":[
         
     | 
| 
       821 
     | 
    
         
            -
                    {"shape":"AccessDenied"},
         
     | 
| 
       822 
     | 
    
         
            -
                    {"shape":"CNAMEAlreadyExists"},
         
     | 
| 
       823 
     | 
    
         
            -
                    {"shape":"IllegalUpdate"},
         
     | 
| 
       824 
     | 
    
         
            -
                    {"shape":"InvalidIfMatchVersion"},
         
     | 
| 
       825 
     | 
    
         
            -
                    {"shape":"MissingBody"},
         
     | 
| 
       826 
     | 
    
         
            -
                    {"shape":"NoSuchStreamingDistribution"},
         
     | 
| 
       827 
     | 
    
         
            -
                    {"shape":"PreconditionFailed"},
         
     | 
| 
       828 
     | 
    
         
            -
                    {"shape":"TooManyStreamingDistributionCNAMEs"},
         
     | 
| 
       829 
     | 
    
         
            -
                    {"shape":"InvalidArgument"},
         
     | 
| 
       830 
     | 
    
         
            -
                    {"shape":"InvalidOriginAccessIdentity"},
         
     | 
| 
       831 
     | 
    
         
            -
                    {"shape":"TooManyTrustedSigners"},
         
     | 
| 
       832 
     | 
    
         
            -
                    {"shape":"TrustedSignerDoesNotExist"},
         
     | 
| 
       833 
     | 
    
         
            -
                    {"shape":"InconsistentQuantities"}
         
     | 
| 
       834 
     | 
    
         
            -
                  ]
         
     | 
| 
       835 
     | 
    
         
            -
                }
         
     | 
| 
       836 
     | 
    
         
            -
              },
         
     | 
| 
       837 
     | 
    
         
            -
              "shapes":{
         
     | 
| 
       838 
     | 
    
         
            -
                "AccessDenied":{
         
     | 
| 
       839 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       840 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       841 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       842 
     | 
    
         
            -
                  },
         
     | 
| 
       843 
     | 
    
         
            -
                  "error":{"httpStatusCode":403},
         
     | 
| 
       844 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       845 
     | 
    
         
            -
                },
         
     | 
| 
       846 
     | 
    
         
            -
                "ActiveTrustedSigners":{
         
     | 
| 
       847 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       848 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       849 
     | 
    
         
            -
                    "Enabled",
         
     | 
| 
       850 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       851 
     | 
    
         
            -
                  ],
         
     | 
| 
       852 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       853 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       854 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       855 
     | 
    
         
            -
                    "Items":{"shape":"SignerList"}
         
     | 
| 
       856 
     | 
    
         
            -
                  }
         
     | 
| 
       857 
     | 
    
         
            -
                },
         
     | 
| 
       858 
     | 
    
         
            -
                "AliasList":{
         
     | 
| 
       859 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       860 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       861 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       862 
     | 
    
         
            -
                    "locationName":"CNAME"
         
     | 
| 
       863 
     | 
    
         
            -
                  }
         
     | 
| 
       864 
     | 
    
         
            -
                },
         
     | 
| 
       865 
     | 
    
         
            -
                "Aliases":{
         
     | 
| 
       866 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       867 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       868 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       869 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       870 
     | 
    
         
            -
                    "Items":{"shape":"AliasList"}
         
     | 
| 
       871 
     | 
    
         
            -
                  }
         
     | 
| 
       872 
     | 
    
         
            -
                },
         
     | 
| 
       873 
     | 
    
         
            -
                "AllowedMethods":{
         
     | 
| 
       874 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       875 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       876 
     | 
    
         
            -
                    "Quantity",
         
     | 
| 
       877 
     | 
    
         
            -
                    "Items"
         
     | 
| 
       878 
     | 
    
         
            -
                  ],
         
     | 
| 
       879 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       880 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       881 
     | 
    
         
            -
                    "Items":{"shape":"MethodsList"},
         
     | 
| 
       882 
     | 
    
         
            -
                    "CachedMethods":{"shape":"CachedMethods"}
         
     | 
| 
       883 
     | 
    
         
            -
                  }
         
     | 
| 
       884 
     | 
    
         
            -
                },
         
     | 
| 
       885 
     | 
    
         
            -
                "AwsAccountNumberList":{
         
     | 
| 
       886 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       887 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       888 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       889 
     | 
    
         
            -
                    "locationName":"AwsAccountNumber"
         
     | 
| 
       890 
     | 
    
         
            -
                  }
         
     | 
| 
       891 
     | 
    
         
            -
                },
         
     | 
| 
       892 
     | 
    
         
            -
                "BatchTooLarge":{
         
     | 
| 
       893 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       894 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       895 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       896 
     | 
    
         
            -
                  },
         
     | 
| 
       897 
     | 
    
         
            -
                  "error":{"httpStatusCode":413},
         
     | 
| 
       898 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       899 
     | 
    
         
            -
                },
         
     | 
| 
       900 
     | 
    
         
            -
                "CNAMEAlreadyExists":{
         
     | 
| 
       901 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       902 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       903 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       904 
     | 
    
         
            -
                  },
         
     | 
| 
       905 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       906 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       907 
     | 
    
         
            -
                },
         
     | 
| 
       908 
     | 
    
         
            -
                "CacheBehavior":{
         
     | 
| 
       909 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       910 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       911 
     | 
    
         
            -
                    "PathPattern",
         
     | 
| 
       912 
     | 
    
         
            -
                    "TargetOriginId",
         
     | 
| 
       913 
     | 
    
         
            -
                    "ForwardedValues",
         
     | 
| 
       914 
     | 
    
         
            -
                    "TrustedSigners",
         
     | 
| 
       915 
     | 
    
         
            -
                    "ViewerProtocolPolicy",
         
     | 
| 
       916 
     | 
    
         
            -
                    "MinTTL"
         
     | 
| 
       917 
     | 
    
         
            -
                  ],
         
     | 
| 
       918 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       919 
     | 
    
         
            -
                    "PathPattern":{"shape":"string"},
         
     | 
| 
       920 
     | 
    
         
            -
                    "TargetOriginId":{"shape":"string"},
         
     | 
| 
       921 
     | 
    
         
            -
                    "ForwardedValues":{"shape":"ForwardedValues"},
         
     | 
| 
       922 
     | 
    
         
            -
                    "TrustedSigners":{"shape":"TrustedSigners"},
         
     | 
| 
       923 
     | 
    
         
            -
                    "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
         
     | 
| 
       924 
     | 
    
         
            -
                    "MinTTL":{"shape":"long"},
         
     | 
| 
       925 
     | 
    
         
            -
                    "AllowedMethods":{"shape":"AllowedMethods"},
         
     | 
| 
       926 
     | 
    
         
            -
                    "SmoothStreaming":{"shape":"boolean"},
         
     | 
| 
       927 
     | 
    
         
            -
                    "DefaultTTL":{"shape":"long"},
         
     | 
| 
       928 
     | 
    
         
            -
                    "MaxTTL":{"shape":"long"},
         
     | 
| 
       929 
     | 
    
         
            -
                    "Compress":{"shape":"boolean"},
         
     | 
| 
       930 
     | 
    
         
            -
                    "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
         
     | 
| 
       931 
     | 
    
         
            -
                    "FieldLevelEncryptionId":{"shape":"string"}
         
     | 
| 
       932 
     | 
    
         
            -
                  }
         
     | 
| 
       933 
     | 
    
         
            -
                },
         
     | 
| 
       934 
     | 
    
         
            -
                "CacheBehaviorList":{
         
     | 
| 
       935 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       936 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       937 
     | 
    
         
            -
                    "shape":"CacheBehavior",
         
     | 
| 
       938 
     | 
    
         
            -
                    "locationName":"CacheBehavior"
         
     | 
| 
       939 
     | 
    
         
            -
                  }
         
     | 
| 
       940 
     | 
    
         
            -
                },
         
     | 
| 
       941 
     | 
    
         
            -
                "CacheBehaviors":{
         
     | 
| 
       942 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       943 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       944 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       945 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       946 
     | 
    
         
            -
                    "Items":{"shape":"CacheBehaviorList"}
         
     | 
| 
       947 
     | 
    
         
            -
                  }
         
     | 
| 
       948 
     | 
    
         
            -
                },
         
     | 
| 
       949 
     | 
    
         
            -
                "CachedMethods":{
         
     | 
| 
       950 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       951 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       952 
     | 
    
         
            -
                    "Quantity",
         
     | 
| 
       953 
     | 
    
         
            -
                    "Items"
         
     | 
| 
       954 
     | 
    
         
            -
                  ],
         
     | 
| 
       955 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       956 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       957 
     | 
    
         
            -
                    "Items":{"shape":"MethodsList"}
         
     | 
| 
       958 
     | 
    
         
            -
                  }
         
     | 
| 
       959 
     | 
    
         
            -
                },
         
     | 
| 
       960 
     | 
    
         
            -
                "CannotChangeImmutablePublicKeyFields":{
         
     | 
| 
       961 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       962 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       963 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       964 
     | 
    
         
            -
                  },
         
     | 
| 
       965 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       966 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       967 
     | 
    
         
            -
                },
         
     | 
| 
       968 
     | 
    
         
            -
                "CertificateSource":{
         
     | 
| 
       969 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       970 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       971 
     | 
    
         
            -
                    "cloudfront",
         
     | 
| 
       972 
     | 
    
         
            -
                    "iam",
         
     | 
| 
       973 
     | 
    
         
            -
                    "acm"
         
     | 
| 
       974 
     | 
    
         
            -
                  ]
         
     | 
| 
       975 
     | 
    
         
            -
                },
         
     | 
| 
       976 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentity":{
         
     | 
| 
       977 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       978 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       979 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       980 
     | 
    
         
            -
                    "S3CanonicalUserId"
         
     | 
| 
       981 
     | 
    
         
            -
                  ],
         
     | 
| 
       982 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       983 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       984 
     | 
    
         
            -
                    "S3CanonicalUserId":{"shape":"string"},
         
     | 
| 
       985 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
         
     | 
| 
       986 
     | 
    
         
            -
                  }
         
     | 
| 
       987 
     | 
    
         
            -
                },
         
     | 
| 
       988 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentityAlreadyExists":{
         
     | 
| 
       989 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       990 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       991 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       992 
     | 
    
         
            -
                  },
         
     | 
| 
       993 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       994 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       995 
     | 
    
         
            -
                },
         
     | 
| 
       996 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentityConfig":{
         
     | 
| 
       997 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       998 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       999 
     | 
    
         
            -
                    "CallerReference",
         
     | 
| 
       1000 
     | 
    
         
            -
                    "Comment"
         
     | 
| 
       1001 
     | 
    
         
            -
                  ],
         
     | 
| 
       1002 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1003 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       1004 
     | 
    
         
            -
                    "Comment":{"shape":"string"}
         
     | 
| 
       1005 
     | 
    
         
            -
                  }
         
     | 
| 
       1006 
     | 
    
         
            -
                },
         
     | 
| 
       1007 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentityInUse":{
         
     | 
| 
       1008 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1009 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1010 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1011 
     | 
    
         
            -
                  },
         
     | 
| 
       1012 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1013 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1014 
     | 
    
         
            -
                },
         
     | 
| 
       1015 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentityList":{
         
     | 
| 
       1016 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1017 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1018 
     | 
    
         
            -
                    "Marker",
         
     | 
| 
       1019 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       1020 
     | 
    
         
            -
                    "IsTruncated",
         
     | 
| 
       1021 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       1022 
     | 
    
         
            -
                  ],
         
     | 
| 
       1023 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1024 
     | 
    
         
            -
                    "Marker":{"shape":"string"},
         
     | 
| 
       1025 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       1026 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       1027 
     | 
    
         
            -
                    "IsTruncated":{"shape":"boolean"},
         
     | 
| 
       1028 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1029 
     | 
    
         
            -
                    "Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
         
     | 
| 
       1030 
     | 
    
         
            -
                  }
         
     | 
| 
       1031 
     | 
    
         
            -
                },
         
     | 
| 
       1032 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentitySummary":{
         
     | 
| 
       1033 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1034 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1035 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1036 
     | 
    
         
            -
                    "S3CanonicalUserId",
         
     | 
| 
       1037 
     | 
    
         
            -
                    "Comment"
         
     | 
| 
       1038 
     | 
    
         
            -
                  ],
         
     | 
| 
       1039 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1040 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1041 
     | 
    
         
            -
                    "S3CanonicalUserId":{"shape":"string"},
         
     | 
| 
       1042 
     | 
    
         
            -
                    "Comment":{"shape":"string"}
         
     | 
| 
       1043 
     | 
    
         
            -
                  }
         
     | 
| 
       1044 
     | 
    
         
            -
                },
         
     | 
| 
       1045 
     | 
    
         
            -
                "CloudFrontOriginAccessIdentitySummaryList":{
         
     | 
| 
       1046 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1047 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1048 
     | 
    
         
            -
                    "shape":"CloudFrontOriginAccessIdentitySummary",
         
     | 
| 
       1049 
     | 
    
         
            -
                    "locationName":"CloudFrontOriginAccessIdentitySummary"
         
     | 
| 
       1050 
     | 
    
         
            -
                  }
         
     | 
| 
       1051 
     | 
    
         
            -
                },
         
     | 
| 
       1052 
     | 
    
         
            -
                "ContentTypeProfile":{
         
     | 
| 
       1053 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1054 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1055 
     | 
    
         
            -
                    "Format",
         
     | 
| 
       1056 
     | 
    
         
            -
                    "ContentType"
         
     | 
| 
       1057 
     | 
    
         
            -
                  ],
         
     | 
| 
       1058 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1059 
     | 
    
         
            -
                    "Format":{"shape":"Format"},
         
     | 
| 
       1060 
     | 
    
         
            -
                    "ProfileId":{"shape":"string"},
         
     | 
| 
       1061 
     | 
    
         
            -
                    "ContentType":{"shape":"string"}
         
     | 
| 
       1062 
     | 
    
         
            -
                  }
         
     | 
| 
       1063 
     | 
    
         
            -
                },
         
     | 
| 
       1064 
     | 
    
         
            -
                "ContentTypeProfileConfig":{
         
     | 
| 
       1065 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1066 
     | 
    
         
            -
                  "required":["ForwardWhenContentTypeIsUnknown"],
         
     | 
| 
       1067 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1068 
     | 
    
         
            -
                    "ForwardWhenContentTypeIsUnknown":{"shape":"boolean"},
         
     | 
| 
       1069 
     | 
    
         
            -
                    "ContentTypeProfiles":{"shape":"ContentTypeProfiles"}
         
     | 
| 
       1070 
     | 
    
         
            -
                  }
         
     | 
| 
       1071 
     | 
    
         
            -
                },
         
     | 
| 
       1072 
     | 
    
         
            -
                "ContentTypeProfileList":{
         
     | 
| 
       1073 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1074 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1075 
     | 
    
         
            -
                    "shape":"ContentTypeProfile",
         
     | 
| 
       1076 
     | 
    
         
            -
                    "locationName":"ContentTypeProfile"
         
     | 
| 
       1077 
     | 
    
         
            -
                  }
         
     | 
| 
       1078 
     | 
    
         
            -
                },
         
     | 
| 
       1079 
     | 
    
         
            -
                "ContentTypeProfiles":{
         
     | 
| 
       1080 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1081 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1082 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1083 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1084 
     | 
    
         
            -
                    "Items":{"shape":"ContentTypeProfileList"}
         
     | 
| 
       1085 
     | 
    
         
            -
                  }
         
     | 
| 
       1086 
     | 
    
         
            -
                },
         
     | 
| 
       1087 
     | 
    
         
            -
                "CookieNameList":{
         
     | 
| 
       1088 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1089 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1090 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       1091 
     | 
    
         
            -
                    "locationName":"Name"
         
     | 
| 
       1092 
     | 
    
         
            -
                  }
         
     | 
| 
       1093 
     | 
    
         
            -
                },
         
     | 
| 
       1094 
     | 
    
         
            -
                "CookieNames":{
         
     | 
| 
       1095 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1096 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1097 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1098 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1099 
     | 
    
         
            -
                    "Items":{"shape":"CookieNameList"}
         
     | 
| 
       1100 
     | 
    
         
            -
                  }
         
     | 
| 
       1101 
     | 
    
         
            -
                },
         
     | 
| 
       1102 
     | 
    
         
            -
                "CookiePreference":{
         
     | 
| 
       1103 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1104 
     | 
    
         
            -
                  "required":["Forward"],
         
     | 
| 
       1105 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1106 
     | 
    
         
            -
                    "Forward":{"shape":"ItemSelection"},
         
     | 
| 
       1107 
     | 
    
         
            -
                    "WhitelistedNames":{"shape":"CookieNames"}
         
     | 
| 
       1108 
     | 
    
         
            -
                  }
         
     | 
| 
       1109 
     | 
    
         
            -
                },
         
     | 
| 
       1110 
     | 
    
         
            -
                "CreateCloudFrontOriginAccessIdentityRequest":{
         
     | 
| 
       1111 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1112 
     | 
    
         
            -
                  "required":["CloudFrontOriginAccessIdentityConfig"],
         
     | 
| 
       1113 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1114 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityConfig":{
         
     | 
| 
       1115 
     | 
    
         
            -
                      "shape":"CloudFrontOriginAccessIdentityConfig",
         
     | 
| 
       1116 
     | 
    
         
            -
                      "locationName":"CloudFrontOriginAccessIdentityConfig",
         
     | 
| 
       1117 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1118 
     | 
    
         
            -
                    }
         
     | 
| 
       1119 
     | 
    
         
            -
                  },
         
     | 
| 
       1120 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentityConfig"
         
     | 
| 
       1121 
     | 
    
         
            -
                },
         
     | 
| 
       1122 
     | 
    
         
            -
                "CreateCloudFrontOriginAccessIdentityResult":{
         
     | 
| 
       1123 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1124 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1125 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
         
     | 
| 
       1126 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1127 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1128 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1129 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1130 
     | 
    
         
            -
                    },
         
     | 
| 
       1131 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1132 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1133 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1134 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1135 
     | 
    
         
            -
                    }
         
     | 
| 
       1136 
     | 
    
         
            -
                  },
         
     | 
| 
       1137 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentity"
         
     | 
| 
       1138 
     | 
    
         
            -
                },
         
     | 
| 
       1139 
     | 
    
         
            -
                "CreateDistributionRequest":{
         
     | 
| 
       1140 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1141 
     | 
    
         
            -
                  "required":["DistributionConfig"],
         
     | 
| 
       1142 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1143 
     | 
    
         
            -
                    "DistributionConfig":{
         
     | 
| 
       1144 
     | 
    
         
            -
                      "shape":"DistributionConfig",
         
     | 
| 
       1145 
     | 
    
         
            -
                      "locationName":"DistributionConfig",
         
     | 
| 
       1146 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1147 
     | 
    
         
            -
                    }
         
     | 
| 
       1148 
     | 
    
         
            -
                  },
         
     | 
| 
       1149 
     | 
    
         
            -
                  "payload":"DistributionConfig"
         
     | 
| 
       1150 
     | 
    
         
            -
                },
         
     | 
| 
       1151 
     | 
    
         
            -
                "CreateDistributionResult":{
         
     | 
| 
       1152 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1153 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1154 
     | 
    
         
            -
                    "Distribution":{"shape":"Distribution"},
         
     | 
| 
       1155 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1156 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1157 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1158 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1159 
     | 
    
         
            -
                    },
         
     | 
| 
       1160 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1161 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1162 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1163 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1164 
     | 
    
         
            -
                    }
         
     | 
| 
       1165 
     | 
    
         
            -
                  },
         
     | 
| 
       1166 
     | 
    
         
            -
                  "payload":"Distribution"
         
     | 
| 
       1167 
     | 
    
         
            -
                },
         
     | 
| 
       1168 
     | 
    
         
            -
                "CreateDistributionWithTagsRequest":{
         
     | 
| 
       1169 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1170 
     | 
    
         
            -
                  "required":["DistributionConfigWithTags"],
         
     | 
| 
       1171 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1172 
     | 
    
         
            -
                    "DistributionConfigWithTags":{
         
     | 
| 
       1173 
     | 
    
         
            -
                      "shape":"DistributionConfigWithTags",
         
     | 
| 
       1174 
     | 
    
         
            -
                      "locationName":"DistributionConfigWithTags",
         
     | 
| 
       1175 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1176 
     | 
    
         
            -
                    }
         
     | 
| 
       1177 
     | 
    
         
            -
                  },
         
     | 
| 
       1178 
     | 
    
         
            -
                  "payload":"DistributionConfigWithTags"
         
     | 
| 
       1179 
     | 
    
         
            -
                },
         
     | 
| 
       1180 
     | 
    
         
            -
                "CreateDistributionWithTagsResult":{
         
     | 
| 
       1181 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1182 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1183 
     | 
    
         
            -
                    "Distribution":{"shape":"Distribution"},
         
     | 
| 
       1184 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1185 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1186 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1187 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1188 
     | 
    
         
            -
                    },
         
     | 
| 
       1189 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1190 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1191 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1192 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1193 
     | 
    
         
            -
                    }
         
     | 
| 
       1194 
     | 
    
         
            -
                  },
         
     | 
| 
       1195 
     | 
    
         
            -
                  "payload":"Distribution"
         
     | 
| 
       1196 
     | 
    
         
            -
                },
         
     | 
| 
       1197 
     | 
    
         
            -
                "CreateFieldLevelEncryptionConfigRequest":{
         
     | 
| 
       1198 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1199 
     | 
    
         
            -
                  "required":["FieldLevelEncryptionConfig"],
         
     | 
| 
       1200 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1201 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig":{
         
     | 
| 
       1202 
     | 
    
         
            -
                      "shape":"FieldLevelEncryptionConfig",
         
     | 
| 
       1203 
     | 
    
         
            -
                      "locationName":"FieldLevelEncryptionConfig",
         
     | 
| 
       1204 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1205 
     | 
    
         
            -
                    }
         
     | 
| 
       1206 
     | 
    
         
            -
                  },
         
     | 
| 
       1207 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionConfig"
         
     | 
| 
       1208 
     | 
    
         
            -
                },
         
     | 
| 
       1209 
     | 
    
         
            -
                "CreateFieldLevelEncryptionConfigResult":{
         
     | 
| 
       1210 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1211 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1212 
     | 
    
         
            -
                    "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
         
     | 
| 
       1213 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1214 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1215 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1216 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1217 
     | 
    
         
            -
                    },
         
     | 
| 
       1218 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1219 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1220 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1221 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1222 
     | 
    
         
            -
                    }
         
     | 
| 
       1223 
     | 
    
         
            -
                  },
         
     | 
| 
       1224 
     | 
    
         
            -
                  "payload":"FieldLevelEncryption"
         
     | 
| 
       1225 
     | 
    
         
            -
                },
         
     | 
| 
       1226 
     | 
    
         
            -
                "CreateFieldLevelEncryptionProfileRequest":{
         
     | 
| 
       1227 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1228 
     | 
    
         
            -
                  "required":["FieldLevelEncryptionProfileConfig"],
         
     | 
| 
       1229 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1230 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig":{
         
     | 
| 
       1231 
     | 
    
         
            -
                      "shape":"FieldLevelEncryptionProfileConfig",
         
     | 
| 
       1232 
     | 
    
         
            -
                      "locationName":"FieldLevelEncryptionProfileConfig",
         
     | 
| 
       1233 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1234 
     | 
    
         
            -
                    }
         
     | 
| 
       1235 
     | 
    
         
            -
                  },
         
     | 
| 
       1236 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfileConfig"
         
     | 
| 
       1237 
     | 
    
         
            -
                },
         
     | 
| 
       1238 
     | 
    
         
            -
                "CreateFieldLevelEncryptionProfileResult":{
         
     | 
| 
       1239 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1240 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1241 
     | 
    
         
            -
                    "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
         
     | 
| 
       1242 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1243 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1244 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1245 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1246 
     | 
    
         
            -
                    },
         
     | 
| 
       1247 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1248 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1249 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1250 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1251 
     | 
    
         
            -
                    }
         
     | 
| 
       1252 
     | 
    
         
            -
                  },
         
     | 
| 
       1253 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfile"
         
     | 
| 
       1254 
     | 
    
         
            -
                },
         
     | 
| 
       1255 
     | 
    
         
            -
                "CreateInvalidationRequest":{
         
     | 
| 
       1256 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1257 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1258 
     | 
    
         
            -
                    "DistributionId",
         
     | 
| 
       1259 
     | 
    
         
            -
                    "InvalidationBatch"
         
     | 
| 
       1260 
     | 
    
         
            -
                  ],
         
     | 
| 
       1261 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1262 
     | 
    
         
            -
                    "DistributionId":{
         
     | 
| 
       1263 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1264 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1265 
     | 
    
         
            -
                      "locationName":"DistributionId"
         
     | 
| 
       1266 
     | 
    
         
            -
                    },
         
     | 
| 
       1267 
     | 
    
         
            -
                    "InvalidationBatch":{
         
     | 
| 
       1268 
     | 
    
         
            -
                      "shape":"InvalidationBatch",
         
     | 
| 
       1269 
     | 
    
         
            -
                      "locationName":"InvalidationBatch",
         
     | 
| 
       1270 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1271 
     | 
    
         
            -
                    }
         
     | 
| 
       1272 
     | 
    
         
            -
                  },
         
     | 
| 
       1273 
     | 
    
         
            -
                  "payload":"InvalidationBatch"
         
     | 
| 
       1274 
     | 
    
         
            -
                },
         
     | 
| 
       1275 
     | 
    
         
            -
                "CreateInvalidationResult":{
         
     | 
| 
       1276 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1277 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1278 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1279 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1280 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1281 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1282 
     | 
    
         
            -
                    },
         
     | 
| 
       1283 
     | 
    
         
            -
                    "Invalidation":{"shape":"Invalidation"}
         
     | 
| 
       1284 
     | 
    
         
            -
                  },
         
     | 
| 
       1285 
     | 
    
         
            -
                  "payload":"Invalidation"
         
     | 
| 
       1286 
     | 
    
         
            -
                },
         
     | 
| 
       1287 
     | 
    
         
            -
                "CreatePublicKeyRequest":{
         
     | 
| 
       1288 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1289 
     | 
    
         
            -
                  "required":["PublicKeyConfig"],
         
     | 
| 
       1290 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1291 
     | 
    
         
            -
                    "PublicKeyConfig":{
         
     | 
| 
       1292 
     | 
    
         
            -
                      "shape":"PublicKeyConfig",
         
     | 
| 
       1293 
     | 
    
         
            -
                      "locationName":"PublicKeyConfig",
         
     | 
| 
       1294 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1295 
     | 
    
         
            -
                    }
         
     | 
| 
       1296 
     | 
    
         
            -
                  },
         
     | 
| 
       1297 
     | 
    
         
            -
                  "payload":"PublicKeyConfig"
         
     | 
| 
       1298 
     | 
    
         
            -
                },
         
     | 
| 
       1299 
     | 
    
         
            -
                "CreatePublicKeyResult":{
         
     | 
| 
       1300 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1301 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1302 
     | 
    
         
            -
                    "PublicKey":{"shape":"PublicKey"},
         
     | 
| 
       1303 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1304 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1305 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1306 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1307 
     | 
    
         
            -
                    },
         
     | 
| 
       1308 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1309 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1310 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1311 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1312 
     | 
    
         
            -
                    }
         
     | 
| 
       1313 
     | 
    
         
            -
                  },
         
     | 
| 
       1314 
     | 
    
         
            -
                  "payload":"PublicKey"
         
     | 
| 
       1315 
     | 
    
         
            -
                },
         
     | 
| 
       1316 
     | 
    
         
            -
                "CreateStreamingDistributionRequest":{
         
     | 
| 
       1317 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1318 
     | 
    
         
            -
                  "required":["StreamingDistributionConfig"],
         
     | 
| 
       1319 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1320 
     | 
    
         
            -
                    "StreamingDistributionConfig":{
         
     | 
| 
       1321 
     | 
    
         
            -
                      "shape":"StreamingDistributionConfig",
         
     | 
| 
       1322 
     | 
    
         
            -
                      "locationName":"StreamingDistributionConfig",
         
     | 
| 
       1323 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1324 
     | 
    
         
            -
                    }
         
     | 
| 
       1325 
     | 
    
         
            -
                  },
         
     | 
| 
       1326 
     | 
    
         
            -
                  "payload":"StreamingDistributionConfig"
         
     | 
| 
       1327 
     | 
    
         
            -
                },
         
     | 
| 
       1328 
     | 
    
         
            -
                "CreateStreamingDistributionResult":{
         
     | 
| 
       1329 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1330 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1331 
     | 
    
         
            -
                    "StreamingDistribution":{"shape":"StreamingDistribution"},
         
     | 
| 
       1332 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1333 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1334 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1335 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1336 
     | 
    
         
            -
                    },
         
     | 
| 
       1337 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1338 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1339 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1340 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1341 
     | 
    
         
            -
                    }
         
     | 
| 
       1342 
     | 
    
         
            -
                  },
         
     | 
| 
       1343 
     | 
    
         
            -
                  "payload":"StreamingDistribution"
         
     | 
| 
       1344 
     | 
    
         
            -
                },
         
     | 
| 
       1345 
     | 
    
         
            -
                "CreateStreamingDistributionWithTagsRequest":{
         
     | 
| 
       1346 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1347 
     | 
    
         
            -
                  "required":["StreamingDistributionConfigWithTags"],
         
     | 
| 
       1348 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1349 
     | 
    
         
            -
                    "StreamingDistributionConfigWithTags":{
         
     | 
| 
       1350 
     | 
    
         
            -
                      "shape":"StreamingDistributionConfigWithTags",
         
     | 
| 
       1351 
     | 
    
         
            -
                      "locationName":"StreamingDistributionConfigWithTags",
         
     | 
| 
       1352 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       1353 
     | 
    
         
            -
                    }
         
     | 
| 
       1354 
     | 
    
         
            -
                  },
         
     | 
| 
       1355 
     | 
    
         
            -
                  "payload":"StreamingDistributionConfigWithTags"
         
     | 
| 
       1356 
     | 
    
         
            -
                },
         
     | 
| 
       1357 
     | 
    
         
            -
                "CreateStreamingDistributionWithTagsResult":{
         
     | 
| 
       1358 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1359 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1360 
     | 
    
         
            -
                    "StreamingDistribution":{"shape":"StreamingDistribution"},
         
     | 
| 
       1361 
     | 
    
         
            -
                    "Location":{
         
     | 
| 
       1362 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1363 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1364 
     | 
    
         
            -
                      "locationName":"Location"
         
     | 
| 
       1365 
     | 
    
         
            -
                    },
         
     | 
| 
       1366 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1367 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1368 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1369 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1370 
     | 
    
         
            -
                    }
         
     | 
| 
       1371 
     | 
    
         
            -
                  },
         
     | 
| 
       1372 
     | 
    
         
            -
                  "payload":"StreamingDistribution"
         
     | 
| 
       1373 
     | 
    
         
            -
                },
         
     | 
| 
       1374 
     | 
    
         
            -
                "CustomErrorResponse":{
         
     | 
| 
       1375 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1376 
     | 
    
         
            -
                  "required":["ErrorCode"],
         
     | 
| 
       1377 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1378 
     | 
    
         
            -
                    "ErrorCode":{"shape":"integer"},
         
     | 
| 
       1379 
     | 
    
         
            -
                    "ResponsePagePath":{"shape":"string"},
         
     | 
| 
       1380 
     | 
    
         
            -
                    "ResponseCode":{"shape":"string"},
         
     | 
| 
       1381 
     | 
    
         
            -
                    "ErrorCachingMinTTL":{"shape":"long"}
         
     | 
| 
       1382 
     | 
    
         
            -
                  }
         
     | 
| 
       1383 
     | 
    
         
            -
                },
         
     | 
| 
       1384 
     | 
    
         
            -
                "CustomErrorResponseList":{
         
     | 
| 
       1385 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1386 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1387 
     | 
    
         
            -
                    "shape":"CustomErrorResponse",
         
     | 
| 
       1388 
     | 
    
         
            -
                    "locationName":"CustomErrorResponse"
         
     | 
| 
       1389 
     | 
    
         
            -
                  }
         
     | 
| 
       1390 
     | 
    
         
            -
                },
         
     | 
| 
       1391 
     | 
    
         
            -
                "CustomErrorResponses":{
         
     | 
| 
       1392 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1393 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1394 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1395 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1396 
     | 
    
         
            -
                    "Items":{"shape":"CustomErrorResponseList"}
         
     | 
| 
       1397 
     | 
    
         
            -
                  }
         
     | 
| 
       1398 
     | 
    
         
            -
                },
         
     | 
| 
       1399 
     | 
    
         
            -
                "CustomHeaders":{
         
     | 
| 
       1400 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1401 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1402 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1403 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1404 
     | 
    
         
            -
                    "Items":{"shape":"OriginCustomHeadersList"}
         
     | 
| 
       1405 
     | 
    
         
            -
                  }
         
     | 
| 
       1406 
     | 
    
         
            -
                },
         
     | 
| 
       1407 
     | 
    
         
            -
                "CustomOriginConfig":{
         
     | 
| 
       1408 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1409 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1410 
     | 
    
         
            -
                    "HTTPPort",
         
     | 
| 
       1411 
     | 
    
         
            -
                    "HTTPSPort",
         
     | 
| 
       1412 
     | 
    
         
            -
                    "OriginProtocolPolicy"
         
     | 
| 
       1413 
     | 
    
         
            -
                  ],
         
     | 
| 
       1414 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1415 
     | 
    
         
            -
                    "HTTPPort":{"shape":"integer"},
         
     | 
| 
       1416 
     | 
    
         
            -
                    "HTTPSPort":{"shape":"integer"},
         
     | 
| 
       1417 
     | 
    
         
            -
                    "OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"},
         
     | 
| 
       1418 
     | 
    
         
            -
                    "OriginSslProtocols":{"shape":"OriginSslProtocols"},
         
     | 
| 
       1419 
     | 
    
         
            -
                    "OriginReadTimeout":{"shape":"integer"},
         
     | 
| 
       1420 
     | 
    
         
            -
                    "OriginKeepaliveTimeout":{"shape":"integer"}
         
     | 
| 
       1421 
     | 
    
         
            -
                  }
         
     | 
| 
       1422 
     | 
    
         
            -
                },
         
     | 
| 
       1423 
     | 
    
         
            -
                "DefaultCacheBehavior":{
         
     | 
| 
       1424 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1425 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1426 
     | 
    
         
            -
                    "TargetOriginId",
         
     | 
| 
       1427 
     | 
    
         
            -
                    "ForwardedValues",
         
     | 
| 
       1428 
     | 
    
         
            -
                    "TrustedSigners",
         
     | 
| 
       1429 
     | 
    
         
            -
                    "ViewerProtocolPolicy",
         
     | 
| 
       1430 
     | 
    
         
            -
                    "MinTTL"
         
     | 
| 
       1431 
     | 
    
         
            -
                  ],
         
     | 
| 
       1432 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1433 
     | 
    
         
            -
                    "TargetOriginId":{"shape":"string"},
         
     | 
| 
       1434 
     | 
    
         
            -
                    "ForwardedValues":{"shape":"ForwardedValues"},
         
     | 
| 
       1435 
     | 
    
         
            -
                    "TrustedSigners":{"shape":"TrustedSigners"},
         
     | 
| 
       1436 
     | 
    
         
            -
                    "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
         
     | 
| 
       1437 
     | 
    
         
            -
                    "MinTTL":{"shape":"long"},
         
     | 
| 
       1438 
     | 
    
         
            -
                    "AllowedMethods":{"shape":"AllowedMethods"},
         
     | 
| 
       1439 
     | 
    
         
            -
                    "SmoothStreaming":{"shape":"boolean"},
         
     | 
| 
       1440 
     | 
    
         
            -
                    "DefaultTTL":{"shape":"long"},
         
     | 
| 
       1441 
     | 
    
         
            -
                    "MaxTTL":{"shape":"long"},
         
     | 
| 
       1442 
     | 
    
         
            -
                    "Compress":{"shape":"boolean"},
         
     | 
| 
       1443 
     | 
    
         
            -
                    "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
         
     | 
| 
       1444 
     | 
    
         
            -
                    "FieldLevelEncryptionId":{"shape":"string"}
         
     | 
| 
       1445 
     | 
    
         
            -
                  }
         
     | 
| 
       1446 
     | 
    
         
            -
                },
         
     | 
| 
       1447 
     | 
    
         
            -
                "DeleteCloudFrontOriginAccessIdentityRequest":{
         
     | 
| 
       1448 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1449 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1450 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1451 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1452 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1453 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1454 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1455 
     | 
    
         
            -
                    },
         
     | 
| 
       1456 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1457 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1458 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1459 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1460 
     | 
    
         
            -
                    }
         
     | 
| 
       1461 
     | 
    
         
            -
                  }
         
     | 
| 
       1462 
     | 
    
         
            -
                },
         
     | 
| 
       1463 
     | 
    
         
            -
                "DeleteDistributionRequest":{
         
     | 
| 
       1464 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1465 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1466 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1467 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1468 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1469 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1470 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1471 
     | 
    
         
            -
                    },
         
     | 
| 
       1472 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1473 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1474 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1475 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1476 
     | 
    
         
            -
                    }
         
     | 
| 
       1477 
     | 
    
         
            -
                  }
         
     | 
| 
       1478 
     | 
    
         
            -
                },
         
     | 
| 
       1479 
     | 
    
         
            -
                "DeleteFieldLevelEncryptionConfigRequest":{
         
     | 
| 
       1480 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1481 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1482 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1483 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1484 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1485 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1486 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1487 
     | 
    
         
            -
                    },
         
     | 
| 
       1488 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1489 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1490 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1491 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1492 
     | 
    
         
            -
                    }
         
     | 
| 
       1493 
     | 
    
         
            -
                  }
         
     | 
| 
       1494 
     | 
    
         
            -
                },
         
     | 
| 
       1495 
     | 
    
         
            -
                "DeleteFieldLevelEncryptionProfileRequest":{
         
     | 
| 
       1496 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1497 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1498 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1499 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1500 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1501 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1502 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1503 
     | 
    
         
            -
                    },
         
     | 
| 
       1504 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1505 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1506 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1507 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1508 
     | 
    
         
            -
                    }
         
     | 
| 
       1509 
     | 
    
         
            -
                  }
         
     | 
| 
       1510 
     | 
    
         
            -
                },
         
     | 
| 
       1511 
     | 
    
         
            -
                "DeletePublicKeyRequest":{
         
     | 
| 
       1512 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1513 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1514 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1515 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1516 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1517 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1518 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1519 
     | 
    
         
            -
                    },
         
     | 
| 
       1520 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1521 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1522 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1523 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1524 
     | 
    
         
            -
                    }
         
     | 
| 
       1525 
     | 
    
         
            -
                  }
         
     | 
| 
       1526 
     | 
    
         
            -
                },
         
     | 
| 
       1527 
     | 
    
         
            -
                "DeleteStreamingDistributionRequest":{
         
     | 
| 
       1528 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1529 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1530 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1531 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1532 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1533 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1534 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1535 
     | 
    
         
            -
                    },
         
     | 
| 
       1536 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       1537 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1538 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1539 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       1540 
     | 
    
         
            -
                    }
         
     | 
| 
       1541 
     | 
    
         
            -
                  }
         
     | 
| 
       1542 
     | 
    
         
            -
                },
         
     | 
| 
       1543 
     | 
    
         
            -
                "Distribution":{
         
     | 
| 
       1544 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1545 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1546 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1547 
     | 
    
         
            -
                    "ARN",
         
     | 
| 
       1548 
     | 
    
         
            -
                    "Status",
         
     | 
| 
       1549 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       1550 
     | 
    
         
            -
                    "InProgressInvalidationBatches",
         
     | 
| 
       1551 
     | 
    
         
            -
                    "DomainName",
         
     | 
| 
       1552 
     | 
    
         
            -
                    "ActiveTrustedSigners",
         
     | 
| 
       1553 
     | 
    
         
            -
                    "DistributionConfig"
         
     | 
| 
       1554 
     | 
    
         
            -
                  ],
         
     | 
| 
       1555 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1556 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1557 
     | 
    
         
            -
                    "ARN":{"shape":"string"},
         
     | 
| 
       1558 
     | 
    
         
            -
                    "Status":{"shape":"string"},
         
     | 
| 
       1559 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1560 
     | 
    
         
            -
                    "InProgressInvalidationBatches":{"shape":"integer"},
         
     | 
| 
       1561 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       1562 
     | 
    
         
            -
                    "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
         
     | 
| 
       1563 
     | 
    
         
            -
                    "DistributionConfig":{"shape":"DistributionConfig"}
         
     | 
| 
       1564 
     | 
    
         
            -
                  }
         
     | 
| 
       1565 
     | 
    
         
            -
                },
         
     | 
| 
       1566 
     | 
    
         
            -
                "DistributionAlreadyExists":{
         
     | 
| 
       1567 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1568 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1569 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1570 
     | 
    
         
            -
                  },
         
     | 
| 
       1571 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1572 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1573 
     | 
    
         
            -
                },
         
     | 
| 
       1574 
     | 
    
         
            -
                "DistributionConfig":{
         
     | 
| 
       1575 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1576 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1577 
     | 
    
         
            -
                    "CallerReference",
         
     | 
| 
       1578 
     | 
    
         
            -
                    "Origins",
         
     | 
| 
       1579 
     | 
    
         
            -
                    "DefaultCacheBehavior",
         
     | 
| 
       1580 
     | 
    
         
            -
                    "Comment",
         
     | 
| 
       1581 
     | 
    
         
            -
                    "Enabled"
         
     | 
| 
       1582 
     | 
    
         
            -
                  ],
         
     | 
| 
       1583 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1584 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       1585 
     | 
    
         
            -
                    "Aliases":{"shape":"Aliases"},
         
     | 
| 
       1586 
     | 
    
         
            -
                    "DefaultRootObject":{"shape":"string"},
         
     | 
| 
       1587 
     | 
    
         
            -
                    "Origins":{"shape":"Origins"},
         
     | 
| 
       1588 
     | 
    
         
            -
                    "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
         
     | 
| 
       1589 
     | 
    
         
            -
                    "CacheBehaviors":{"shape":"CacheBehaviors"},
         
     | 
| 
       1590 
     | 
    
         
            -
                    "CustomErrorResponses":{"shape":"CustomErrorResponses"},
         
     | 
| 
       1591 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       1592 
     | 
    
         
            -
                    "Logging":{"shape":"LoggingConfig"},
         
     | 
| 
       1593 
     | 
    
         
            -
                    "PriceClass":{"shape":"PriceClass"},
         
     | 
| 
       1594 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       1595 
     | 
    
         
            -
                    "ViewerCertificate":{"shape":"ViewerCertificate"},
         
     | 
| 
       1596 
     | 
    
         
            -
                    "Restrictions":{"shape":"Restrictions"},
         
     | 
| 
       1597 
     | 
    
         
            -
                    "WebACLId":{"shape":"string"},
         
     | 
| 
       1598 
     | 
    
         
            -
                    "HttpVersion":{"shape":"HttpVersion"},
         
     | 
| 
       1599 
     | 
    
         
            -
                    "IsIPV6Enabled":{"shape":"boolean"}
         
     | 
| 
       1600 
     | 
    
         
            -
                  }
         
     | 
| 
       1601 
     | 
    
         
            -
                },
         
     | 
| 
       1602 
     | 
    
         
            -
                "DistributionConfigWithTags":{
         
     | 
| 
       1603 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1604 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1605 
     | 
    
         
            -
                    "DistributionConfig",
         
     | 
| 
       1606 
     | 
    
         
            -
                    "Tags"
         
     | 
| 
       1607 
     | 
    
         
            -
                  ],
         
     | 
| 
       1608 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1609 
     | 
    
         
            -
                    "DistributionConfig":{"shape":"DistributionConfig"},
         
     | 
| 
       1610 
     | 
    
         
            -
                    "Tags":{"shape":"Tags"}
         
     | 
| 
       1611 
     | 
    
         
            -
                  }
         
     | 
| 
       1612 
     | 
    
         
            -
                },
         
     | 
| 
       1613 
     | 
    
         
            -
                "DistributionList":{
         
     | 
| 
       1614 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1615 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1616 
     | 
    
         
            -
                    "Marker",
         
     | 
| 
       1617 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       1618 
     | 
    
         
            -
                    "IsTruncated",
         
     | 
| 
       1619 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       1620 
     | 
    
         
            -
                  ],
         
     | 
| 
       1621 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1622 
     | 
    
         
            -
                    "Marker":{"shape":"string"},
         
     | 
| 
       1623 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       1624 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       1625 
     | 
    
         
            -
                    "IsTruncated":{"shape":"boolean"},
         
     | 
| 
       1626 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1627 
     | 
    
         
            -
                    "Items":{"shape":"DistributionSummaryList"}
         
     | 
| 
       1628 
     | 
    
         
            -
                  }
         
     | 
| 
       1629 
     | 
    
         
            -
                },
         
     | 
| 
       1630 
     | 
    
         
            -
                "DistributionNotDisabled":{
         
     | 
| 
       1631 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1632 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1633 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1634 
     | 
    
         
            -
                  },
         
     | 
| 
       1635 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1636 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1637 
     | 
    
         
            -
                },
         
     | 
| 
       1638 
     | 
    
         
            -
                "DistributionSummary":{
         
     | 
| 
       1639 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1640 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1641 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1642 
     | 
    
         
            -
                    "ARN",
         
     | 
| 
       1643 
     | 
    
         
            -
                    "Status",
         
     | 
| 
       1644 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       1645 
     | 
    
         
            -
                    "DomainName",
         
     | 
| 
       1646 
     | 
    
         
            -
                    "Aliases",
         
     | 
| 
       1647 
     | 
    
         
            -
                    "Origins",
         
     | 
| 
       1648 
     | 
    
         
            -
                    "DefaultCacheBehavior",
         
     | 
| 
       1649 
     | 
    
         
            -
                    "CacheBehaviors",
         
     | 
| 
       1650 
     | 
    
         
            -
                    "CustomErrorResponses",
         
     | 
| 
       1651 
     | 
    
         
            -
                    "Comment",
         
     | 
| 
       1652 
     | 
    
         
            -
                    "PriceClass",
         
     | 
| 
       1653 
     | 
    
         
            -
                    "Enabled",
         
     | 
| 
       1654 
     | 
    
         
            -
                    "ViewerCertificate",
         
     | 
| 
       1655 
     | 
    
         
            -
                    "Restrictions",
         
     | 
| 
       1656 
     | 
    
         
            -
                    "WebACLId",
         
     | 
| 
       1657 
     | 
    
         
            -
                    "HttpVersion",
         
     | 
| 
       1658 
     | 
    
         
            -
                    "IsIPV6Enabled"
         
     | 
| 
       1659 
     | 
    
         
            -
                  ],
         
     | 
| 
       1660 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1661 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1662 
     | 
    
         
            -
                    "ARN":{"shape":"string"},
         
     | 
| 
       1663 
     | 
    
         
            -
                    "Status":{"shape":"string"},
         
     | 
| 
       1664 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1665 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       1666 
     | 
    
         
            -
                    "Aliases":{"shape":"Aliases"},
         
     | 
| 
       1667 
     | 
    
         
            -
                    "Origins":{"shape":"Origins"},
         
     | 
| 
       1668 
     | 
    
         
            -
                    "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
         
     | 
| 
       1669 
     | 
    
         
            -
                    "CacheBehaviors":{"shape":"CacheBehaviors"},
         
     | 
| 
       1670 
     | 
    
         
            -
                    "CustomErrorResponses":{"shape":"CustomErrorResponses"},
         
     | 
| 
       1671 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       1672 
     | 
    
         
            -
                    "PriceClass":{"shape":"PriceClass"},
         
     | 
| 
       1673 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       1674 
     | 
    
         
            -
                    "ViewerCertificate":{"shape":"ViewerCertificate"},
         
     | 
| 
       1675 
     | 
    
         
            -
                    "Restrictions":{"shape":"Restrictions"},
         
     | 
| 
       1676 
     | 
    
         
            -
                    "WebACLId":{"shape":"string"},
         
     | 
| 
       1677 
     | 
    
         
            -
                    "HttpVersion":{"shape":"HttpVersion"},
         
     | 
| 
       1678 
     | 
    
         
            -
                    "IsIPV6Enabled":{"shape":"boolean"}
         
     | 
| 
       1679 
     | 
    
         
            -
                  }
         
     | 
| 
       1680 
     | 
    
         
            -
                },
         
     | 
| 
       1681 
     | 
    
         
            -
                "DistributionSummaryList":{
         
     | 
| 
       1682 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1683 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1684 
     | 
    
         
            -
                    "shape":"DistributionSummary",
         
     | 
| 
       1685 
     | 
    
         
            -
                    "locationName":"DistributionSummary"
         
     | 
| 
       1686 
     | 
    
         
            -
                  }
         
     | 
| 
       1687 
     | 
    
         
            -
                },
         
     | 
| 
       1688 
     | 
    
         
            -
                "EncryptionEntities":{
         
     | 
| 
       1689 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1690 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1691 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1692 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1693 
     | 
    
         
            -
                    "Items":{"shape":"EncryptionEntityList"}
         
     | 
| 
       1694 
     | 
    
         
            -
                  }
         
     | 
| 
       1695 
     | 
    
         
            -
                },
         
     | 
| 
       1696 
     | 
    
         
            -
                "EncryptionEntity":{
         
     | 
| 
       1697 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1698 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1699 
     | 
    
         
            -
                    "PublicKeyId",
         
     | 
| 
       1700 
     | 
    
         
            -
                    "ProviderId",
         
     | 
| 
       1701 
     | 
    
         
            -
                    "FieldPatterns"
         
     | 
| 
       1702 
     | 
    
         
            -
                  ],
         
     | 
| 
       1703 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1704 
     | 
    
         
            -
                    "PublicKeyId":{"shape":"string"},
         
     | 
| 
       1705 
     | 
    
         
            -
                    "ProviderId":{"shape":"string"},
         
     | 
| 
       1706 
     | 
    
         
            -
                    "FieldPatterns":{"shape":"FieldPatterns"}
         
     | 
| 
       1707 
     | 
    
         
            -
                  }
         
     | 
| 
       1708 
     | 
    
         
            -
                },
         
     | 
| 
       1709 
     | 
    
         
            -
                "EncryptionEntityList":{
         
     | 
| 
       1710 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1711 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1712 
     | 
    
         
            -
                    "shape":"EncryptionEntity",
         
     | 
| 
       1713 
     | 
    
         
            -
                    "locationName":"EncryptionEntity"
         
     | 
| 
       1714 
     | 
    
         
            -
                  }
         
     | 
| 
       1715 
     | 
    
         
            -
                },
         
     | 
| 
       1716 
     | 
    
         
            -
                "EventType":{
         
     | 
| 
       1717 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       1718 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       1719 
     | 
    
         
            -
                    "viewer-request",
         
     | 
| 
       1720 
     | 
    
         
            -
                    "viewer-response",
         
     | 
| 
       1721 
     | 
    
         
            -
                    "origin-request",
         
     | 
| 
       1722 
     | 
    
         
            -
                    "origin-response"
         
     | 
| 
       1723 
     | 
    
         
            -
                  ]
         
     | 
| 
       1724 
     | 
    
         
            -
                },
         
     | 
| 
       1725 
     | 
    
         
            -
                "FieldLevelEncryption":{
         
     | 
| 
       1726 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1727 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1728 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1729 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       1730 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig"
         
     | 
| 
       1731 
     | 
    
         
            -
                  ],
         
     | 
| 
       1732 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1733 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1734 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1735 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"}
         
     | 
| 
       1736 
     | 
    
         
            -
                  }
         
     | 
| 
       1737 
     | 
    
         
            -
                },
         
     | 
| 
       1738 
     | 
    
         
            -
                "FieldLevelEncryptionConfig":{
         
     | 
| 
       1739 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1740 
     | 
    
         
            -
                  "required":["CallerReference"],
         
     | 
| 
       1741 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1742 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       1743 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       1744 
     | 
    
         
            -
                    "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
         
     | 
| 
       1745 
     | 
    
         
            -
                    "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
         
     | 
| 
       1746 
     | 
    
         
            -
                  }
         
     | 
| 
       1747 
     | 
    
         
            -
                },
         
     | 
| 
       1748 
     | 
    
         
            -
                "FieldLevelEncryptionConfigAlreadyExists":{
         
     | 
| 
       1749 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1750 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1751 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1752 
     | 
    
         
            -
                  },
         
     | 
| 
       1753 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1754 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1755 
     | 
    
         
            -
                },
         
     | 
| 
       1756 
     | 
    
         
            -
                "FieldLevelEncryptionConfigInUse":{
         
     | 
| 
       1757 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1758 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1759 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1760 
     | 
    
         
            -
                  },
         
     | 
| 
       1761 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1762 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1763 
     | 
    
         
            -
                },
         
     | 
| 
       1764 
     | 
    
         
            -
                "FieldLevelEncryptionList":{
         
     | 
| 
       1765 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1766 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1767 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       1768 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       1769 
     | 
    
         
            -
                  ],
         
     | 
| 
       1770 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1771 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       1772 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       1773 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1774 
     | 
    
         
            -
                    "Items":{"shape":"FieldLevelEncryptionSummaryList"}
         
     | 
| 
       1775 
     | 
    
         
            -
                  }
         
     | 
| 
       1776 
     | 
    
         
            -
                },
         
     | 
| 
       1777 
     | 
    
         
            -
                "FieldLevelEncryptionProfile":{
         
     | 
| 
       1778 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1779 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1780 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1781 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       1782 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig"
         
     | 
| 
       1783 
     | 
    
         
            -
                  ],
         
     | 
| 
       1784 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1785 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1786 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1787 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"}
         
     | 
| 
       1788 
     | 
    
         
            -
                  }
         
     | 
| 
       1789 
     | 
    
         
            -
                },
         
     | 
| 
       1790 
     | 
    
         
            -
                "FieldLevelEncryptionProfileAlreadyExists":{
         
     | 
| 
       1791 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1792 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1793 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1794 
     | 
    
         
            -
                  },
         
     | 
| 
       1795 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1796 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1797 
     | 
    
         
            -
                },
         
     | 
| 
       1798 
     | 
    
         
            -
                "FieldLevelEncryptionProfileConfig":{
         
     | 
| 
       1799 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1800 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1801 
     | 
    
         
            -
                    "Name",
         
     | 
| 
       1802 
     | 
    
         
            -
                    "CallerReference",
         
     | 
| 
       1803 
     | 
    
         
            -
                    "EncryptionEntities"
         
     | 
| 
       1804 
     | 
    
         
            -
                  ],
         
     | 
| 
       1805 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1806 
     | 
    
         
            -
                    "Name":{"shape":"string"},
         
     | 
| 
       1807 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       1808 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       1809 
     | 
    
         
            -
                    "EncryptionEntities":{"shape":"EncryptionEntities"}
         
     | 
| 
       1810 
     | 
    
         
            -
                  }
         
     | 
| 
       1811 
     | 
    
         
            -
                },
         
     | 
| 
       1812 
     | 
    
         
            -
                "FieldLevelEncryptionProfileInUse":{
         
     | 
| 
       1813 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1814 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1815 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1816 
     | 
    
         
            -
                  },
         
     | 
| 
       1817 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       1818 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1819 
     | 
    
         
            -
                },
         
     | 
| 
       1820 
     | 
    
         
            -
                "FieldLevelEncryptionProfileList":{
         
     | 
| 
       1821 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1822 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1823 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       1824 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       1825 
     | 
    
         
            -
                  ],
         
     | 
| 
       1826 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1827 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       1828 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       1829 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1830 
     | 
    
         
            -
                    "Items":{"shape":"FieldLevelEncryptionProfileSummaryList"}
         
     | 
| 
       1831 
     | 
    
         
            -
                  }
         
     | 
| 
       1832 
     | 
    
         
            -
                },
         
     | 
| 
       1833 
     | 
    
         
            -
                "FieldLevelEncryptionProfileSizeExceeded":{
         
     | 
| 
       1834 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1835 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1836 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       1837 
     | 
    
         
            -
                  },
         
     | 
| 
       1838 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       1839 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       1840 
     | 
    
         
            -
                },
         
     | 
| 
       1841 
     | 
    
         
            -
                "FieldLevelEncryptionProfileSummary":{
         
     | 
| 
       1842 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1843 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1844 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1845 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       1846 
     | 
    
         
            -
                    "Name",
         
     | 
| 
       1847 
     | 
    
         
            -
                    "EncryptionEntities"
         
     | 
| 
       1848 
     | 
    
         
            -
                  ],
         
     | 
| 
       1849 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1850 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1851 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1852 
     | 
    
         
            -
                    "Name":{"shape":"string"},
         
     | 
| 
       1853 
     | 
    
         
            -
                    "EncryptionEntities":{"shape":"EncryptionEntities"},
         
     | 
| 
       1854 
     | 
    
         
            -
                    "Comment":{"shape":"string"}
         
     | 
| 
       1855 
     | 
    
         
            -
                  }
         
     | 
| 
       1856 
     | 
    
         
            -
                },
         
     | 
| 
       1857 
     | 
    
         
            -
                "FieldLevelEncryptionProfileSummaryList":{
         
     | 
| 
       1858 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1859 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1860 
     | 
    
         
            -
                    "shape":"FieldLevelEncryptionProfileSummary",
         
     | 
| 
       1861 
     | 
    
         
            -
                    "locationName":"FieldLevelEncryptionProfileSummary"
         
     | 
| 
       1862 
     | 
    
         
            -
                  }
         
     | 
| 
       1863 
     | 
    
         
            -
                },
         
     | 
| 
       1864 
     | 
    
         
            -
                "FieldLevelEncryptionSummary":{
         
     | 
| 
       1865 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1866 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1867 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       1868 
     | 
    
         
            -
                    "LastModifiedTime"
         
     | 
| 
       1869 
     | 
    
         
            -
                  ],
         
     | 
| 
       1870 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1871 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       1872 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       1873 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       1874 
     | 
    
         
            -
                    "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
         
     | 
| 
       1875 
     | 
    
         
            -
                    "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
         
     | 
| 
       1876 
     | 
    
         
            -
                  }
         
     | 
| 
       1877 
     | 
    
         
            -
                },
         
     | 
| 
       1878 
     | 
    
         
            -
                "FieldLevelEncryptionSummaryList":{
         
     | 
| 
       1879 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1880 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1881 
     | 
    
         
            -
                    "shape":"FieldLevelEncryptionSummary",
         
     | 
| 
       1882 
     | 
    
         
            -
                    "locationName":"FieldLevelEncryptionSummary"
         
     | 
| 
       1883 
     | 
    
         
            -
                  }
         
     | 
| 
       1884 
     | 
    
         
            -
                },
         
     | 
| 
       1885 
     | 
    
         
            -
                "FieldPatternList":{
         
     | 
| 
       1886 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       1887 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       1888 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       1889 
     | 
    
         
            -
                    "locationName":"FieldPattern"
         
     | 
| 
       1890 
     | 
    
         
            -
                  }
         
     | 
| 
       1891 
     | 
    
         
            -
                },
         
     | 
| 
       1892 
     | 
    
         
            -
                "FieldPatterns":{
         
     | 
| 
       1893 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1894 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       1895 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1896 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1897 
     | 
    
         
            -
                    "Items":{"shape":"FieldPatternList"}
         
     | 
| 
       1898 
     | 
    
         
            -
                  }
         
     | 
| 
       1899 
     | 
    
         
            -
                },
         
     | 
| 
       1900 
     | 
    
         
            -
                "Format":{
         
     | 
| 
       1901 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       1902 
     | 
    
         
            -
                  "enum":["URLEncoded"]
         
     | 
| 
       1903 
     | 
    
         
            -
                },
         
     | 
| 
       1904 
     | 
    
         
            -
                "ForwardedValues":{
         
     | 
| 
       1905 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1906 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1907 
     | 
    
         
            -
                    "QueryString",
         
     | 
| 
       1908 
     | 
    
         
            -
                    "Cookies"
         
     | 
| 
       1909 
     | 
    
         
            -
                  ],
         
     | 
| 
       1910 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1911 
     | 
    
         
            -
                    "QueryString":{"shape":"boolean"},
         
     | 
| 
       1912 
     | 
    
         
            -
                    "Cookies":{"shape":"CookiePreference"},
         
     | 
| 
       1913 
     | 
    
         
            -
                    "Headers":{"shape":"Headers"},
         
     | 
| 
       1914 
     | 
    
         
            -
                    "QueryStringCacheKeys":{"shape":"QueryStringCacheKeys"}
         
     | 
| 
       1915 
     | 
    
         
            -
                  }
         
     | 
| 
       1916 
     | 
    
         
            -
                },
         
     | 
| 
       1917 
     | 
    
         
            -
                "GeoRestriction":{
         
     | 
| 
       1918 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1919 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       1920 
     | 
    
         
            -
                    "RestrictionType",
         
     | 
| 
       1921 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       1922 
     | 
    
         
            -
                  ],
         
     | 
| 
       1923 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1924 
     | 
    
         
            -
                    "RestrictionType":{"shape":"GeoRestrictionType"},
         
     | 
| 
       1925 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       1926 
     | 
    
         
            -
                    "Items":{"shape":"LocationList"}
         
     | 
| 
       1927 
     | 
    
         
            -
                  }
         
     | 
| 
       1928 
     | 
    
         
            -
                },
         
     | 
| 
       1929 
     | 
    
         
            -
                "GeoRestrictionType":{
         
     | 
| 
       1930 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       1931 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       1932 
     | 
    
         
            -
                    "blacklist",
         
     | 
| 
       1933 
     | 
    
         
            -
                    "whitelist",
         
     | 
| 
       1934 
     | 
    
         
            -
                    "none"
         
     | 
| 
       1935 
     | 
    
         
            -
                  ]
         
     | 
| 
       1936 
     | 
    
         
            -
                },
         
     | 
| 
       1937 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityConfigRequest":{
         
     | 
| 
       1938 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1939 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1940 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1941 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1942 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1943 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1944 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1945 
     | 
    
         
            -
                    }
         
     | 
| 
       1946 
     | 
    
         
            -
                  }
         
     | 
| 
       1947 
     | 
    
         
            -
                },
         
     | 
| 
       1948 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityConfigResult":{
         
     | 
| 
       1949 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1950 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1951 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
         
     | 
| 
       1952 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1953 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1954 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1955 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1956 
     | 
    
         
            -
                    }
         
     | 
| 
       1957 
     | 
    
         
            -
                  },
         
     | 
| 
       1958 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentityConfig"
         
     | 
| 
       1959 
     | 
    
         
            -
                },
         
     | 
| 
       1960 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityRequest":{
         
     | 
| 
       1961 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1962 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1963 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1964 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1965 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1966 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1967 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1968 
     | 
    
         
            -
                    }
         
     | 
| 
       1969 
     | 
    
         
            -
                  }
         
     | 
| 
       1970 
     | 
    
         
            -
                },
         
     | 
| 
       1971 
     | 
    
         
            -
                "GetCloudFrontOriginAccessIdentityResult":{
         
     | 
| 
       1972 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1973 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1974 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
         
     | 
| 
       1975 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1976 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1977 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       1978 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       1979 
     | 
    
         
            -
                    }
         
     | 
| 
       1980 
     | 
    
         
            -
                  },
         
     | 
| 
       1981 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentity"
         
     | 
| 
       1982 
     | 
    
         
            -
                },
         
     | 
| 
       1983 
     | 
    
         
            -
                "GetDistributionConfigRequest":{
         
     | 
| 
       1984 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1985 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       1986 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1987 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       1988 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       1989 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       1990 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       1991 
     | 
    
         
            -
                    }
         
     | 
| 
       1992 
     | 
    
         
            -
                  }
         
     | 
| 
       1993 
     | 
    
         
            -
                },
         
     | 
| 
       1994 
     | 
    
         
            -
                "GetDistributionConfigResult":{
         
     | 
| 
       1995 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       1996 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       1997 
     | 
    
         
            -
                    "DistributionConfig":{"shape":"DistributionConfig"},
         
     | 
| 
       1998 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       1999 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2000 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2001 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2002 
     | 
    
         
            -
                    }
         
     | 
| 
       2003 
     | 
    
         
            -
                  },
         
     | 
| 
       2004 
     | 
    
         
            -
                  "payload":"DistributionConfig"
         
     | 
| 
       2005 
     | 
    
         
            -
                },
         
     | 
| 
       2006 
     | 
    
         
            -
                "GetDistributionRequest":{
         
     | 
| 
       2007 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2008 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2009 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2010 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2011 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2012 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2013 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2014 
     | 
    
         
            -
                    }
         
     | 
| 
       2015 
     | 
    
         
            -
                  }
         
     | 
| 
       2016 
     | 
    
         
            -
                },
         
     | 
| 
       2017 
     | 
    
         
            -
                "GetDistributionResult":{
         
     | 
| 
       2018 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2019 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2020 
     | 
    
         
            -
                    "Distribution":{"shape":"Distribution"},
         
     | 
| 
       2021 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2022 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2023 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2024 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2025 
     | 
    
         
            -
                    }
         
     | 
| 
       2026 
     | 
    
         
            -
                  },
         
     | 
| 
       2027 
     | 
    
         
            -
                  "payload":"Distribution"
         
     | 
| 
       2028 
     | 
    
         
            -
                },
         
     | 
| 
       2029 
     | 
    
         
            -
                "GetFieldLevelEncryptionConfigRequest":{
         
     | 
| 
       2030 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2031 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2032 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2033 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2034 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2035 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2036 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2037 
     | 
    
         
            -
                    }
         
     | 
| 
       2038 
     | 
    
         
            -
                  }
         
     | 
| 
       2039 
     | 
    
         
            -
                },
         
     | 
| 
       2040 
     | 
    
         
            -
                "GetFieldLevelEncryptionConfigResult":{
         
     | 
| 
       2041 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2042 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2043 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"},
         
     | 
| 
       2044 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2045 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2046 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2047 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2048 
     | 
    
         
            -
                    }
         
     | 
| 
       2049 
     | 
    
         
            -
                  },
         
     | 
| 
       2050 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionConfig"
         
     | 
| 
       2051 
     | 
    
         
            -
                },
         
     | 
| 
       2052 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfileConfigRequest":{
         
     | 
| 
       2053 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2054 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2055 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2056 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2057 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2058 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2059 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2060 
     | 
    
         
            -
                    }
         
     | 
| 
       2061 
     | 
    
         
            -
                  }
         
     | 
| 
       2062 
     | 
    
         
            -
                },
         
     | 
| 
       2063 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfileConfigResult":{
         
     | 
| 
       2064 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2065 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2066 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"},
         
     | 
| 
       2067 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2068 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2069 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2070 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2071 
     | 
    
         
            -
                    }
         
     | 
| 
       2072 
     | 
    
         
            -
                  },
         
     | 
| 
       2073 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfileConfig"
         
     | 
| 
       2074 
     | 
    
         
            -
                },
         
     | 
| 
       2075 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfileRequest":{
         
     | 
| 
       2076 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2077 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2078 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2079 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2080 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2081 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2082 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2083 
     | 
    
         
            -
                    }
         
     | 
| 
       2084 
     | 
    
         
            -
                  }
         
     | 
| 
       2085 
     | 
    
         
            -
                },
         
     | 
| 
       2086 
     | 
    
         
            -
                "GetFieldLevelEncryptionProfileResult":{
         
     | 
| 
       2087 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2088 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2089 
     | 
    
         
            -
                    "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
         
     | 
| 
       2090 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2091 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2092 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2093 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2094 
     | 
    
         
            -
                    }
         
     | 
| 
       2095 
     | 
    
         
            -
                  },
         
     | 
| 
       2096 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfile"
         
     | 
| 
       2097 
     | 
    
         
            -
                },
         
     | 
| 
       2098 
     | 
    
         
            -
                "GetFieldLevelEncryptionRequest":{
         
     | 
| 
       2099 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2100 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2101 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2102 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2103 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2104 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2105 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2106 
     | 
    
         
            -
                    }
         
     | 
| 
       2107 
     | 
    
         
            -
                  }
         
     | 
| 
       2108 
     | 
    
         
            -
                },
         
     | 
| 
       2109 
     | 
    
         
            -
                "GetFieldLevelEncryptionResult":{
         
     | 
| 
       2110 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2111 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2112 
     | 
    
         
            -
                    "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
         
     | 
| 
       2113 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2114 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2115 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2116 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2117 
     | 
    
         
            -
                    }
         
     | 
| 
       2118 
     | 
    
         
            -
                  },
         
     | 
| 
       2119 
     | 
    
         
            -
                  "payload":"FieldLevelEncryption"
         
     | 
| 
       2120 
     | 
    
         
            -
                },
         
     | 
| 
       2121 
     | 
    
         
            -
                "GetInvalidationRequest":{
         
     | 
| 
       2122 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2123 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2124 
     | 
    
         
            -
                    "DistributionId",
         
     | 
| 
       2125 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       2126 
     | 
    
         
            -
                  ],
         
     | 
| 
       2127 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2128 
     | 
    
         
            -
                    "DistributionId":{
         
     | 
| 
       2129 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2130 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2131 
     | 
    
         
            -
                      "locationName":"DistributionId"
         
     | 
| 
       2132 
     | 
    
         
            -
                    },
         
     | 
| 
       2133 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2134 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2135 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2136 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2137 
     | 
    
         
            -
                    }
         
     | 
| 
       2138 
     | 
    
         
            -
                  }
         
     | 
| 
       2139 
     | 
    
         
            -
                },
         
     | 
| 
       2140 
     | 
    
         
            -
                "GetInvalidationResult":{
         
     | 
| 
       2141 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2142 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2143 
     | 
    
         
            -
                    "Invalidation":{"shape":"Invalidation"}
         
     | 
| 
       2144 
     | 
    
         
            -
                  },
         
     | 
| 
       2145 
     | 
    
         
            -
                  "payload":"Invalidation"
         
     | 
| 
       2146 
     | 
    
         
            -
                },
         
     | 
| 
       2147 
     | 
    
         
            -
                "GetPublicKeyConfigRequest":{
         
     | 
| 
       2148 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2149 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2150 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2151 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2152 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2153 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2154 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2155 
     | 
    
         
            -
                    }
         
     | 
| 
       2156 
     | 
    
         
            -
                  }
         
     | 
| 
       2157 
     | 
    
         
            -
                },
         
     | 
| 
       2158 
     | 
    
         
            -
                "GetPublicKeyConfigResult":{
         
     | 
| 
       2159 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2160 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2161 
     | 
    
         
            -
                    "PublicKeyConfig":{"shape":"PublicKeyConfig"},
         
     | 
| 
       2162 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2163 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2164 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2165 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2166 
     | 
    
         
            -
                    }
         
     | 
| 
       2167 
     | 
    
         
            -
                  },
         
     | 
| 
       2168 
     | 
    
         
            -
                  "payload":"PublicKeyConfig"
         
     | 
| 
       2169 
     | 
    
         
            -
                },
         
     | 
| 
       2170 
     | 
    
         
            -
                "GetPublicKeyRequest":{
         
     | 
| 
       2171 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2172 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2173 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2174 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2175 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2176 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2177 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2178 
     | 
    
         
            -
                    }
         
     | 
| 
       2179 
     | 
    
         
            -
                  }
         
     | 
| 
       2180 
     | 
    
         
            -
                },
         
     | 
| 
       2181 
     | 
    
         
            -
                "GetPublicKeyResult":{
         
     | 
| 
       2182 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2183 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2184 
     | 
    
         
            -
                    "PublicKey":{"shape":"PublicKey"},
         
     | 
| 
       2185 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2186 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2187 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2188 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2189 
     | 
    
         
            -
                    }
         
     | 
| 
       2190 
     | 
    
         
            -
                  },
         
     | 
| 
       2191 
     | 
    
         
            -
                  "payload":"PublicKey"
         
     | 
| 
       2192 
     | 
    
         
            -
                },
         
     | 
| 
       2193 
     | 
    
         
            -
                "GetStreamingDistributionConfigRequest":{
         
     | 
| 
       2194 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2195 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2196 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2197 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2198 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2199 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2200 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2201 
     | 
    
         
            -
                    }
         
     | 
| 
       2202 
     | 
    
         
            -
                  }
         
     | 
| 
       2203 
     | 
    
         
            -
                },
         
     | 
| 
       2204 
     | 
    
         
            -
                "GetStreamingDistributionConfigResult":{
         
     | 
| 
       2205 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2206 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2207 
     | 
    
         
            -
                    "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
         
     | 
| 
       2208 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2209 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2210 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2211 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2212 
     | 
    
         
            -
                    }
         
     | 
| 
       2213 
     | 
    
         
            -
                  },
         
     | 
| 
       2214 
     | 
    
         
            -
                  "payload":"StreamingDistributionConfig"
         
     | 
| 
       2215 
     | 
    
         
            -
                },
         
     | 
| 
       2216 
     | 
    
         
            -
                "GetStreamingDistributionRequest":{
         
     | 
| 
       2217 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2218 
     | 
    
         
            -
                  "required":["Id"],
         
     | 
| 
       2219 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2220 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       2221 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2222 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2223 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       2224 
     | 
    
         
            -
                    }
         
     | 
| 
       2225 
     | 
    
         
            -
                  }
         
     | 
| 
       2226 
     | 
    
         
            -
                },
         
     | 
| 
       2227 
     | 
    
         
            -
                "GetStreamingDistributionResult":{
         
     | 
| 
       2228 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2229 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2230 
     | 
    
         
            -
                    "StreamingDistribution":{"shape":"StreamingDistribution"},
         
     | 
| 
       2231 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       2232 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2233 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       2234 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       2235 
     | 
    
         
            -
                    }
         
     | 
| 
       2236 
     | 
    
         
            -
                  },
         
     | 
| 
       2237 
     | 
    
         
            -
                  "payload":"StreamingDistribution"
         
     | 
| 
       2238 
     | 
    
         
            -
                },
         
     | 
| 
       2239 
     | 
    
         
            -
                "HeaderList":{
         
     | 
| 
       2240 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2241 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2242 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       2243 
     | 
    
         
            -
                    "locationName":"Name"
         
     | 
| 
       2244 
     | 
    
         
            -
                  }
         
     | 
| 
       2245 
     | 
    
         
            -
                },
         
     | 
| 
       2246 
     | 
    
         
            -
                "Headers":{
         
     | 
| 
       2247 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2248 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       2249 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2250 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2251 
     | 
    
         
            -
                    "Items":{"shape":"HeaderList"}
         
     | 
| 
       2252 
     | 
    
         
            -
                  }
         
     | 
| 
       2253 
     | 
    
         
            -
                },
         
     | 
| 
       2254 
     | 
    
         
            -
                "HttpVersion":{
         
     | 
| 
       2255 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       2256 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       2257 
     | 
    
         
            -
                    "http1.1",
         
     | 
| 
       2258 
     | 
    
         
            -
                    "http2"
         
     | 
| 
       2259 
     | 
    
         
            -
                  ]
         
     | 
| 
       2260 
     | 
    
         
            -
                },
         
     | 
| 
       2261 
     | 
    
         
            -
                "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior":{
         
     | 
| 
       2262 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2263 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2264 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2265 
     | 
    
         
            -
                  },
         
     | 
| 
       2266 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2267 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2268 
     | 
    
         
            -
                },
         
     | 
| 
       2269 
     | 
    
         
            -
                "IllegalUpdate":{
         
     | 
| 
       2270 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2271 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2272 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2273 
     | 
    
         
            -
                  },
         
     | 
| 
       2274 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2275 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2276 
     | 
    
         
            -
                },
         
     | 
| 
       2277 
     | 
    
         
            -
                "InconsistentQuantities":{
         
     | 
| 
       2278 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2279 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2280 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2281 
     | 
    
         
            -
                  },
         
     | 
| 
       2282 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2283 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2284 
     | 
    
         
            -
                },
         
     | 
| 
       2285 
     | 
    
         
            -
                "InvalidArgument":{
         
     | 
| 
       2286 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2287 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2288 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2289 
     | 
    
         
            -
                  },
         
     | 
| 
       2290 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2291 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2292 
     | 
    
         
            -
                },
         
     | 
| 
       2293 
     | 
    
         
            -
                "InvalidDefaultRootObject":{
         
     | 
| 
       2294 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2295 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2296 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2297 
     | 
    
         
            -
                  },
         
     | 
| 
       2298 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2299 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2300 
     | 
    
         
            -
                },
         
     | 
| 
       2301 
     | 
    
         
            -
                "InvalidErrorCode":{
         
     | 
| 
       2302 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2303 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2304 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2305 
     | 
    
         
            -
                  },
         
     | 
| 
       2306 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2307 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2308 
     | 
    
         
            -
                },
         
     | 
| 
       2309 
     | 
    
         
            -
                "InvalidForwardCookies":{
         
     | 
| 
       2310 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2311 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2312 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2313 
     | 
    
         
            -
                  },
         
     | 
| 
       2314 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2315 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2316 
     | 
    
         
            -
                },
         
     | 
| 
       2317 
     | 
    
         
            -
                "InvalidGeoRestrictionParameter":{
         
     | 
| 
       2318 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2319 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2320 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2321 
     | 
    
         
            -
                  },
         
     | 
| 
       2322 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2323 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2324 
     | 
    
         
            -
                },
         
     | 
| 
       2325 
     | 
    
         
            -
                "InvalidHeadersForS3Origin":{
         
     | 
| 
       2326 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2327 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2328 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2329 
     | 
    
         
            -
                  },
         
     | 
| 
       2330 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2331 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2332 
     | 
    
         
            -
                },
         
     | 
| 
       2333 
     | 
    
         
            -
                "InvalidIfMatchVersion":{
         
     | 
| 
       2334 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2335 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2336 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2337 
     | 
    
         
            -
                  },
         
     | 
| 
       2338 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2339 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2340 
     | 
    
         
            -
                },
         
     | 
| 
       2341 
     | 
    
         
            -
                "InvalidLambdaFunctionAssociation":{
         
     | 
| 
       2342 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2343 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2344 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2345 
     | 
    
         
            -
                  },
         
     | 
| 
       2346 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2347 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2348 
     | 
    
         
            -
                },
         
     | 
| 
       2349 
     | 
    
         
            -
                "InvalidLocationCode":{
         
     | 
| 
       2350 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2351 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2352 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2353 
     | 
    
         
            -
                  },
         
     | 
| 
       2354 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2355 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2356 
     | 
    
         
            -
                },
         
     | 
| 
       2357 
     | 
    
         
            -
                "InvalidMinimumProtocolVersion":{
         
     | 
| 
       2358 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2359 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2360 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2361 
     | 
    
         
            -
                  },
         
     | 
| 
       2362 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2363 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2364 
     | 
    
         
            -
                },
         
     | 
| 
       2365 
     | 
    
         
            -
                "InvalidOrigin":{
         
     | 
| 
       2366 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2367 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2368 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2369 
     | 
    
         
            -
                  },
         
     | 
| 
       2370 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2371 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2372 
     | 
    
         
            -
                },
         
     | 
| 
       2373 
     | 
    
         
            -
                "InvalidOriginAccessIdentity":{
         
     | 
| 
       2374 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2375 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2376 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2377 
     | 
    
         
            -
                  },
         
     | 
| 
       2378 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2379 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2380 
     | 
    
         
            -
                },
         
     | 
| 
       2381 
     | 
    
         
            -
                "InvalidOriginKeepaliveTimeout":{
         
     | 
| 
       2382 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2383 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2384 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2385 
     | 
    
         
            -
                  },
         
     | 
| 
       2386 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2387 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2388 
     | 
    
         
            -
                },
         
     | 
| 
       2389 
     | 
    
         
            -
                "InvalidOriginReadTimeout":{
         
     | 
| 
       2390 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2391 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2392 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2393 
     | 
    
         
            -
                  },
         
     | 
| 
       2394 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2395 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2396 
     | 
    
         
            -
                },
         
     | 
| 
       2397 
     | 
    
         
            -
                "InvalidProtocolSettings":{
         
     | 
| 
       2398 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2399 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2400 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2401 
     | 
    
         
            -
                  },
         
     | 
| 
       2402 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2403 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2404 
     | 
    
         
            -
                },
         
     | 
| 
       2405 
     | 
    
         
            -
                "InvalidQueryStringParameters":{
         
     | 
| 
       2406 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2407 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2408 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2409 
     | 
    
         
            -
                  },
         
     | 
| 
       2410 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2411 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2412 
     | 
    
         
            -
                },
         
     | 
| 
       2413 
     | 
    
         
            -
                "InvalidRelativePath":{
         
     | 
| 
       2414 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2415 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2416 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2417 
     | 
    
         
            -
                  },
         
     | 
| 
       2418 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2419 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2420 
     | 
    
         
            -
                },
         
     | 
| 
       2421 
     | 
    
         
            -
                "InvalidRequiredProtocol":{
         
     | 
| 
       2422 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2423 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2424 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2425 
     | 
    
         
            -
                  },
         
     | 
| 
       2426 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2427 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2428 
     | 
    
         
            -
                },
         
     | 
| 
       2429 
     | 
    
         
            -
                "InvalidResponseCode":{
         
     | 
| 
       2430 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2431 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2432 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2433 
     | 
    
         
            -
                  },
         
     | 
| 
       2434 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2435 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2436 
     | 
    
         
            -
                },
         
     | 
| 
       2437 
     | 
    
         
            -
                "InvalidTTLOrder":{
         
     | 
| 
       2438 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2439 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2440 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2441 
     | 
    
         
            -
                  },
         
     | 
| 
       2442 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2443 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2444 
     | 
    
         
            -
                },
         
     | 
| 
       2445 
     | 
    
         
            -
                "InvalidTagging":{
         
     | 
| 
       2446 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2447 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2448 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2449 
     | 
    
         
            -
                  },
         
     | 
| 
       2450 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2451 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2452 
     | 
    
         
            -
                },
         
     | 
| 
       2453 
     | 
    
         
            -
                "InvalidViewerCertificate":{
         
     | 
| 
       2454 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2455 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2456 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2457 
     | 
    
         
            -
                  },
         
     | 
| 
       2458 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2459 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2460 
     | 
    
         
            -
                },
         
     | 
| 
       2461 
     | 
    
         
            -
                "InvalidWebACLId":{
         
     | 
| 
       2462 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2463 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2464 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2465 
     | 
    
         
            -
                  },
         
     | 
| 
       2466 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2467 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2468 
     | 
    
         
            -
                },
         
     | 
| 
       2469 
     | 
    
         
            -
                "Invalidation":{
         
     | 
| 
       2470 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2471 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2472 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       2473 
     | 
    
         
            -
                    "Status",
         
     | 
| 
       2474 
     | 
    
         
            -
                    "CreateTime",
         
     | 
| 
       2475 
     | 
    
         
            -
                    "InvalidationBatch"
         
     | 
| 
       2476 
     | 
    
         
            -
                  ],
         
     | 
| 
       2477 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2478 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       2479 
     | 
    
         
            -
                    "Status":{"shape":"string"},
         
     | 
| 
       2480 
     | 
    
         
            -
                    "CreateTime":{"shape":"timestamp"},
         
     | 
| 
       2481 
     | 
    
         
            -
                    "InvalidationBatch":{"shape":"InvalidationBatch"}
         
     | 
| 
       2482 
     | 
    
         
            -
                  }
         
     | 
| 
       2483 
     | 
    
         
            -
                },
         
     | 
| 
       2484 
     | 
    
         
            -
                "InvalidationBatch":{
         
     | 
| 
       2485 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2486 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2487 
     | 
    
         
            -
                    "Paths",
         
     | 
| 
       2488 
     | 
    
         
            -
                    "CallerReference"
         
     | 
| 
       2489 
     | 
    
         
            -
                  ],
         
     | 
| 
       2490 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2491 
     | 
    
         
            -
                    "Paths":{"shape":"Paths"},
         
     | 
| 
       2492 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"}
         
     | 
| 
       2493 
     | 
    
         
            -
                  }
         
     | 
| 
       2494 
     | 
    
         
            -
                },
         
     | 
| 
       2495 
     | 
    
         
            -
                "InvalidationList":{
         
     | 
| 
       2496 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2497 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2498 
     | 
    
         
            -
                    "Marker",
         
     | 
| 
       2499 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       2500 
     | 
    
         
            -
                    "IsTruncated",
         
     | 
| 
       2501 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       2502 
     | 
    
         
            -
                  ],
         
     | 
| 
       2503 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2504 
     | 
    
         
            -
                    "Marker":{"shape":"string"},
         
     | 
| 
       2505 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       2506 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       2507 
     | 
    
         
            -
                    "IsTruncated":{"shape":"boolean"},
         
     | 
| 
       2508 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2509 
     | 
    
         
            -
                    "Items":{"shape":"InvalidationSummaryList"}
         
     | 
| 
       2510 
     | 
    
         
            -
                  }
         
     | 
| 
       2511 
     | 
    
         
            -
                },
         
     | 
| 
       2512 
     | 
    
         
            -
                "InvalidationSummary":{
         
     | 
| 
       2513 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2514 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2515 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       2516 
     | 
    
         
            -
                    "CreateTime",
         
     | 
| 
       2517 
     | 
    
         
            -
                    "Status"
         
     | 
| 
       2518 
     | 
    
         
            -
                  ],
         
     | 
| 
       2519 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2520 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       2521 
     | 
    
         
            -
                    "CreateTime":{"shape":"timestamp"},
         
     | 
| 
       2522 
     | 
    
         
            -
                    "Status":{"shape":"string"}
         
     | 
| 
       2523 
     | 
    
         
            -
                  }
         
     | 
| 
       2524 
     | 
    
         
            -
                },
         
     | 
| 
       2525 
     | 
    
         
            -
                "InvalidationSummaryList":{
         
     | 
| 
       2526 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2527 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2528 
     | 
    
         
            -
                    "shape":"InvalidationSummary",
         
     | 
| 
       2529 
     | 
    
         
            -
                    "locationName":"InvalidationSummary"
         
     | 
| 
       2530 
     | 
    
         
            -
                  }
         
     | 
| 
       2531 
     | 
    
         
            -
                },
         
     | 
| 
       2532 
     | 
    
         
            -
                "ItemSelection":{
         
     | 
| 
       2533 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       2534 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       2535 
     | 
    
         
            -
                    "none",
         
     | 
| 
       2536 
     | 
    
         
            -
                    "whitelist",
         
     | 
| 
       2537 
     | 
    
         
            -
                    "all"
         
     | 
| 
       2538 
     | 
    
         
            -
                  ]
         
     | 
| 
       2539 
     | 
    
         
            -
                },
         
     | 
| 
       2540 
     | 
    
         
            -
                "KeyPairIdList":{
         
     | 
| 
       2541 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2542 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2543 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       2544 
     | 
    
         
            -
                    "locationName":"KeyPairId"
         
     | 
| 
       2545 
     | 
    
         
            -
                  }
         
     | 
| 
       2546 
     | 
    
         
            -
                },
         
     | 
| 
       2547 
     | 
    
         
            -
                "KeyPairIds":{
         
     | 
| 
       2548 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2549 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       2550 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2551 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2552 
     | 
    
         
            -
                    "Items":{"shape":"KeyPairIdList"}
         
     | 
| 
       2553 
     | 
    
         
            -
                  }
         
     | 
| 
       2554 
     | 
    
         
            -
                },
         
     | 
| 
       2555 
     | 
    
         
            -
                "LambdaFunctionARN":{"type":"string"},
         
     | 
| 
       2556 
     | 
    
         
            -
                "LambdaFunctionAssociation":{
         
     | 
| 
       2557 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2558 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2559 
     | 
    
         
            -
                    "LambdaFunctionARN",
         
     | 
| 
       2560 
     | 
    
         
            -
                    "EventType"
         
     | 
| 
       2561 
     | 
    
         
            -
                  ],
         
     | 
| 
       2562 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2563 
     | 
    
         
            -
                    "LambdaFunctionARN":{"shape":"LambdaFunctionARN"},
         
     | 
| 
       2564 
     | 
    
         
            -
                    "EventType":{"shape":"EventType"}
         
     | 
| 
       2565 
     | 
    
         
            -
                  }
         
     | 
| 
       2566 
     | 
    
         
            -
                },
         
     | 
| 
       2567 
     | 
    
         
            -
                "LambdaFunctionAssociationList":{
         
     | 
| 
       2568 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2569 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2570 
     | 
    
         
            -
                    "shape":"LambdaFunctionAssociation",
         
     | 
| 
       2571 
     | 
    
         
            -
                    "locationName":"LambdaFunctionAssociation"
         
     | 
| 
       2572 
     | 
    
         
            -
                  }
         
     | 
| 
       2573 
     | 
    
         
            -
                },
         
     | 
| 
       2574 
     | 
    
         
            -
                "LambdaFunctionAssociations":{
         
     | 
| 
       2575 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2576 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       2577 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2578 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2579 
     | 
    
         
            -
                    "Items":{"shape":"LambdaFunctionAssociationList"}
         
     | 
| 
       2580 
     | 
    
         
            -
                  }
         
     | 
| 
       2581 
     | 
    
         
            -
                },
         
     | 
| 
       2582 
     | 
    
         
            -
                "ListCloudFrontOriginAccessIdentitiesRequest":{
         
     | 
| 
       2583 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2584 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2585 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2586 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2587 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2588 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2589 
     | 
    
         
            -
                    },
         
     | 
| 
       2590 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2591 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2592 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2593 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2594 
     | 
    
         
            -
                    }
         
     | 
| 
       2595 
     | 
    
         
            -
                  }
         
     | 
| 
       2596 
     | 
    
         
            -
                },
         
     | 
| 
       2597 
     | 
    
         
            -
                "ListCloudFrontOriginAccessIdentitiesResult":{
         
     | 
| 
       2598 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2599 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2600 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
         
     | 
| 
       2601 
     | 
    
         
            -
                  },
         
     | 
| 
       2602 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentityList"
         
     | 
| 
       2603 
     | 
    
         
            -
                },
         
     | 
| 
       2604 
     | 
    
         
            -
                "ListDistributionsByWebACLIdRequest":{
         
     | 
| 
       2605 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2606 
     | 
    
         
            -
                  "required":["WebACLId"],
         
     | 
| 
       2607 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2608 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2609 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2610 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2611 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2612 
     | 
    
         
            -
                    },
         
     | 
| 
       2613 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2614 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2615 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2616 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2617 
     | 
    
         
            -
                    },
         
     | 
| 
       2618 
     | 
    
         
            -
                    "WebACLId":{
         
     | 
| 
       2619 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2620 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2621 
     | 
    
         
            -
                      "locationName":"WebACLId"
         
     | 
| 
       2622 
     | 
    
         
            -
                    }
         
     | 
| 
       2623 
     | 
    
         
            -
                  }
         
     | 
| 
       2624 
     | 
    
         
            -
                },
         
     | 
| 
       2625 
     | 
    
         
            -
                "ListDistributionsByWebACLIdResult":{
         
     | 
| 
       2626 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2627 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2628 
     | 
    
         
            -
                    "DistributionList":{"shape":"DistributionList"}
         
     | 
| 
       2629 
     | 
    
         
            -
                  },
         
     | 
| 
       2630 
     | 
    
         
            -
                  "payload":"DistributionList"
         
     | 
| 
       2631 
     | 
    
         
            -
                },
         
     | 
| 
       2632 
     | 
    
         
            -
                "ListDistributionsRequest":{
         
     | 
| 
       2633 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2634 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2635 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2636 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2637 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2638 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2639 
     | 
    
         
            -
                    },
         
     | 
| 
       2640 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2641 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2642 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2643 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2644 
     | 
    
         
            -
                    }
         
     | 
| 
       2645 
     | 
    
         
            -
                  }
         
     | 
| 
       2646 
     | 
    
         
            -
                },
         
     | 
| 
       2647 
     | 
    
         
            -
                "ListDistributionsResult":{
         
     | 
| 
       2648 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2649 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2650 
     | 
    
         
            -
                    "DistributionList":{"shape":"DistributionList"}
         
     | 
| 
       2651 
     | 
    
         
            -
                  },
         
     | 
| 
       2652 
     | 
    
         
            -
                  "payload":"DistributionList"
         
     | 
| 
       2653 
     | 
    
         
            -
                },
         
     | 
| 
       2654 
     | 
    
         
            -
                "ListFieldLevelEncryptionConfigsRequest":{
         
     | 
| 
       2655 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2656 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2657 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2658 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2659 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2660 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2661 
     | 
    
         
            -
                    },
         
     | 
| 
       2662 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2663 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2664 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2665 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2666 
     | 
    
         
            -
                    }
         
     | 
| 
       2667 
     | 
    
         
            -
                  }
         
     | 
| 
       2668 
     | 
    
         
            -
                },
         
     | 
| 
       2669 
     | 
    
         
            -
                "ListFieldLevelEncryptionConfigsResult":{
         
     | 
| 
       2670 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2671 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2672 
     | 
    
         
            -
                    "FieldLevelEncryptionList":{"shape":"FieldLevelEncryptionList"}
         
     | 
| 
       2673 
     | 
    
         
            -
                  },
         
     | 
| 
       2674 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionList"
         
     | 
| 
       2675 
     | 
    
         
            -
                },
         
     | 
| 
       2676 
     | 
    
         
            -
                "ListFieldLevelEncryptionProfilesRequest":{
         
     | 
| 
       2677 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2678 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2679 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2680 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2681 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2682 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2683 
     | 
    
         
            -
                    },
         
     | 
| 
       2684 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2685 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2686 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2687 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2688 
     | 
    
         
            -
                    }
         
     | 
| 
       2689 
     | 
    
         
            -
                  }
         
     | 
| 
       2690 
     | 
    
         
            -
                },
         
     | 
| 
       2691 
     | 
    
         
            -
                "ListFieldLevelEncryptionProfilesResult":{
         
     | 
| 
       2692 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2693 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2694 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileList":{"shape":"FieldLevelEncryptionProfileList"}
         
     | 
| 
       2695 
     | 
    
         
            -
                  },
         
     | 
| 
       2696 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfileList"
         
     | 
| 
       2697 
     | 
    
         
            -
                },
         
     | 
| 
       2698 
     | 
    
         
            -
                "ListInvalidationsRequest":{
         
     | 
| 
       2699 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2700 
     | 
    
         
            -
                  "required":["DistributionId"],
         
     | 
| 
       2701 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2702 
     | 
    
         
            -
                    "DistributionId":{
         
     | 
| 
       2703 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2704 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       2705 
     | 
    
         
            -
                      "locationName":"DistributionId"
         
     | 
| 
       2706 
     | 
    
         
            -
                    },
         
     | 
| 
       2707 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2708 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2709 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2710 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2711 
     | 
    
         
            -
                    },
         
     | 
| 
       2712 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2713 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2714 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2715 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2716 
     | 
    
         
            -
                    }
         
     | 
| 
       2717 
     | 
    
         
            -
                  }
         
     | 
| 
       2718 
     | 
    
         
            -
                },
         
     | 
| 
       2719 
     | 
    
         
            -
                "ListInvalidationsResult":{
         
     | 
| 
       2720 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2721 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2722 
     | 
    
         
            -
                    "InvalidationList":{"shape":"InvalidationList"}
         
     | 
| 
       2723 
     | 
    
         
            -
                  },
         
     | 
| 
       2724 
     | 
    
         
            -
                  "payload":"InvalidationList"
         
     | 
| 
       2725 
     | 
    
         
            -
                },
         
     | 
| 
       2726 
     | 
    
         
            -
                "ListPublicKeysRequest":{
         
     | 
| 
       2727 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2728 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2729 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2730 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2731 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2732 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2733 
     | 
    
         
            -
                    },
         
     | 
| 
       2734 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2735 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2736 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2737 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2738 
     | 
    
         
            -
                    }
         
     | 
| 
       2739 
     | 
    
         
            -
                  }
         
     | 
| 
       2740 
     | 
    
         
            -
                },
         
     | 
| 
       2741 
     | 
    
         
            -
                "ListPublicKeysResult":{
         
     | 
| 
       2742 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2743 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2744 
     | 
    
         
            -
                    "PublicKeyList":{"shape":"PublicKeyList"}
         
     | 
| 
       2745 
     | 
    
         
            -
                  },
         
     | 
| 
       2746 
     | 
    
         
            -
                  "payload":"PublicKeyList"
         
     | 
| 
       2747 
     | 
    
         
            -
                },
         
     | 
| 
       2748 
     | 
    
         
            -
                "ListStreamingDistributionsRequest":{
         
     | 
| 
       2749 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2750 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2751 
     | 
    
         
            -
                    "Marker":{
         
     | 
| 
       2752 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2753 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2754 
     | 
    
         
            -
                      "locationName":"Marker"
         
     | 
| 
       2755 
     | 
    
         
            -
                    },
         
     | 
| 
       2756 
     | 
    
         
            -
                    "MaxItems":{
         
     | 
| 
       2757 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       2758 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2759 
     | 
    
         
            -
                      "locationName":"MaxItems"
         
     | 
| 
       2760 
     | 
    
         
            -
                    }
         
     | 
| 
       2761 
     | 
    
         
            -
                  }
         
     | 
| 
       2762 
     | 
    
         
            -
                },
         
     | 
| 
       2763 
     | 
    
         
            -
                "ListStreamingDistributionsResult":{
         
     | 
| 
       2764 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2765 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2766 
     | 
    
         
            -
                    "StreamingDistributionList":{"shape":"StreamingDistributionList"}
         
     | 
| 
       2767 
     | 
    
         
            -
                  },
         
     | 
| 
       2768 
     | 
    
         
            -
                  "payload":"StreamingDistributionList"
         
     | 
| 
       2769 
     | 
    
         
            -
                },
         
     | 
| 
       2770 
     | 
    
         
            -
                "ListTagsForResourceRequest":{
         
     | 
| 
       2771 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2772 
     | 
    
         
            -
                  "required":["Resource"],
         
     | 
| 
       2773 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2774 
     | 
    
         
            -
                    "Resource":{
         
     | 
| 
       2775 
     | 
    
         
            -
                      "shape":"ResourceARN",
         
     | 
| 
       2776 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       2777 
     | 
    
         
            -
                      "locationName":"Resource"
         
     | 
| 
       2778 
     | 
    
         
            -
                    }
         
     | 
| 
       2779 
     | 
    
         
            -
                  }
         
     | 
| 
       2780 
     | 
    
         
            -
                },
         
     | 
| 
       2781 
     | 
    
         
            -
                "ListTagsForResourceResult":{
         
     | 
| 
       2782 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2783 
     | 
    
         
            -
                  "required":["Tags"],
         
     | 
| 
       2784 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2785 
     | 
    
         
            -
                    "Tags":{"shape":"Tags"}
         
     | 
| 
       2786 
     | 
    
         
            -
                  },
         
     | 
| 
       2787 
     | 
    
         
            -
                  "payload":"Tags"
         
     | 
| 
       2788 
     | 
    
         
            -
                },
         
     | 
| 
       2789 
     | 
    
         
            -
                "LocationList":{
         
     | 
| 
       2790 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2791 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2792 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       2793 
     | 
    
         
            -
                    "locationName":"Location"
         
     | 
| 
       2794 
     | 
    
         
            -
                  }
         
     | 
| 
       2795 
     | 
    
         
            -
                },
         
     | 
| 
       2796 
     | 
    
         
            -
                "LoggingConfig":{
         
     | 
| 
       2797 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2798 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2799 
     | 
    
         
            -
                    "Enabled",
         
     | 
| 
       2800 
     | 
    
         
            -
                    "IncludeCookies",
         
     | 
| 
       2801 
     | 
    
         
            -
                    "Bucket",
         
     | 
| 
       2802 
     | 
    
         
            -
                    "Prefix"
         
     | 
| 
       2803 
     | 
    
         
            -
                  ],
         
     | 
| 
       2804 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2805 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       2806 
     | 
    
         
            -
                    "IncludeCookies":{"shape":"boolean"},
         
     | 
| 
       2807 
     | 
    
         
            -
                    "Bucket":{"shape":"string"},
         
     | 
| 
       2808 
     | 
    
         
            -
                    "Prefix":{"shape":"string"}
         
     | 
| 
       2809 
     | 
    
         
            -
                  }
         
     | 
| 
       2810 
     | 
    
         
            -
                },
         
     | 
| 
       2811 
     | 
    
         
            -
                "Method":{
         
     | 
| 
       2812 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       2813 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       2814 
     | 
    
         
            -
                    "GET",
         
     | 
| 
       2815 
     | 
    
         
            -
                    "HEAD",
         
     | 
| 
       2816 
     | 
    
         
            -
                    "POST",
         
     | 
| 
       2817 
     | 
    
         
            -
                    "PUT",
         
     | 
| 
       2818 
     | 
    
         
            -
                    "PATCH",
         
     | 
| 
       2819 
     | 
    
         
            -
                    "OPTIONS",
         
     | 
| 
       2820 
     | 
    
         
            -
                    "DELETE"
         
     | 
| 
       2821 
     | 
    
         
            -
                  ]
         
     | 
| 
       2822 
     | 
    
         
            -
                },
         
     | 
| 
       2823 
     | 
    
         
            -
                "MethodsList":{
         
     | 
| 
       2824 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2825 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2826 
     | 
    
         
            -
                    "shape":"Method",
         
     | 
| 
       2827 
     | 
    
         
            -
                    "locationName":"Method"
         
     | 
| 
       2828 
     | 
    
         
            -
                  }
         
     | 
| 
       2829 
     | 
    
         
            -
                },
         
     | 
| 
       2830 
     | 
    
         
            -
                "MinimumProtocolVersion":{
         
     | 
| 
       2831 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       2832 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       2833 
     | 
    
         
            -
                    "SSLv3",
         
     | 
| 
       2834 
     | 
    
         
            -
                    "TLSv1",
         
     | 
| 
       2835 
     | 
    
         
            -
                    "TLSv1_2016",
         
     | 
| 
       2836 
     | 
    
         
            -
                    "TLSv1.1_2016",
         
     | 
| 
       2837 
     | 
    
         
            -
                    "TLSv1.2_2018"
         
     | 
| 
       2838 
     | 
    
         
            -
                  ]
         
     | 
| 
       2839 
     | 
    
         
            -
                },
         
     | 
| 
       2840 
     | 
    
         
            -
                "MissingBody":{
         
     | 
| 
       2841 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2842 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2843 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2844 
     | 
    
         
            -
                  },
         
     | 
| 
       2845 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       2846 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2847 
     | 
    
         
            -
                },
         
     | 
| 
       2848 
     | 
    
         
            -
                "NoSuchCloudFrontOriginAccessIdentity":{
         
     | 
| 
       2849 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2850 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2851 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2852 
     | 
    
         
            -
                  },
         
     | 
| 
       2853 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2854 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2855 
     | 
    
         
            -
                },
         
     | 
| 
       2856 
     | 
    
         
            -
                "NoSuchDistribution":{
         
     | 
| 
       2857 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2858 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2859 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2860 
     | 
    
         
            -
                  },
         
     | 
| 
       2861 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2862 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2863 
     | 
    
         
            -
                },
         
     | 
| 
       2864 
     | 
    
         
            -
                "NoSuchFieldLevelEncryptionConfig":{
         
     | 
| 
       2865 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2866 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2867 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2868 
     | 
    
         
            -
                  },
         
     | 
| 
       2869 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2870 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2871 
     | 
    
         
            -
                },
         
     | 
| 
       2872 
     | 
    
         
            -
                "NoSuchFieldLevelEncryptionProfile":{
         
     | 
| 
       2873 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2874 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2875 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2876 
     | 
    
         
            -
                  },
         
     | 
| 
       2877 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2878 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2879 
     | 
    
         
            -
                },
         
     | 
| 
       2880 
     | 
    
         
            -
                "NoSuchInvalidation":{
         
     | 
| 
       2881 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2882 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2883 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2884 
     | 
    
         
            -
                  },
         
     | 
| 
       2885 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2886 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2887 
     | 
    
         
            -
                },
         
     | 
| 
       2888 
     | 
    
         
            -
                "NoSuchOrigin":{
         
     | 
| 
       2889 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2890 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2891 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2892 
     | 
    
         
            -
                  },
         
     | 
| 
       2893 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2894 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2895 
     | 
    
         
            -
                },
         
     | 
| 
       2896 
     | 
    
         
            -
                "NoSuchPublicKey":{
         
     | 
| 
       2897 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2898 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2899 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2900 
     | 
    
         
            -
                  },
         
     | 
| 
       2901 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2902 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2903 
     | 
    
         
            -
                },
         
     | 
| 
       2904 
     | 
    
         
            -
                "NoSuchResource":{
         
     | 
| 
       2905 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2906 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2907 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2908 
     | 
    
         
            -
                  },
         
     | 
| 
       2909 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2910 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2911 
     | 
    
         
            -
                },
         
     | 
| 
       2912 
     | 
    
         
            -
                "NoSuchStreamingDistribution":{
         
     | 
| 
       2913 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2914 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2915 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       2916 
     | 
    
         
            -
                  },
         
     | 
| 
       2917 
     | 
    
         
            -
                  "error":{"httpStatusCode":404},
         
     | 
| 
       2918 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       2919 
     | 
    
         
            -
                },
         
     | 
| 
       2920 
     | 
    
         
            -
                "Origin":{
         
     | 
| 
       2921 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2922 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2923 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       2924 
     | 
    
         
            -
                    "DomainName"
         
     | 
| 
       2925 
     | 
    
         
            -
                  ],
         
     | 
| 
       2926 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2927 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       2928 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       2929 
     | 
    
         
            -
                    "OriginPath":{"shape":"string"},
         
     | 
| 
       2930 
     | 
    
         
            -
                    "CustomHeaders":{"shape":"CustomHeaders"},
         
     | 
| 
       2931 
     | 
    
         
            -
                    "S3OriginConfig":{"shape":"S3OriginConfig"},
         
     | 
| 
       2932 
     | 
    
         
            -
                    "CustomOriginConfig":{"shape":"CustomOriginConfig"}
         
     | 
| 
       2933 
     | 
    
         
            -
                  }
         
     | 
| 
       2934 
     | 
    
         
            -
                },
         
     | 
| 
       2935 
     | 
    
         
            -
                "OriginCustomHeader":{
         
     | 
| 
       2936 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2937 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2938 
     | 
    
         
            -
                    "HeaderName",
         
     | 
| 
       2939 
     | 
    
         
            -
                    "HeaderValue"
         
     | 
| 
       2940 
     | 
    
         
            -
                  ],
         
     | 
| 
       2941 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2942 
     | 
    
         
            -
                    "HeaderName":{"shape":"string"},
         
     | 
| 
       2943 
     | 
    
         
            -
                    "HeaderValue":{"shape":"string"}
         
     | 
| 
       2944 
     | 
    
         
            -
                  }
         
     | 
| 
       2945 
     | 
    
         
            -
                },
         
     | 
| 
       2946 
     | 
    
         
            -
                "OriginCustomHeadersList":{
         
     | 
| 
       2947 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2948 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2949 
     | 
    
         
            -
                    "shape":"OriginCustomHeader",
         
     | 
| 
       2950 
     | 
    
         
            -
                    "locationName":"OriginCustomHeader"
         
     | 
| 
       2951 
     | 
    
         
            -
                  }
         
     | 
| 
       2952 
     | 
    
         
            -
                },
         
     | 
| 
       2953 
     | 
    
         
            -
                "OriginList":{
         
     | 
| 
       2954 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2955 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2956 
     | 
    
         
            -
                    "shape":"Origin",
         
     | 
| 
       2957 
     | 
    
         
            -
                    "locationName":"Origin"
         
     | 
| 
       2958 
     | 
    
         
            -
                  },
         
     | 
| 
       2959 
     | 
    
         
            -
                  "min":1
         
     | 
| 
       2960 
     | 
    
         
            -
                },
         
     | 
| 
       2961 
     | 
    
         
            -
                "OriginProtocolPolicy":{
         
     | 
| 
       2962 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       2963 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       2964 
     | 
    
         
            -
                    "http-only",
         
     | 
| 
       2965 
     | 
    
         
            -
                    "match-viewer",
         
     | 
| 
       2966 
     | 
    
         
            -
                    "https-only"
         
     | 
| 
       2967 
     | 
    
         
            -
                  ]
         
     | 
| 
       2968 
     | 
    
         
            -
                },
         
     | 
| 
       2969 
     | 
    
         
            -
                "OriginSslProtocols":{
         
     | 
| 
       2970 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2971 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       2972 
     | 
    
         
            -
                    "Quantity",
         
     | 
| 
       2973 
     | 
    
         
            -
                    "Items"
         
     | 
| 
       2974 
     | 
    
         
            -
                  ],
         
     | 
| 
       2975 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2976 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2977 
     | 
    
         
            -
                    "Items":{"shape":"SslProtocolsList"}
         
     | 
| 
       2978 
     | 
    
         
            -
                  }
         
     | 
| 
       2979 
     | 
    
         
            -
                },
         
     | 
| 
       2980 
     | 
    
         
            -
                "Origins":{
         
     | 
| 
       2981 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2982 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       2983 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2984 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       2985 
     | 
    
         
            -
                    "Items":{"shape":"OriginList"}
         
     | 
| 
       2986 
     | 
    
         
            -
                  }
         
     | 
| 
       2987 
     | 
    
         
            -
                },
         
     | 
| 
       2988 
     | 
    
         
            -
                "PathList":{
         
     | 
| 
       2989 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       2990 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       2991 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       2992 
     | 
    
         
            -
                    "locationName":"Path"
         
     | 
| 
       2993 
     | 
    
         
            -
                  }
         
     | 
| 
       2994 
     | 
    
         
            -
                },
         
     | 
| 
       2995 
     | 
    
         
            -
                "Paths":{
         
     | 
| 
       2996 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       2997 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       2998 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       2999 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3000 
     | 
    
         
            -
                    "Items":{"shape":"PathList"}
         
     | 
| 
       3001 
     | 
    
         
            -
                  }
         
     | 
| 
       3002 
     | 
    
         
            -
                },
         
     | 
| 
       3003 
     | 
    
         
            -
                "PreconditionFailed":{
         
     | 
| 
       3004 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3005 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3006 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3007 
     | 
    
         
            -
                  },
         
     | 
| 
       3008 
     | 
    
         
            -
                  "error":{"httpStatusCode":412},
         
     | 
| 
       3009 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3010 
     | 
    
         
            -
                },
         
     | 
| 
       3011 
     | 
    
         
            -
                "PriceClass":{
         
     | 
| 
       3012 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3013 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       3014 
     | 
    
         
            -
                    "PriceClass_100",
         
     | 
| 
       3015 
     | 
    
         
            -
                    "PriceClass_200",
         
     | 
| 
       3016 
     | 
    
         
            -
                    "PriceClass_All"
         
     | 
| 
       3017 
     | 
    
         
            -
                  ]
         
     | 
| 
       3018 
     | 
    
         
            -
                },
         
     | 
| 
       3019 
     | 
    
         
            -
                "PublicKey":{
         
     | 
| 
       3020 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3021 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3022 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       3023 
     | 
    
         
            -
                    "CreatedTime",
         
     | 
| 
       3024 
     | 
    
         
            -
                    "PublicKeyConfig"
         
     | 
| 
       3025 
     | 
    
         
            -
                  ],
         
     | 
| 
       3026 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3027 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       3028 
     | 
    
         
            -
                    "CreatedTime":{"shape":"timestamp"},
         
     | 
| 
       3029 
     | 
    
         
            -
                    "PublicKeyConfig":{"shape":"PublicKeyConfig"}
         
     | 
| 
       3030 
     | 
    
         
            -
                  }
         
     | 
| 
       3031 
     | 
    
         
            -
                },
         
     | 
| 
       3032 
     | 
    
         
            -
                "PublicKeyAlreadyExists":{
         
     | 
| 
       3033 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3034 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3035 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3036 
     | 
    
         
            -
                  },
         
     | 
| 
       3037 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       3038 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3039 
     | 
    
         
            -
                },
         
     | 
| 
       3040 
     | 
    
         
            -
                "PublicKeyConfig":{
         
     | 
| 
       3041 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3042 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3043 
     | 
    
         
            -
                    "CallerReference",
         
     | 
| 
       3044 
     | 
    
         
            -
                    "Name",
         
     | 
| 
       3045 
     | 
    
         
            -
                    "EncodedKey"
         
     | 
| 
       3046 
     | 
    
         
            -
                  ],
         
     | 
| 
       3047 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3048 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       3049 
     | 
    
         
            -
                    "Name":{"shape":"string"},
         
     | 
| 
       3050 
     | 
    
         
            -
                    "EncodedKey":{"shape":"string"},
         
     | 
| 
       3051 
     | 
    
         
            -
                    "Comment":{"shape":"string"}
         
     | 
| 
       3052 
     | 
    
         
            -
                  }
         
     | 
| 
       3053 
     | 
    
         
            -
                },
         
     | 
| 
       3054 
     | 
    
         
            -
                "PublicKeyInUse":{
         
     | 
| 
       3055 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3056 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3057 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3058 
     | 
    
         
            -
                  },
         
     | 
| 
       3059 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       3060 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3061 
     | 
    
         
            -
                },
         
     | 
| 
       3062 
     | 
    
         
            -
                "PublicKeyList":{
         
     | 
| 
       3063 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3064 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3065 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       3066 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       3067 
     | 
    
         
            -
                  ],
         
     | 
| 
       3068 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3069 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       3070 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       3071 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3072 
     | 
    
         
            -
                    "Items":{"shape":"PublicKeySummaryList"}
         
     | 
| 
       3073 
     | 
    
         
            -
                  }
         
     | 
| 
       3074 
     | 
    
         
            -
                },
         
     | 
| 
       3075 
     | 
    
         
            -
                "PublicKeySummary":{
         
     | 
| 
       3076 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3077 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3078 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       3079 
     | 
    
         
            -
                    "Name",
         
     | 
| 
       3080 
     | 
    
         
            -
                    "CreatedTime",
         
     | 
| 
       3081 
     | 
    
         
            -
                    "EncodedKey"
         
     | 
| 
       3082 
     | 
    
         
            -
                  ],
         
     | 
| 
       3083 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3084 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       3085 
     | 
    
         
            -
                    "Name":{"shape":"string"},
         
     | 
| 
       3086 
     | 
    
         
            -
                    "CreatedTime":{"shape":"timestamp"},
         
     | 
| 
       3087 
     | 
    
         
            -
                    "EncodedKey":{"shape":"string"},
         
     | 
| 
       3088 
     | 
    
         
            -
                    "Comment":{"shape":"string"}
         
     | 
| 
       3089 
     | 
    
         
            -
                  }
         
     | 
| 
       3090 
     | 
    
         
            -
                },
         
     | 
| 
       3091 
     | 
    
         
            -
                "PublicKeySummaryList":{
         
     | 
| 
       3092 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3093 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3094 
     | 
    
         
            -
                    "shape":"PublicKeySummary",
         
     | 
| 
       3095 
     | 
    
         
            -
                    "locationName":"PublicKeySummary"
         
     | 
| 
       3096 
     | 
    
         
            -
                  }
         
     | 
| 
       3097 
     | 
    
         
            -
                },
         
     | 
| 
       3098 
     | 
    
         
            -
                "QueryArgProfile":{
         
     | 
| 
       3099 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3100 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3101 
     | 
    
         
            -
                    "QueryArg",
         
     | 
| 
       3102 
     | 
    
         
            -
                    "ProfileId"
         
     | 
| 
       3103 
     | 
    
         
            -
                  ],
         
     | 
| 
       3104 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3105 
     | 
    
         
            -
                    "QueryArg":{"shape":"string"},
         
     | 
| 
       3106 
     | 
    
         
            -
                    "ProfileId":{"shape":"string"}
         
     | 
| 
       3107 
     | 
    
         
            -
                  }
         
     | 
| 
       3108 
     | 
    
         
            -
                },
         
     | 
| 
       3109 
     | 
    
         
            -
                "QueryArgProfileConfig":{
         
     | 
| 
       3110 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3111 
     | 
    
         
            -
                  "required":["ForwardWhenQueryArgProfileIsUnknown"],
         
     | 
| 
       3112 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3113 
     | 
    
         
            -
                    "ForwardWhenQueryArgProfileIsUnknown":{"shape":"boolean"},
         
     | 
| 
       3114 
     | 
    
         
            -
                    "QueryArgProfiles":{"shape":"QueryArgProfiles"}
         
     | 
| 
       3115 
     | 
    
         
            -
                  }
         
     | 
| 
       3116 
     | 
    
         
            -
                },
         
     | 
| 
       3117 
     | 
    
         
            -
                "QueryArgProfileEmpty":{
         
     | 
| 
       3118 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3119 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3120 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3121 
     | 
    
         
            -
                  },
         
     | 
| 
       3122 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3123 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3124 
     | 
    
         
            -
                },
         
     | 
| 
       3125 
     | 
    
         
            -
                "QueryArgProfileList":{
         
     | 
| 
       3126 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3127 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3128 
     | 
    
         
            -
                    "shape":"QueryArgProfile",
         
     | 
| 
       3129 
     | 
    
         
            -
                    "locationName":"QueryArgProfile"
         
     | 
| 
       3130 
     | 
    
         
            -
                  }
         
     | 
| 
       3131 
     | 
    
         
            -
                },
         
     | 
| 
       3132 
     | 
    
         
            -
                "QueryArgProfiles":{
         
     | 
| 
       3133 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3134 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       3135 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3136 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3137 
     | 
    
         
            -
                    "Items":{"shape":"QueryArgProfileList"}
         
     | 
| 
       3138 
     | 
    
         
            -
                  }
         
     | 
| 
       3139 
     | 
    
         
            -
                },
         
     | 
| 
       3140 
     | 
    
         
            -
                "QueryStringCacheKeys":{
         
     | 
| 
       3141 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3142 
     | 
    
         
            -
                  "required":["Quantity"],
         
     | 
| 
       3143 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3144 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3145 
     | 
    
         
            -
                    "Items":{"shape":"QueryStringCacheKeysList"}
         
     | 
| 
       3146 
     | 
    
         
            -
                  }
         
     | 
| 
       3147 
     | 
    
         
            -
                },
         
     | 
| 
       3148 
     | 
    
         
            -
                "QueryStringCacheKeysList":{
         
     | 
| 
       3149 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3150 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3151 
     | 
    
         
            -
                    "shape":"string",
         
     | 
| 
       3152 
     | 
    
         
            -
                    "locationName":"Name"
         
     | 
| 
       3153 
     | 
    
         
            -
                  }
         
     | 
| 
       3154 
     | 
    
         
            -
                },
         
     | 
| 
       3155 
     | 
    
         
            -
                "ResourceARN":{
         
     | 
| 
       3156 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3157 
     | 
    
         
            -
                  "pattern":"arn:aws:cloudfront::[0-9]+:.*"
         
     | 
| 
       3158 
     | 
    
         
            -
                },
         
     | 
| 
       3159 
     | 
    
         
            -
                "Restrictions":{
         
     | 
| 
       3160 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3161 
     | 
    
         
            -
                  "required":["GeoRestriction"],
         
     | 
| 
       3162 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3163 
     | 
    
         
            -
                    "GeoRestriction":{"shape":"GeoRestriction"}
         
     | 
| 
       3164 
     | 
    
         
            -
                  }
         
     | 
| 
       3165 
     | 
    
         
            -
                },
         
     | 
| 
       3166 
     | 
    
         
            -
                "S3Origin":{
         
     | 
| 
       3167 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3168 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3169 
     | 
    
         
            -
                    "DomainName",
         
     | 
| 
       3170 
     | 
    
         
            -
                    "OriginAccessIdentity"
         
     | 
| 
       3171 
     | 
    
         
            -
                  ],
         
     | 
| 
       3172 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3173 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       3174 
     | 
    
         
            -
                    "OriginAccessIdentity":{"shape":"string"}
         
     | 
| 
       3175 
     | 
    
         
            -
                  }
         
     | 
| 
       3176 
     | 
    
         
            -
                },
         
     | 
| 
       3177 
     | 
    
         
            -
                "S3OriginConfig":{
         
     | 
| 
       3178 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3179 
     | 
    
         
            -
                  "required":["OriginAccessIdentity"],
         
     | 
| 
       3180 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3181 
     | 
    
         
            -
                    "OriginAccessIdentity":{"shape":"string"}
         
     | 
| 
       3182 
     | 
    
         
            -
                  }
         
     | 
| 
       3183 
     | 
    
         
            -
                },
         
     | 
| 
       3184 
     | 
    
         
            -
                "SSLSupportMethod":{
         
     | 
| 
       3185 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3186 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       3187 
     | 
    
         
            -
                    "sni-only",
         
     | 
| 
       3188 
     | 
    
         
            -
                    "vip"
         
     | 
| 
       3189 
     | 
    
         
            -
                  ]
         
     | 
| 
       3190 
     | 
    
         
            -
                },
         
     | 
| 
       3191 
     | 
    
         
            -
                "Signer":{
         
     | 
| 
       3192 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3193 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3194 
     | 
    
         
            -
                    "AwsAccountNumber":{"shape":"string"},
         
     | 
| 
       3195 
     | 
    
         
            -
                    "KeyPairIds":{"shape":"KeyPairIds"}
         
     | 
| 
       3196 
     | 
    
         
            -
                  }
         
     | 
| 
       3197 
     | 
    
         
            -
                },
         
     | 
| 
       3198 
     | 
    
         
            -
                "SignerList":{
         
     | 
| 
       3199 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3200 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3201 
     | 
    
         
            -
                    "shape":"Signer",
         
     | 
| 
       3202 
     | 
    
         
            -
                    "locationName":"Signer"
         
     | 
| 
       3203 
     | 
    
         
            -
                  }
         
     | 
| 
       3204 
     | 
    
         
            -
                },
         
     | 
| 
       3205 
     | 
    
         
            -
                "SslProtocol":{
         
     | 
| 
       3206 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3207 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       3208 
     | 
    
         
            -
                    "SSLv3",
         
     | 
| 
       3209 
     | 
    
         
            -
                    "TLSv1",
         
     | 
| 
       3210 
     | 
    
         
            -
                    "TLSv1.1",
         
     | 
| 
       3211 
     | 
    
         
            -
                    "TLSv1.2"
         
     | 
| 
       3212 
     | 
    
         
            -
                  ]
         
     | 
| 
       3213 
     | 
    
         
            -
                },
         
     | 
| 
       3214 
     | 
    
         
            -
                "SslProtocolsList":{
         
     | 
| 
       3215 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3216 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3217 
     | 
    
         
            -
                    "shape":"SslProtocol",
         
     | 
| 
       3218 
     | 
    
         
            -
                    "locationName":"SslProtocol"
         
     | 
| 
       3219 
     | 
    
         
            -
                  }
         
     | 
| 
       3220 
     | 
    
         
            -
                },
         
     | 
| 
       3221 
     | 
    
         
            -
                "StreamingDistribution":{
         
     | 
| 
       3222 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3223 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3224 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       3225 
     | 
    
         
            -
                    "ARN",
         
     | 
| 
       3226 
     | 
    
         
            -
                    "Status",
         
     | 
| 
       3227 
     | 
    
         
            -
                    "DomainName",
         
     | 
| 
       3228 
     | 
    
         
            -
                    "ActiveTrustedSigners",
         
     | 
| 
       3229 
     | 
    
         
            -
                    "StreamingDistributionConfig"
         
     | 
| 
       3230 
     | 
    
         
            -
                  ],
         
     | 
| 
       3231 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3232 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       3233 
     | 
    
         
            -
                    "ARN":{"shape":"string"},
         
     | 
| 
       3234 
     | 
    
         
            -
                    "Status":{"shape":"string"},
         
     | 
| 
       3235 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       3236 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       3237 
     | 
    
         
            -
                    "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
         
     | 
| 
       3238 
     | 
    
         
            -
                    "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
         
     | 
| 
       3239 
     | 
    
         
            -
                  }
         
     | 
| 
       3240 
     | 
    
         
            -
                },
         
     | 
| 
       3241 
     | 
    
         
            -
                "StreamingDistributionAlreadyExists":{
         
     | 
| 
       3242 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3243 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3244 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3245 
     | 
    
         
            -
                  },
         
     | 
| 
       3246 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       3247 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3248 
     | 
    
         
            -
                },
         
     | 
| 
       3249 
     | 
    
         
            -
                "StreamingDistributionConfig":{
         
     | 
| 
       3250 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3251 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3252 
     | 
    
         
            -
                    "CallerReference",
         
     | 
| 
       3253 
     | 
    
         
            -
                    "S3Origin",
         
     | 
| 
       3254 
     | 
    
         
            -
                    "Comment",
         
     | 
| 
       3255 
     | 
    
         
            -
                    "TrustedSigners",
         
     | 
| 
       3256 
     | 
    
         
            -
                    "Enabled"
         
     | 
| 
       3257 
     | 
    
         
            -
                  ],
         
     | 
| 
       3258 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3259 
     | 
    
         
            -
                    "CallerReference":{"shape":"string"},
         
     | 
| 
       3260 
     | 
    
         
            -
                    "S3Origin":{"shape":"S3Origin"},
         
     | 
| 
       3261 
     | 
    
         
            -
                    "Aliases":{"shape":"Aliases"},
         
     | 
| 
       3262 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       3263 
     | 
    
         
            -
                    "Logging":{"shape":"StreamingLoggingConfig"},
         
     | 
| 
       3264 
     | 
    
         
            -
                    "TrustedSigners":{"shape":"TrustedSigners"},
         
     | 
| 
       3265 
     | 
    
         
            -
                    "PriceClass":{"shape":"PriceClass"},
         
     | 
| 
       3266 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"}
         
     | 
| 
       3267 
     | 
    
         
            -
                  }
         
     | 
| 
       3268 
     | 
    
         
            -
                },
         
     | 
| 
       3269 
     | 
    
         
            -
                "StreamingDistributionConfigWithTags":{
         
     | 
| 
       3270 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3271 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3272 
     | 
    
         
            -
                    "StreamingDistributionConfig",
         
     | 
| 
       3273 
     | 
    
         
            -
                    "Tags"
         
     | 
| 
       3274 
     | 
    
         
            -
                  ],
         
     | 
| 
       3275 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3276 
     | 
    
         
            -
                    "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
         
     | 
| 
       3277 
     | 
    
         
            -
                    "Tags":{"shape":"Tags"}
         
     | 
| 
       3278 
     | 
    
         
            -
                  }
         
     | 
| 
       3279 
     | 
    
         
            -
                },
         
     | 
| 
       3280 
     | 
    
         
            -
                "StreamingDistributionList":{
         
     | 
| 
       3281 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3282 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3283 
     | 
    
         
            -
                    "Marker",
         
     | 
| 
       3284 
     | 
    
         
            -
                    "MaxItems",
         
     | 
| 
       3285 
     | 
    
         
            -
                    "IsTruncated",
         
     | 
| 
       3286 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       3287 
     | 
    
         
            -
                  ],
         
     | 
| 
       3288 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3289 
     | 
    
         
            -
                    "Marker":{"shape":"string"},
         
     | 
| 
       3290 
     | 
    
         
            -
                    "NextMarker":{"shape":"string"},
         
     | 
| 
       3291 
     | 
    
         
            -
                    "MaxItems":{"shape":"integer"},
         
     | 
| 
       3292 
     | 
    
         
            -
                    "IsTruncated":{"shape":"boolean"},
         
     | 
| 
       3293 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3294 
     | 
    
         
            -
                    "Items":{"shape":"StreamingDistributionSummaryList"}
         
     | 
| 
       3295 
     | 
    
         
            -
                  }
         
     | 
| 
       3296 
     | 
    
         
            -
                },
         
     | 
| 
       3297 
     | 
    
         
            -
                "StreamingDistributionNotDisabled":{
         
     | 
| 
       3298 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3299 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3300 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3301 
     | 
    
         
            -
                  },
         
     | 
| 
       3302 
     | 
    
         
            -
                  "error":{"httpStatusCode":409},
         
     | 
| 
       3303 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3304 
     | 
    
         
            -
                },
         
     | 
| 
       3305 
     | 
    
         
            -
                "StreamingDistributionSummary":{
         
     | 
| 
       3306 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3307 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3308 
     | 
    
         
            -
                    "Id",
         
     | 
| 
       3309 
     | 
    
         
            -
                    "ARN",
         
     | 
| 
       3310 
     | 
    
         
            -
                    "Status",
         
     | 
| 
       3311 
     | 
    
         
            -
                    "LastModifiedTime",
         
     | 
| 
       3312 
     | 
    
         
            -
                    "DomainName",
         
     | 
| 
       3313 
     | 
    
         
            -
                    "S3Origin",
         
     | 
| 
       3314 
     | 
    
         
            -
                    "Aliases",
         
     | 
| 
       3315 
     | 
    
         
            -
                    "TrustedSigners",
         
     | 
| 
       3316 
     | 
    
         
            -
                    "Comment",
         
     | 
| 
       3317 
     | 
    
         
            -
                    "PriceClass",
         
     | 
| 
       3318 
     | 
    
         
            -
                    "Enabled"
         
     | 
| 
       3319 
     | 
    
         
            -
                  ],
         
     | 
| 
       3320 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3321 
     | 
    
         
            -
                    "Id":{"shape":"string"},
         
     | 
| 
       3322 
     | 
    
         
            -
                    "ARN":{"shape":"string"},
         
     | 
| 
       3323 
     | 
    
         
            -
                    "Status":{"shape":"string"},
         
     | 
| 
       3324 
     | 
    
         
            -
                    "LastModifiedTime":{"shape":"timestamp"},
         
     | 
| 
       3325 
     | 
    
         
            -
                    "DomainName":{"shape":"string"},
         
     | 
| 
       3326 
     | 
    
         
            -
                    "S3Origin":{"shape":"S3Origin"},
         
     | 
| 
       3327 
     | 
    
         
            -
                    "Aliases":{"shape":"Aliases"},
         
     | 
| 
       3328 
     | 
    
         
            -
                    "TrustedSigners":{"shape":"TrustedSigners"},
         
     | 
| 
       3329 
     | 
    
         
            -
                    "Comment":{"shape":"string"},
         
     | 
| 
       3330 
     | 
    
         
            -
                    "PriceClass":{"shape":"PriceClass"},
         
     | 
| 
       3331 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"}
         
     | 
| 
       3332 
     | 
    
         
            -
                  }
         
     | 
| 
       3333 
     | 
    
         
            -
                },
         
     | 
| 
       3334 
     | 
    
         
            -
                "StreamingDistributionSummaryList":{
         
     | 
| 
       3335 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3336 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3337 
     | 
    
         
            -
                    "shape":"StreamingDistributionSummary",
         
     | 
| 
       3338 
     | 
    
         
            -
                    "locationName":"StreamingDistributionSummary"
         
     | 
| 
       3339 
     | 
    
         
            -
                  }
         
     | 
| 
       3340 
     | 
    
         
            -
                },
         
     | 
| 
       3341 
     | 
    
         
            -
                "StreamingLoggingConfig":{
         
     | 
| 
       3342 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3343 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3344 
     | 
    
         
            -
                    "Enabled",
         
     | 
| 
       3345 
     | 
    
         
            -
                    "Bucket",
         
     | 
| 
       3346 
     | 
    
         
            -
                    "Prefix"
         
     | 
| 
       3347 
     | 
    
         
            -
                  ],
         
     | 
| 
       3348 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3349 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       3350 
     | 
    
         
            -
                    "Bucket":{"shape":"string"},
         
     | 
| 
       3351 
     | 
    
         
            -
                    "Prefix":{"shape":"string"}
         
     | 
| 
       3352 
     | 
    
         
            -
                  }
         
     | 
| 
       3353 
     | 
    
         
            -
                },
         
     | 
| 
       3354 
     | 
    
         
            -
                "Tag":{
         
     | 
| 
       3355 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3356 
     | 
    
         
            -
                  "required":["Key"],
         
     | 
| 
       3357 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3358 
     | 
    
         
            -
                    "Key":{"shape":"TagKey"},
         
     | 
| 
       3359 
     | 
    
         
            -
                    "Value":{"shape":"TagValue"}
         
     | 
| 
       3360 
     | 
    
         
            -
                  }
         
     | 
| 
       3361 
     | 
    
         
            -
                },
         
     | 
| 
       3362 
     | 
    
         
            -
                "TagKey":{
         
     | 
| 
       3363 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3364 
     | 
    
         
            -
                  "max":128,
         
     | 
| 
       3365 
     | 
    
         
            -
                  "min":1,
         
     | 
| 
       3366 
     | 
    
         
            -
                  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
         
     | 
| 
       3367 
     | 
    
         
            -
                },
         
     | 
| 
       3368 
     | 
    
         
            -
                "TagKeyList":{
         
     | 
| 
       3369 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3370 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3371 
     | 
    
         
            -
                    "shape":"TagKey",
         
     | 
| 
       3372 
     | 
    
         
            -
                    "locationName":"Key"
         
     | 
| 
       3373 
     | 
    
         
            -
                  }
         
     | 
| 
       3374 
     | 
    
         
            -
                },
         
     | 
| 
       3375 
     | 
    
         
            -
                "TagKeys":{
         
     | 
| 
       3376 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3377 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3378 
     | 
    
         
            -
                    "Items":{"shape":"TagKeyList"}
         
     | 
| 
       3379 
     | 
    
         
            -
                  }
         
     | 
| 
       3380 
     | 
    
         
            -
                },
         
     | 
| 
       3381 
     | 
    
         
            -
                "TagList":{
         
     | 
| 
       3382 
     | 
    
         
            -
                  "type":"list",
         
     | 
| 
       3383 
     | 
    
         
            -
                  "member":{
         
     | 
| 
       3384 
     | 
    
         
            -
                    "shape":"Tag",
         
     | 
| 
       3385 
     | 
    
         
            -
                    "locationName":"Tag"
         
     | 
| 
       3386 
     | 
    
         
            -
                  }
         
     | 
| 
       3387 
     | 
    
         
            -
                },
         
     | 
| 
       3388 
     | 
    
         
            -
                "TagResourceRequest":{
         
     | 
| 
       3389 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3390 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3391 
     | 
    
         
            -
                    "Resource",
         
     | 
| 
       3392 
     | 
    
         
            -
                    "Tags"
         
     | 
| 
       3393 
     | 
    
         
            -
                  ],
         
     | 
| 
       3394 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3395 
     | 
    
         
            -
                    "Resource":{
         
     | 
| 
       3396 
     | 
    
         
            -
                      "shape":"ResourceARN",
         
     | 
| 
       3397 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       3398 
     | 
    
         
            -
                      "locationName":"Resource"
         
     | 
| 
       3399 
     | 
    
         
            -
                    },
         
     | 
| 
       3400 
     | 
    
         
            -
                    "Tags":{
         
     | 
| 
       3401 
     | 
    
         
            -
                      "shape":"Tags",
         
     | 
| 
       3402 
     | 
    
         
            -
                      "locationName":"Tags",
         
     | 
| 
       3403 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3404 
     | 
    
         
            -
                    }
         
     | 
| 
       3405 
     | 
    
         
            -
                  },
         
     | 
| 
       3406 
     | 
    
         
            -
                  "payload":"Tags"
         
     | 
| 
       3407 
     | 
    
         
            -
                },
         
     | 
| 
       3408 
     | 
    
         
            -
                "TagValue":{
         
     | 
| 
       3409 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3410 
     | 
    
         
            -
                  "max":256,
         
     | 
| 
       3411 
     | 
    
         
            -
                  "min":0,
         
     | 
| 
       3412 
     | 
    
         
            -
                  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
         
     | 
| 
       3413 
     | 
    
         
            -
                },
         
     | 
| 
       3414 
     | 
    
         
            -
                "Tags":{
         
     | 
| 
       3415 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3416 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3417 
     | 
    
         
            -
                    "Items":{"shape":"TagList"}
         
     | 
| 
       3418 
     | 
    
         
            -
                  }
         
     | 
| 
       3419 
     | 
    
         
            -
                },
         
     | 
| 
       3420 
     | 
    
         
            -
                "TooManyCacheBehaviors":{
         
     | 
| 
       3421 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3422 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3423 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3424 
     | 
    
         
            -
                  },
         
     | 
| 
       3425 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3426 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3427 
     | 
    
         
            -
                },
         
     | 
| 
       3428 
     | 
    
         
            -
                "TooManyCertificates":{
         
     | 
| 
       3429 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3430 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3431 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3432 
     | 
    
         
            -
                  },
         
     | 
| 
       3433 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3434 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3435 
     | 
    
         
            -
                },
         
     | 
| 
       3436 
     | 
    
         
            -
                "TooManyCloudFrontOriginAccessIdentities":{
         
     | 
| 
       3437 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3438 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3439 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3440 
     | 
    
         
            -
                  },
         
     | 
| 
       3441 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3442 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3443 
     | 
    
         
            -
                },
         
     | 
| 
       3444 
     | 
    
         
            -
                "TooManyCookieNamesInWhiteList":{
         
     | 
| 
       3445 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3446 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3447 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3448 
     | 
    
         
            -
                  },
         
     | 
| 
       3449 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3450 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3451 
     | 
    
         
            -
                },
         
     | 
| 
       3452 
     | 
    
         
            -
                "TooManyDistributionCNAMEs":{
         
     | 
| 
       3453 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3454 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3455 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3456 
     | 
    
         
            -
                  },
         
     | 
| 
       3457 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3458 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3459 
     | 
    
         
            -
                },
         
     | 
| 
       3460 
     | 
    
         
            -
                "TooManyDistributions":{
         
     | 
| 
       3461 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3462 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3463 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3464 
     | 
    
         
            -
                  },
         
     | 
| 
       3465 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3466 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3467 
     | 
    
         
            -
                },
         
     | 
| 
       3468 
     | 
    
         
            -
                "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig":{
         
     | 
| 
       3469 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3470 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3471 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3472 
     | 
    
         
            -
                  },
         
     | 
| 
       3473 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3474 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3475 
     | 
    
         
            -
                },
         
     | 
| 
       3476 
     | 
    
         
            -
                "TooManyDistributionsWithLambdaAssociations":{
         
     | 
| 
       3477 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3478 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3479 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3480 
     | 
    
         
            -
                  },
         
     | 
| 
       3481 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3482 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3483 
     | 
    
         
            -
                },
         
     | 
| 
       3484 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionConfigs":{
         
     | 
| 
       3485 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3486 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3487 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3488 
     | 
    
         
            -
                  },
         
     | 
| 
       3489 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3490 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3491 
     | 
    
         
            -
                },
         
     | 
| 
       3492 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionContentTypeProfiles":{
         
     | 
| 
       3493 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3494 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3495 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3496 
     | 
    
         
            -
                  },
         
     | 
| 
       3497 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3498 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3499 
     | 
    
         
            -
                },
         
     | 
| 
       3500 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionEncryptionEntities":{
         
     | 
| 
       3501 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3502 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3503 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3504 
     | 
    
         
            -
                  },
         
     | 
| 
       3505 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3506 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3507 
     | 
    
         
            -
                },
         
     | 
| 
       3508 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionFieldPatterns":{
         
     | 
| 
       3509 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3510 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3511 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3512 
     | 
    
         
            -
                  },
         
     | 
| 
       3513 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3514 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3515 
     | 
    
         
            -
                },
         
     | 
| 
       3516 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionProfiles":{
         
     | 
| 
       3517 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3518 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3519 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3520 
     | 
    
         
            -
                  },
         
     | 
| 
       3521 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3522 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3523 
     | 
    
         
            -
                },
         
     | 
| 
       3524 
     | 
    
         
            -
                "TooManyFieldLevelEncryptionQueryArgProfiles":{
         
     | 
| 
       3525 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3526 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3527 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3528 
     | 
    
         
            -
                  },
         
     | 
| 
       3529 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3530 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3531 
     | 
    
         
            -
                },
         
     | 
| 
       3532 
     | 
    
         
            -
                "TooManyHeadersInForwardedValues":{
         
     | 
| 
       3533 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3534 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3535 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3536 
     | 
    
         
            -
                  },
         
     | 
| 
       3537 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3538 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3539 
     | 
    
         
            -
                },
         
     | 
| 
       3540 
     | 
    
         
            -
                "TooManyInvalidationsInProgress":{
         
     | 
| 
       3541 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3542 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3543 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3544 
     | 
    
         
            -
                  },
         
     | 
| 
       3545 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3546 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3547 
     | 
    
         
            -
                },
         
     | 
| 
       3548 
     | 
    
         
            -
                "TooManyLambdaFunctionAssociations":{
         
     | 
| 
       3549 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3550 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3551 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3552 
     | 
    
         
            -
                  },
         
     | 
| 
       3553 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3554 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3555 
     | 
    
         
            -
                },
         
     | 
| 
       3556 
     | 
    
         
            -
                "TooManyOriginCustomHeaders":{
         
     | 
| 
       3557 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3558 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3559 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3560 
     | 
    
         
            -
                  },
         
     | 
| 
       3561 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3562 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3563 
     | 
    
         
            -
                },
         
     | 
| 
       3564 
     | 
    
         
            -
                "TooManyOrigins":{
         
     | 
| 
       3565 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3566 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3567 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3568 
     | 
    
         
            -
                  },
         
     | 
| 
       3569 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3570 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3571 
     | 
    
         
            -
                },
         
     | 
| 
       3572 
     | 
    
         
            -
                "TooManyPublicKeys":{
         
     | 
| 
       3573 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3574 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3575 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3576 
     | 
    
         
            -
                  },
         
     | 
| 
       3577 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3578 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3579 
     | 
    
         
            -
                },
         
     | 
| 
       3580 
     | 
    
         
            -
                "TooManyQueryStringParameters":{
         
     | 
| 
       3581 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3582 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3583 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3584 
     | 
    
         
            -
                  },
         
     | 
| 
       3585 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3586 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3587 
     | 
    
         
            -
                },
         
     | 
| 
       3588 
     | 
    
         
            -
                "TooManyStreamingDistributionCNAMEs":{
         
     | 
| 
       3589 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3590 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3591 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3592 
     | 
    
         
            -
                  },
         
     | 
| 
       3593 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3594 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3595 
     | 
    
         
            -
                },
         
     | 
| 
       3596 
     | 
    
         
            -
                "TooManyStreamingDistributions":{
         
     | 
| 
       3597 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3598 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3599 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3600 
     | 
    
         
            -
                  },
         
     | 
| 
       3601 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3602 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3603 
     | 
    
         
            -
                },
         
     | 
| 
       3604 
     | 
    
         
            -
                "TooManyTrustedSigners":{
         
     | 
| 
       3605 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3606 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3607 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3608 
     | 
    
         
            -
                  },
         
     | 
| 
       3609 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3610 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3611 
     | 
    
         
            -
                },
         
     | 
| 
       3612 
     | 
    
         
            -
                "TrustedSignerDoesNotExist":{
         
     | 
| 
       3613 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3614 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3615 
     | 
    
         
            -
                    "Message":{"shape":"string"}
         
     | 
| 
       3616 
     | 
    
         
            -
                  },
         
     | 
| 
       3617 
     | 
    
         
            -
                  "error":{"httpStatusCode":400},
         
     | 
| 
       3618 
     | 
    
         
            -
                  "exception":true
         
     | 
| 
       3619 
     | 
    
         
            -
                },
         
     | 
| 
       3620 
     | 
    
         
            -
                "TrustedSigners":{
         
     | 
| 
       3621 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3622 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3623 
     | 
    
         
            -
                    "Enabled",
         
     | 
| 
       3624 
     | 
    
         
            -
                    "Quantity"
         
     | 
| 
       3625 
     | 
    
         
            -
                  ],
         
     | 
| 
       3626 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3627 
     | 
    
         
            -
                    "Enabled":{"shape":"boolean"},
         
     | 
| 
       3628 
     | 
    
         
            -
                    "Quantity":{"shape":"integer"},
         
     | 
| 
       3629 
     | 
    
         
            -
                    "Items":{"shape":"AwsAccountNumberList"}
         
     | 
| 
       3630 
     | 
    
         
            -
                  }
         
     | 
| 
       3631 
     | 
    
         
            -
                },
         
     | 
| 
       3632 
     | 
    
         
            -
                "UntagResourceRequest":{
         
     | 
| 
       3633 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3634 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3635 
     | 
    
         
            -
                    "Resource",
         
     | 
| 
       3636 
     | 
    
         
            -
                    "TagKeys"
         
     | 
| 
       3637 
     | 
    
         
            -
                  ],
         
     | 
| 
       3638 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3639 
     | 
    
         
            -
                    "Resource":{
         
     | 
| 
       3640 
     | 
    
         
            -
                      "shape":"ResourceARN",
         
     | 
| 
       3641 
     | 
    
         
            -
                      "location":"querystring",
         
     | 
| 
       3642 
     | 
    
         
            -
                      "locationName":"Resource"
         
     | 
| 
       3643 
     | 
    
         
            -
                    },
         
     | 
| 
       3644 
     | 
    
         
            -
                    "TagKeys":{
         
     | 
| 
       3645 
     | 
    
         
            -
                      "shape":"TagKeys",
         
     | 
| 
       3646 
     | 
    
         
            -
                      "locationName":"TagKeys",
         
     | 
| 
       3647 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3648 
     | 
    
         
            -
                    }
         
     | 
| 
       3649 
     | 
    
         
            -
                  },
         
     | 
| 
       3650 
     | 
    
         
            -
                  "payload":"TagKeys"
         
     | 
| 
       3651 
     | 
    
         
            -
                },
         
     | 
| 
       3652 
     | 
    
         
            -
                "UpdateCloudFrontOriginAccessIdentityRequest":{
         
     | 
| 
       3653 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3654 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3655 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityConfig",
         
     | 
| 
       3656 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3657 
     | 
    
         
            -
                  ],
         
     | 
| 
       3658 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3659 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentityConfig":{
         
     | 
| 
       3660 
     | 
    
         
            -
                      "shape":"CloudFrontOriginAccessIdentityConfig",
         
     | 
| 
       3661 
     | 
    
         
            -
                      "locationName":"CloudFrontOriginAccessIdentityConfig",
         
     | 
| 
       3662 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3663 
     | 
    
         
            -
                    },
         
     | 
| 
       3664 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3665 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3666 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3667 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3668 
     | 
    
         
            -
                    },
         
     | 
| 
       3669 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3670 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3671 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3672 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3673 
     | 
    
         
            -
                    }
         
     | 
| 
       3674 
     | 
    
         
            -
                  },
         
     | 
| 
       3675 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentityConfig"
         
     | 
| 
       3676 
     | 
    
         
            -
                },
         
     | 
| 
       3677 
     | 
    
         
            -
                "UpdateCloudFrontOriginAccessIdentityResult":{
         
     | 
| 
       3678 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3679 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3680 
     | 
    
         
            -
                    "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
         
     | 
| 
       3681 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3682 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3683 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3684 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3685 
     | 
    
         
            -
                    }
         
     | 
| 
       3686 
     | 
    
         
            -
                  },
         
     | 
| 
       3687 
     | 
    
         
            -
                  "payload":"CloudFrontOriginAccessIdentity"
         
     | 
| 
       3688 
     | 
    
         
            -
                },
         
     | 
| 
       3689 
     | 
    
         
            -
                "UpdateDistributionRequest":{
         
     | 
| 
       3690 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3691 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3692 
     | 
    
         
            -
                    "DistributionConfig",
         
     | 
| 
       3693 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3694 
     | 
    
         
            -
                  ],
         
     | 
| 
       3695 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3696 
     | 
    
         
            -
                    "DistributionConfig":{
         
     | 
| 
       3697 
     | 
    
         
            -
                      "shape":"DistributionConfig",
         
     | 
| 
       3698 
     | 
    
         
            -
                      "locationName":"DistributionConfig",
         
     | 
| 
       3699 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3700 
     | 
    
         
            -
                    },
         
     | 
| 
       3701 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3702 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3703 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3704 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3705 
     | 
    
         
            -
                    },
         
     | 
| 
       3706 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3707 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3708 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3709 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3710 
     | 
    
         
            -
                    }
         
     | 
| 
       3711 
     | 
    
         
            -
                  },
         
     | 
| 
       3712 
     | 
    
         
            -
                  "payload":"DistributionConfig"
         
     | 
| 
       3713 
     | 
    
         
            -
                },
         
     | 
| 
       3714 
     | 
    
         
            -
                "UpdateDistributionResult":{
         
     | 
| 
       3715 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3716 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3717 
     | 
    
         
            -
                    "Distribution":{"shape":"Distribution"},
         
     | 
| 
       3718 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3719 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3720 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3721 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3722 
     | 
    
         
            -
                    }
         
     | 
| 
       3723 
     | 
    
         
            -
                  },
         
     | 
| 
       3724 
     | 
    
         
            -
                  "payload":"Distribution"
         
     | 
| 
       3725 
     | 
    
         
            -
                },
         
     | 
| 
       3726 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionConfigRequest":{
         
     | 
| 
       3727 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3728 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3729 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig",
         
     | 
| 
       3730 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3731 
     | 
    
         
            -
                  ],
         
     | 
| 
       3732 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3733 
     | 
    
         
            -
                    "FieldLevelEncryptionConfig":{
         
     | 
| 
       3734 
     | 
    
         
            -
                      "shape":"FieldLevelEncryptionConfig",
         
     | 
| 
       3735 
     | 
    
         
            -
                      "locationName":"FieldLevelEncryptionConfig",
         
     | 
| 
       3736 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3737 
     | 
    
         
            -
                    },
         
     | 
| 
       3738 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3739 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3740 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3741 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3742 
     | 
    
         
            -
                    },
         
     | 
| 
       3743 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3744 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3745 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3746 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3747 
     | 
    
         
            -
                    }
         
     | 
| 
       3748 
     | 
    
         
            -
                  },
         
     | 
| 
       3749 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionConfig"
         
     | 
| 
       3750 
     | 
    
         
            -
                },
         
     | 
| 
       3751 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionConfigResult":{
         
     | 
| 
       3752 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3753 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3754 
     | 
    
         
            -
                    "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
         
     | 
| 
       3755 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3756 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3757 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3758 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3759 
     | 
    
         
            -
                    }
         
     | 
| 
       3760 
     | 
    
         
            -
                  },
         
     | 
| 
       3761 
     | 
    
         
            -
                  "payload":"FieldLevelEncryption"
         
     | 
| 
       3762 
     | 
    
         
            -
                },
         
     | 
| 
       3763 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionProfileRequest":{
         
     | 
| 
       3764 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3765 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3766 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig",
         
     | 
| 
       3767 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3768 
     | 
    
         
            -
                  ],
         
     | 
| 
       3769 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3770 
     | 
    
         
            -
                    "FieldLevelEncryptionProfileConfig":{
         
     | 
| 
       3771 
     | 
    
         
            -
                      "shape":"FieldLevelEncryptionProfileConfig",
         
     | 
| 
       3772 
     | 
    
         
            -
                      "locationName":"FieldLevelEncryptionProfileConfig",
         
     | 
| 
       3773 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3774 
     | 
    
         
            -
                    },
         
     | 
| 
       3775 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3776 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3777 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3778 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3779 
     | 
    
         
            -
                    },
         
     | 
| 
       3780 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3781 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3782 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3783 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3784 
     | 
    
         
            -
                    }
         
     | 
| 
       3785 
     | 
    
         
            -
                  },
         
     | 
| 
       3786 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfileConfig"
         
     | 
| 
       3787 
     | 
    
         
            -
                },
         
     | 
| 
       3788 
     | 
    
         
            -
                "UpdateFieldLevelEncryptionProfileResult":{
         
     | 
| 
       3789 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3790 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3791 
     | 
    
         
            -
                    "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
         
     | 
| 
       3792 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3793 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3794 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3795 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3796 
     | 
    
         
            -
                    }
         
     | 
| 
       3797 
     | 
    
         
            -
                  },
         
     | 
| 
       3798 
     | 
    
         
            -
                  "payload":"FieldLevelEncryptionProfile"
         
     | 
| 
       3799 
     | 
    
         
            -
                },
         
     | 
| 
       3800 
     | 
    
         
            -
                "UpdatePublicKeyRequest":{
         
     | 
| 
       3801 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3802 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3803 
     | 
    
         
            -
                    "PublicKeyConfig",
         
     | 
| 
       3804 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3805 
     | 
    
         
            -
                  ],
         
     | 
| 
       3806 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3807 
     | 
    
         
            -
                    "PublicKeyConfig":{
         
     | 
| 
       3808 
     | 
    
         
            -
                      "shape":"PublicKeyConfig",
         
     | 
| 
       3809 
     | 
    
         
            -
                      "locationName":"PublicKeyConfig",
         
     | 
| 
       3810 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3811 
     | 
    
         
            -
                    },
         
     | 
| 
       3812 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3813 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3814 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3815 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3816 
     | 
    
         
            -
                    },
         
     | 
| 
       3817 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3818 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3819 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3820 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3821 
     | 
    
         
            -
                    }
         
     | 
| 
       3822 
     | 
    
         
            -
                  },
         
     | 
| 
       3823 
     | 
    
         
            -
                  "payload":"PublicKeyConfig"
         
     | 
| 
       3824 
     | 
    
         
            -
                },
         
     | 
| 
       3825 
     | 
    
         
            -
                "UpdatePublicKeyResult":{
         
     | 
| 
       3826 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3827 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3828 
     | 
    
         
            -
                    "PublicKey":{"shape":"PublicKey"},
         
     | 
| 
       3829 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3830 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3831 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3832 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3833 
     | 
    
         
            -
                    }
         
     | 
| 
       3834 
     | 
    
         
            -
                  },
         
     | 
| 
       3835 
     | 
    
         
            -
                  "payload":"PublicKey"
         
     | 
| 
       3836 
     | 
    
         
            -
                },
         
     | 
| 
       3837 
     | 
    
         
            -
                "UpdateStreamingDistributionRequest":{
         
     | 
| 
       3838 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3839 
     | 
    
         
            -
                  "required":[
         
     | 
| 
       3840 
     | 
    
         
            -
                    "StreamingDistributionConfig",
         
     | 
| 
       3841 
     | 
    
         
            -
                    "Id"
         
     | 
| 
       3842 
     | 
    
         
            -
                  ],
         
     | 
| 
       3843 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3844 
     | 
    
         
            -
                    "StreamingDistributionConfig":{
         
     | 
| 
       3845 
     | 
    
         
            -
                      "shape":"StreamingDistributionConfig",
         
     | 
| 
       3846 
     | 
    
         
            -
                      "locationName":"StreamingDistributionConfig",
         
     | 
| 
       3847 
     | 
    
         
            -
                      "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2017-10-30/"}
         
     | 
| 
       3848 
     | 
    
         
            -
                    },
         
     | 
| 
       3849 
     | 
    
         
            -
                    "Id":{
         
     | 
| 
       3850 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3851 
     | 
    
         
            -
                      "location":"uri",
         
     | 
| 
       3852 
     | 
    
         
            -
                      "locationName":"Id"
         
     | 
| 
       3853 
     | 
    
         
            -
                    },
         
     | 
| 
       3854 
     | 
    
         
            -
                    "IfMatch":{
         
     | 
| 
       3855 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3856 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3857 
     | 
    
         
            -
                      "locationName":"If-Match"
         
     | 
| 
       3858 
     | 
    
         
            -
                    }
         
     | 
| 
       3859 
     | 
    
         
            -
                  },
         
     | 
| 
       3860 
     | 
    
         
            -
                  "payload":"StreamingDistributionConfig"
         
     | 
| 
       3861 
     | 
    
         
            -
                },
         
     | 
| 
       3862 
     | 
    
         
            -
                "UpdateStreamingDistributionResult":{
         
     | 
| 
       3863 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3864 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3865 
     | 
    
         
            -
                    "StreamingDistribution":{"shape":"StreamingDistribution"},
         
     | 
| 
       3866 
     | 
    
         
            -
                    "ETag":{
         
     | 
| 
       3867 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3868 
     | 
    
         
            -
                      "location":"header",
         
     | 
| 
       3869 
     | 
    
         
            -
                      "locationName":"ETag"
         
     | 
| 
       3870 
     | 
    
         
            -
                    }
         
     | 
| 
       3871 
     | 
    
         
            -
                  },
         
     | 
| 
       3872 
     | 
    
         
            -
                  "payload":"StreamingDistribution"
         
     | 
| 
       3873 
     | 
    
         
            -
                },
         
     | 
| 
       3874 
     | 
    
         
            -
                "ViewerCertificate":{
         
     | 
| 
       3875 
     | 
    
         
            -
                  "type":"structure",
         
     | 
| 
       3876 
     | 
    
         
            -
                  "members":{
         
     | 
| 
       3877 
     | 
    
         
            -
                    "CloudFrontDefaultCertificate":{"shape":"boolean"},
         
     | 
| 
       3878 
     | 
    
         
            -
                    "IAMCertificateId":{"shape":"string"},
         
     | 
| 
       3879 
     | 
    
         
            -
                    "ACMCertificateArn":{"shape":"string"},
         
     | 
| 
       3880 
     | 
    
         
            -
                    "SSLSupportMethod":{"shape":"SSLSupportMethod"},
         
     | 
| 
       3881 
     | 
    
         
            -
                    "MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"},
         
     | 
| 
       3882 
     | 
    
         
            -
                    "Certificate":{
         
     | 
| 
       3883 
     | 
    
         
            -
                      "shape":"string",
         
     | 
| 
       3884 
     | 
    
         
            -
                      "deprecated":true
         
     | 
| 
       3885 
     | 
    
         
            -
                    },
         
     | 
| 
       3886 
     | 
    
         
            -
                    "CertificateSource":{
         
     | 
| 
       3887 
     | 
    
         
            -
                      "shape":"CertificateSource",
         
     | 
| 
       3888 
     | 
    
         
            -
                      "deprecated":true
         
     | 
| 
       3889 
     | 
    
         
            -
                    }
         
     | 
| 
       3890 
     | 
    
         
            -
                  }
         
     | 
| 
       3891 
     | 
    
         
            -
                },
         
     | 
| 
       3892 
     | 
    
         
            -
                "ViewerProtocolPolicy":{
         
     | 
| 
       3893 
     | 
    
         
            -
                  "type":"string",
         
     | 
| 
       3894 
     | 
    
         
            -
                  "enum":[
         
     | 
| 
       3895 
     | 
    
         
            -
                    "allow-all",
         
     | 
| 
       3896 
     | 
    
         
            -
                    "https-only",
         
     | 
| 
       3897 
     | 
    
         
            -
                    "redirect-to-https"
         
     | 
| 
       3898 
     | 
    
         
            -
                  ]
         
     | 
| 
       3899 
     | 
    
         
            -
                },
         
     | 
| 
       3900 
     | 
    
         
            -
                "boolean":{"type":"boolean"},
         
     | 
| 
       3901 
     | 
    
         
            -
                "integer":{"type":"integer"},
         
     | 
| 
       3902 
     | 
    
         
            -
                "long":{"type":"long"},
         
     | 
| 
       3903 
     | 
    
         
            -
                "string":{"type":"string"},
         
     | 
| 
       3904 
     | 
    
         
            -
                "timestamp":{"type":"timestamp"}
         
     | 
| 
       3905 
     | 
    
         
            -
              }
         
     | 
| 
       3906 
     | 
    
         
            -
            }
         
     |