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,212 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              "pagination": {
         
     | 
| 
       3 
     | 
    
         
            -
                "DescribeCertificates": {
         
     | 
| 
       4 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       5 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       6 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       7 
     | 
    
         
            -
                  "result_key": "Certificates"
         
     | 
| 
       8 
     | 
    
         
            -
                },
         
     | 
| 
       9 
     | 
    
         
            -
                "DescribeCustomAvailabilityZones": {
         
     | 
| 
       10 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       11 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       12 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       13 
     | 
    
         
            -
                  "result_key": "CustomAvailabilityZones"
         
     | 
| 
       14 
     | 
    
         
            -
                },
         
     | 
| 
       15 
     | 
    
         
            -
                "DescribeDBClusterBacktracks": {
         
     | 
| 
       16 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       17 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       18 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       19 
     | 
    
         
            -
                  "result_key": "DBClusterBacktracks"
         
     | 
| 
       20 
     | 
    
         
            -
                },
         
     | 
| 
       21 
     | 
    
         
            -
                "DescribeDBClusterEndpoints": {
         
     | 
| 
       22 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       23 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       24 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       25 
     | 
    
         
            -
                  "result_key": "DBClusterEndpoints"
         
     | 
| 
       26 
     | 
    
         
            -
                },
         
     | 
| 
       27 
     | 
    
         
            -
                "DescribeDBClusterParameterGroups": {
         
     | 
| 
       28 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       29 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       30 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       31 
     | 
    
         
            -
                  "result_key": "DBClusterParameterGroups"
         
     | 
| 
       32 
     | 
    
         
            -
                },
         
     | 
| 
       33 
     | 
    
         
            -
                "DescribeDBClusterParameters": {
         
     | 
| 
       34 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       35 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       36 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       37 
     | 
    
         
            -
                  "result_key": "Parameters"
         
     | 
| 
       38 
     | 
    
         
            -
                },
         
     | 
| 
       39 
     | 
    
         
            -
                "DescribeDBClusterSnapshots": {
         
     | 
| 
       40 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       41 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       42 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       43 
     | 
    
         
            -
                  "result_key": "DBClusterSnapshots"
         
     | 
| 
       44 
     | 
    
         
            -
                },
         
     | 
| 
       45 
     | 
    
         
            -
                "DescribeDBClusters": {
         
     | 
| 
       46 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       47 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       48 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       49 
     | 
    
         
            -
                  "result_key": "DBClusters"
         
     | 
| 
       50 
     | 
    
         
            -
                },
         
     | 
| 
       51 
     | 
    
         
            -
                "DescribeDBEngineVersions": {
         
     | 
| 
       52 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       53 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       54 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       55 
     | 
    
         
            -
                  "result_key": "DBEngineVersions"
         
     | 
| 
       56 
     | 
    
         
            -
                },
         
     | 
| 
       57 
     | 
    
         
            -
                "DescribeDBInstanceAutomatedBackups": {
         
     | 
| 
       58 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       59 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       60 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       61 
     | 
    
         
            -
                  "result_key": "DBInstanceAutomatedBackups"
         
     | 
| 
       62 
     | 
    
         
            -
                },
         
     | 
| 
       63 
     | 
    
         
            -
                "DescribeDBInstances": {
         
     | 
| 
       64 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       65 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       66 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       67 
     | 
    
         
            -
                  "result_key": "DBInstances"
         
     | 
| 
       68 
     | 
    
         
            -
                },
         
     | 
| 
       69 
     | 
    
         
            -
                "DescribeDBLogFiles": {
         
     | 
| 
       70 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       71 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       72 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       73 
     | 
    
         
            -
                  "result_key": "DescribeDBLogFiles"
         
     | 
| 
       74 
     | 
    
         
            -
                },
         
     | 
| 
       75 
     | 
    
         
            -
                "DescribeDBParameterGroups": {
         
     | 
| 
       76 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       77 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       78 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       79 
     | 
    
         
            -
                  "result_key": "DBParameterGroups"
         
     | 
| 
       80 
     | 
    
         
            -
                },
         
     | 
| 
       81 
     | 
    
         
            -
                "DescribeDBParameters": {
         
     | 
| 
       82 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       83 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       84 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       85 
     | 
    
         
            -
                  "result_key": "Parameters"
         
     | 
| 
       86 
     | 
    
         
            -
                },
         
     | 
| 
       87 
     | 
    
         
            -
                "DescribeDBProxies": {
         
     | 
| 
       88 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       89 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       90 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       91 
     | 
    
         
            -
                  "result_key": "DBProxies"
         
     | 
| 
       92 
     | 
    
         
            -
                },
         
     | 
| 
       93 
     | 
    
         
            -
                "DescribeDBProxyTargetGroups": {
         
     | 
| 
       94 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       95 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       96 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       97 
     | 
    
         
            -
                  "result_key": "TargetGroups"
         
     | 
| 
       98 
     | 
    
         
            -
                },
         
     | 
| 
       99 
     | 
    
         
            -
                "DescribeDBProxyTargets": {
         
     | 
| 
       100 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       101 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       102 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       103 
     | 
    
         
            -
                  "result_key": "Targets"
         
     | 
| 
       104 
     | 
    
         
            -
                },
         
     | 
| 
       105 
     | 
    
         
            -
                "DescribeDBSecurityGroups": {
         
     | 
| 
       106 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       107 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       108 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       109 
     | 
    
         
            -
                  "result_key": "DBSecurityGroups"
         
     | 
| 
       110 
     | 
    
         
            -
                },
         
     | 
| 
       111 
     | 
    
         
            -
                "DescribeDBSnapshots": {
         
     | 
| 
       112 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       113 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       114 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       115 
     | 
    
         
            -
                  "result_key": "DBSnapshots"
         
     | 
| 
       116 
     | 
    
         
            -
                },
         
     | 
| 
       117 
     | 
    
         
            -
                "DescribeDBSubnetGroups": {
         
     | 
| 
       118 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       119 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       120 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       121 
     | 
    
         
            -
                  "result_key": "DBSubnetGroups"
         
     | 
| 
       122 
     | 
    
         
            -
                },
         
     | 
| 
       123 
     | 
    
         
            -
                "DescribeEngineDefaultParameters": {
         
     | 
| 
       124 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       125 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       126 
     | 
    
         
            -
                  "output_token": "EngineDefaults.Marker",
         
     | 
| 
       127 
     | 
    
         
            -
                  "result_key": "EngineDefaults.Parameters"
         
     | 
| 
       128 
     | 
    
         
            -
                },
         
     | 
| 
       129 
     | 
    
         
            -
                "DescribeEventSubscriptions": {
         
     | 
| 
       130 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       131 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       132 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       133 
     | 
    
         
            -
                  "result_key": "EventSubscriptionsList"
         
     | 
| 
       134 
     | 
    
         
            -
                },
         
     | 
| 
       135 
     | 
    
         
            -
                "DescribeEvents": {
         
     | 
| 
       136 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       137 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       138 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       139 
     | 
    
         
            -
                  "result_key": "Events"
         
     | 
| 
       140 
     | 
    
         
            -
                },
         
     | 
| 
       141 
     | 
    
         
            -
                "DescribeExportTasks": {
         
     | 
| 
       142 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       143 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       144 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       145 
     | 
    
         
            -
                  "result_key": "ExportTasks"
         
     | 
| 
       146 
     | 
    
         
            -
                },
         
     | 
| 
       147 
     | 
    
         
            -
                "DescribeGlobalClusters": {
         
     | 
| 
       148 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       149 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       150 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       151 
     | 
    
         
            -
                  "result_key": "GlobalClusters"
         
     | 
| 
       152 
     | 
    
         
            -
                },
         
     | 
| 
       153 
     | 
    
         
            -
                "DescribeInstallationMedia": {
         
     | 
| 
       154 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       155 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       156 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       157 
     | 
    
         
            -
                  "result_key": "InstallationMedia"
         
     | 
| 
       158 
     | 
    
         
            -
                },
         
     | 
| 
       159 
     | 
    
         
            -
                "DescribeOptionGroupOptions": {
         
     | 
| 
       160 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       161 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       162 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       163 
     | 
    
         
            -
                  "result_key": "OptionGroupOptions"
         
     | 
| 
       164 
     | 
    
         
            -
                },
         
     | 
| 
       165 
     | 
    
         
            -
                "DescribeOptionGroups": {
         
     | 
| 
       166 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       167 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       168 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       169 
     | 
    
         
            -
                  "result_key": "OptionGroupsList"
         
     | 
| 
       170 
     | 
    
         
            -
                },
         
     | 
| 
       171 
     | 
    
         
            -
                "DescribeOrderableDBInstanceOptions": {
         
     | 
| 
       172 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       173 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       174 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       175 
     | 
    
         
            -
                  "result_key": "OrderableDBInstanceOptions"
         
     | 
| 
       176 
     | 
    
         
            -
                },
         
     | 
| 
       177 
     | 
    
         
            -
                "DescribePendingMaintenanceActions": {
         
     | 
| 
       178 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       179 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       180 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       181 
     | 
    
         
            -
                  "result_key": "PendingMaintenanceActions"
         
     | 
| 
       182 
     | 
    
         
            -
                },
         
     | 
| 
       183 
     | 
    
         
            -
                "DescribeReservedDBInstances": {
         
     | 
| 
       184 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       185 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       186 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       187 
     | 
    
         
            -
                  "result_key": "ReservedDBInstances"
         
     | 
| 
       188 
     | 
    
         
            -
                },
         
     | 
| 
       189 
     | 
    
         
            -
                "DescribeReservedDBInstancesOfferings": {
         
     | 
| 
       190 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       191 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       192 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       193 
     | 
    
         
            -
                  "result_key": "ReservedDBInstancesOfferings"
         
     | 
| 
       194 
     | 
    
         
            -
                },
         
     | 
| 
       195 
     | 
    
         
            -
                "DescribeSourceRegions": {
         
     | 
| 
       196 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       197 
     | 
    
         
            -
                  "limit_key": "MaxRecords",
         
     | 
| 
       198 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       199 
     | 
    
         
            -
                  "result_key": "SourceRegions"
         
     | 
| 
       200 
     | 
    
         
            -
                },
         
     | 
| 
       201 
     | 
    
         
            -
                "DownloadDBLogFilePortion": {
         
     | 
| 
       202 
     | 
    
         
            -
                  "input_token": "Marker",
         
     | 
| 
       203 
     | 
    
         
            -
                  "limit_key": "NumberOfLines",
         
     | 
| 
       204 
     | 
    
         
            -
                  "more_results": "AdditionalDataPending",
         
     | 
| 
       205 
     | 
    
         
            -
                  "output_token": "Marker",
         
     | 
| 
       206 
     | 
    
         
            -
                  "result_key": "LogFileData"
         
     | 
| 
       207 
     | 
    
         
            -
                },
         
     | 
| 
       208 
     | 
    
         
            -
                "ListTagsForResource": {
         
     | 
| 
       209 
     | 
    
         
            -
                  "result_key": "TagList"
         
     | 
| 
       210 
     | 
    
         
            -
                }
         
     | 
| 
       211 
     | 
    
         
            -
              }
         
     | 
| 
       212 
     | 
    
         
            -
            }
         
     | 
| 
         @@ -1,3272 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
                "service": {
         
     | 
| 
       3 
     | 
    
         
            -
                    "actions": {
         
     | 
| 
       4 
     | 
    
         
            -
                        "CreateDBCluster": {
         
     | 
| 
       5 
     | 
    
         
            -
                            "request": { "operation": "CreateDBCluster" },
         
     | 
| 
       6 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       7 
     | 
    
         
            -
                                "type": "DBCluster",
         
     | 
| 
       8 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       9 
     | 
    
         
            -
                                    {
         
     | 
| 
       10 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       11 
     | 
    
         
            -
                                        "source": "requestParameter",
         
     | 
| 
       12 
     | 
    
         
            -
                                        "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       13 
     | 
    
         
            -
                                    }
         
     | 
| 
       14 
     | 
    
         
            -
                                ],
         
     | 
| 
       15 
     | 
    
         
            -
                                "path": "DBCluster"
         
     | 
| 
       16 
     | 
    
         
            -
                            }
         
     | 
| 
       17 
     | 
    
         
            -
                        },
         
     | 
| 
       18 
     | 
    
         
            -
                        "CreateDBClusterParameterGroup": {
         
     | 
| 
       19 
     | 
    
         
            -
                            "request": { "operation": "CreateDBClusterParameterGroup" },
         
     | 
| 
       20 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       21 
     | 
    
         
            -
                                "type": "DBClusterParameterGroup",
         
     | 
| 
       22 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       23 
     | 
    
         
            -
                                    {
         
     | 
| 
       24 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       25 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       26 
     | 
    
         
            -
                                        "path": "DBClusterParameterGroup.DBClusterParameterGroupName"
         
     | 
| 
       27 
     | 
    
         
            -
                                    }
         
     | 
| 
       28 
     | 
    
         
            -
                                ],
         
     | 
| 
       29 
     | 
    
         
            -
                                "path": "DBClusterParameterGroup"
         
     | 
| 
       30 
     | 
    
         
            -
                            }
         
     | 
| 
       31 
     | 
    
         
            -
                        },
         
     | 
| 
       32 
     | 
    
         
            -
                        "CreateDBInstance": {
         
     | 
| 
       33 
     | 
    
         
            -
                            "request": { "operation": "CreateDBInstance" },
         
     | 
| 
       34 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       35 
     | 
    
         
            -
                                "type": "DBInstance",
         
     | 
| 
       36 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       37 
     | 
    
         
            -
                                    {
         
     | 
| 
       38 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       39 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       40 
     | 
    
         
            -
                                        "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       41 
     | 
    
         
            -
                                    }
         
     | 
| 
       42 
     | 
    
         
            -
                                ],
         
     | 
| 
       43 
     | 
    
         
            -
                                "path": "DBInstance"
         
     | 
| 
       44 
     | 
    
         
            -
                            }
         
     | 
| 
       45 
     | 
    
         
            -
                        },
         
     | 
| 
       46 
     | 
    
         
            -
                        "CreateDBParameterGroup": {
         
     | 
| 
       47 
     | 
    
         
            -
                            "request": { "operation": "CreateDBParameterGroup" },
         
     | 
| 
       48 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       49 
     | 
    
         
            -
                                "type": "DBParameterGroup",
         
     | 
| 
       50 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       51 
     | 
    
         
            -
                                    {
         
     | 
| 
       52 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       53 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       54 
     | 
    
         
            -
                                        "path": "DBParameterGroup.DBParameterGroupName"
         
     | 
| 
       55 
     | 
    
         
            -
                                    }
         
     | 
| 
       56 
     | 
    
         
            -
                                ],
         
     | 
| 
       57 
     | 
    
         
            -
                                "path": "DBParameterGroup"
         
     | 
| 
       58 
     | 
    
         
            -
                            }
         
     | 
| 
       59 
     | 
    
         
            -
                        },
         
     | 
| 
       60 
     | 
    
         
            -
                        "CreateDBSecurityGroup": {
         
     | 
| 
       61 
     | 
    
         
            -
                            "request": { "operation": "CreateDBSecurityGroup" },
         
     | 
| 
       62 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       63 
     | 
    
         
            -
                                "type": "DBSecurityGroup",
         
     | 
| 
       64 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       65 
     | 
    
         
            -
                                    {
         
     | 
| 
       66 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       67 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       68 
     | 
    
         
            -
                                        "path": "DBSecurityGroup.DBSecurityGroupName"
         
     | 
| 
       69 
     | 
    
         
            -
                                    }
         
     | 
| 
       70 
     | 
    
         
            -
                                ],
         
     | 
| 
       71 
     | 
    
         
            -
                                "path": "DBSecurityGroup"
         
     | 
| 
       72 
     | 
    
         
            -
                            }
         
     | 
| 
       73 
     | 
    
         
            -
                        },
         
     | 
| 
       74 
     | 
    
         
            -
                        "CreateDBSubnetGroup": {
         
     | 
| 
       75 
     | 
    
         
            -
                            "request": { "operation": "CreateDBSubnetGroup" },
         
     | 
| 
       76 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       77 
     | 
    
         
            -
                                "type": "DBSubnetGroup",
         
     | 
| 
       78 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       79 
     | 
    
         
            -
                                    {
         
     | 
| 
       80 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       81 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       82 
     | 
    
         
            -
                                        "path": "DBSubnetGroup.DBSubnetGroupName"
         
     | 
| 
       83 
     | 
    
         
            -
                                    }
         
     | 
| 
       84 
     | 
    
         
            -
                                ],
         
     | 
| 
       85 
     | 
    
         
            -
                                "path": "DBSubnetGroup"
         
     | 
| 
       86 
     | 
    
         
            -
                            }
         
     | 
| 
       87 
     | 
    
         
            -
                        },
         
     | 
| 
       88 
     | 
    
         
            -
                        "CreateEventSubscription": {
         
     | 
| 
       89 
     | 
    
         
            -
                            "request": { "operation": "CreateEventSubscription" },
         
     | 
| 
       90 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       91 
     | 
    
         
            -
                                "type": "EventSubscription",
         
     | 
| 
       92 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       93 
     | 
    
         
            -
                                    {
         
     | 
| 
       94 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       95 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       96 
     | 
    
         
            -
                                        "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       97 
     | 
    
         
            -
                                    }
         
     | 
| 
       98 
     | 
    
         
            -
                                ],
         
     | 
| 
       99 
     | 
    
         
            -
                                "path": "EventSubscription"
         
     | 
| 
       100 
     | 
    
         
            -
                            }
         
     | 
| 
       101 
     | 
    
         
            -
                        },
         
     | 
| 
       102 
     | 
    
         
            -
                        "CreateOptionGroup": {
         
     | 
| 
       103 
     | 
    
         
            -
                            "request": { "operation": "CreateOptionGroup" },
         
     | 
| 
       104 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       105 
     | 
    
         
            -
                                "type": "OptionGroup",
         
     | 
| 
       106 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       107 
     | 
    
         
            -
                                    {
         
     | 
| 
       108 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       109 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       110 
     | 
    
         
            -
                                        "path": "OptionGroup.OptionGroupName"
         
     | 
| 
       111 
     | 
    
         
            -
                                    }
         
     | 
| 
       112 
     | 
    
         
            -
                                ],
         
     | 
| 
       113 
     | 
    
         
            -
                                "path": "OptionGroup"
         
     | 
| 
       114 
     | 
    
         
            -
                            }
         
     | 
| 
       115 
     | 
    
         
            -
                        }
         
     | 
| 
       116 
     | 
    
         
            -
                    },
         
     | 
| 
       117 
     | 
    
         
            -
                    "has": {
         
     | 
| 
       118 
     | 
    
         
            -
                        "Certificate": {
         
     | 
| 
       119 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       120 
     | 
    
         
            -
                                "type": "Certificate",
         
     | 
| 
       121 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       122 
     | 
    
         
            -
                                    {
         
     | 
| 
       123 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       124 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       125 
     | 
    
         
            -
                                    }
         
     | 
| 
       126 
     | 
    
         
            -
                                ]
         
     | 
| 
       127 
     | 
    
         
            -
                            }
         
     | 
| 
       128 
     | 
    
         
            -
                        },
         
     | 
| 
       129 
     | 
    
         
            -
                        "DBCluster": {
         
     | 
| 
       130 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       131 
     | 
    
         
            -
                                "type": "DBCluster",
         
     | 
| 
       132 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       133 
     | 
    
         
            -
                                    {
         
     | 
| 
       134 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       135 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       136 
     | 
    
         
            -
                                    }
         
     | 
| 
       137 
     | 
    
         
            -
                                ]
         
     | 
| 
       138 
     | 
    
         
            -
                            }
         
     | 
| 
       139 
     | 
    
         
            -
                        },
         
     | 
| 
       140 
     | 
    
         
            -
                        "DBClusterParameterGroup": {
         
     | 
| 
       141 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       142 
     | 
    
         
            -
                                "type": "DBClusterParameterGroup",
         
     | 
| 
       143 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       144 
     | 
    
         
            -
                                    {
         
     | 
| 
       145 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       146 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       147 
     | 
    
         
            -
                                    }
         
     | 
| 
       148 
     | 
    
         
            -
                                ]
         
     | 
| 
       149 
     | 
    
         
            -
                            }
         
     | 
| 
       150 
     | 
    
         
            -
                        },
         
     | 
| 
       151 
     | 
    
         
            -
                        "DBEngineVersion": {
         
     | 
| 
       152 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       153 
     | 
    
         
            -
                                "type": "DBEngineVersion",
         
     | 
| 
       154 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       155 
     | 
    
         
            -
                                    {
         
     | 
| 
       156 
     | 
    
         
            -
                                        "target": "EngineName",
         
     | 
| 
       157 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       158 
     | 
    
         
            -
                                    },
         
     | 
| 
       159 
     | 
    
         
            -
                                    {
         
     | 
| 
       160 
     | 
    
         
            -
                                        "target": "Version",
         
     | 
| 
       161 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       162 
     | 
    
         
            -
                                    }
         
     | 
| 
       163 
     | 
    
         
            -
                                ]
         
     | 
| 
       164 
     | 
    
         
            -
                            }
         
     | 
| 
       165 
     | 
    
         
            -
                        },
         
     | 
| 
       166 
     | 
    
         
            -
                        "DBEngine": {
         
     | 
| 
       167 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       168 
     | 
    
         
            -
                                "type": "DBEngine",
         
     | 
| 
       169 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       170 
     | 
    
         
            -
                                    {
         
     | 
| 
       171 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       172 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       173 
     | 
    
         
            -
                                    }
         
     | 
| 
       174 
     | 
    
         
            -
                                ]
         
     | 
| 
       175 
     | 
    
         
            -
                            }
         
     | 
| 
       176 
     | 
    
         
            -
                        },
         
     | 
| 
       177 
     | 
    
         
            -
                        "DBInstance": {
         
     | 
| 
       178 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       179 
     | 
    
         
            -
                                "type": "DBInstance",
         
     | 
| 
       180 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       181 
     | 
    
         
            -
                                    {
         
     | 
| 
       182 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       183 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       184 
     | 
    
         
            -
                                    }
         
     | 
| 
       185 
     | 
    
         
            -
                                ]
         
     | 
| 
       186 
     | 
    
         
            -
                            }
         
     | 
| 
       187 
     | 
    
         
            -
                        },
         
     | 
| 
       188 
     | 
    
         
            -
                        "DBParameterGroup": {
         
     | 
| 
       189 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       190 
     | 
    
         
            -
                                "type": "DBParameterGroup",
         
     | 
| 
       191 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       192 
     | 
    
         
            -
                                    {
         
     | 
| 
       193 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       194 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       195 
     | 
    
         
            -
                                    }
         
     | 
| 
       196 
     | 
    
         
            -
                                ]
         
     | 
| 
       197 
     | 
    
         
            -
                            }
         
     | 
| 
       198 
     | 
    
         
            -
                        },
         
     | 
| 
       199 
     | 
    
         
            -
                        "DBParameterGroupFamily": {
         
     | 
| 
       200 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       201 
     | 
    
         
            -
                                "type": "DBParameterGroupFamily",
         
     | 
| 
       202 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       203 
     | 
    
         
            -
                                    {
         
     | 
| 
       204 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       205 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       206 
     | 
    
         
            -
                                    }
         
     | 
| 
       207 
     | 
    
         
            -
                                ]
         
     | 
| 
       208 
     | 
    
         
            -
                            }
         
     | 
| 
       209 
     | 
    
         
            -
                        },
         
     | 
| 
       210 
     | 
    
         
            -
                        "DBSecurityGroup": {
         
     | 
| 
       211 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       212 
     | 
    
         
            -
                                "type": "DBSecurityGroup",
         
     | 
| 
       213 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       214 
     | 
    
         
            -
                                    {
         
     | 
| 
       215 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       216 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       217 
     | 
    
         
            -
                                    }
         
     | 
| 
       218 
     | 
    
         
            -
                                ]
         
     | 
| 
       219 
     | 
    
         
            -
                            }
         
     | 
| 
       220 
     | 
    
         
            -
                        },
         
     | 
| 
       221 
     | 
    
         
            -
                        "DBSubnetGroup": {
         
     | 
| 
       222 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       223 
     | 
    
         
            -
                                "type": "DBSubnetGroup",
         
     | 
| 
       224 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       225 
     | 
    
         
            -
                                    {
         
     | 
| 
       226 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       227 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       228 
     | 
    
         
            -
                                    }
         
     | 
| 
       229 
     | 
    
         
            -
                                ]
         
     | 
| 
       230 
     | 
    
         
            -
                            }
         
     | 
| 
       231 
     | 
    
         
            -
                        },
         
     | 
| 
       232 
     | 
    
         
            -
                        "EventCategoryMap": {
         
     | 
| 
       233 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       234 
     | 
    
         
            -
                                "type": "EventCategoryMap",
         
     | 
| 
       235 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       236 
     | 
    
         
            -
                                    {
         
     | 
| 
       237 
     | 
    
         
            -
                                        "target": "SourceType",
         
     | 
| 
       238 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       239 
     | 
    
         
            -
                                    }
         
     | 
| 
       240 
     | 
    
         
            -
                                ]
         
     | 
| 
       241 
     | 
    
         
            -
                            }
         
     | 
| 
       242 
     | 
    
         
            -
                        },
         
     | 
| 
       243 
     | 
    
         
            -
                        "EventSubscription": {
         
     | 
| 
       244 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       245 
     | 
    
         
            -
                                "type": "EventSubscription",
         
     | 
| 
       246 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       247 
     | 
    
         
            -
                                    {
         
     | 
| 
       248 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       249 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       250 
     | 
    
         
            -
                                    }
         
     | 
| 
       251 
     | 
    
         
            -
                                ]
         
     | 
| 
       252 
     | 
    
         
            -
                            }
         
     | 
| 
       253 
     | 
    
         
            -
                        },
         
     | 
| 
       254 
     | 
    
         
            -
                        "OptionGroup": {
         
     | 
| 
       255 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       256 
     | 
    
         
            -
                                "type": "OptionGroup",
         
     | 
| 
       257 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       258 
     | 
    
         
            -
                                    {
         
     | 
| 
       259 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       260 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       261 
     | 
    
         
            -
                                    }
         
     | 
| 
       262 
     | 
    
         
            -
                                ]
         
     | 
| 
       263 
     | 
    
         
            -
                            }
         
     | 
| 
       264 
     | 
    
         
            -
                        },
         
     | 
| 
       265 
     | 
    
         
            -
                        "PendingMaintenanceAction": {
         
     | 
| 
       266 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       267 
     | 
    
         
            -
                                "type": "PendingMaintenanceAction",
         
     | 
| 
       268 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       269 
     | 
    
         
            -
                                    {
         
     | 
| 
       270 
     | 
    
         
            -
                                        "target": "TargetARN",
         
     | 
| 
       271 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       272 
     | 
    
         
            -
                                    },
         
     | 
| 
       273 
     | 
    
         
            -
                                    {
         
     | 
| 
       274 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       275 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       276 
     | 
    
         
            -
                                    }
         
     | 
| 
       277 
     | 
    
         
            -
                                ]
         
     | 
| 
       278 
     | 
    
         
            -
                            }
         
     | 
| 
       279 
     | 
    
         
            -
                        },
         
     | 
| 
       280 
     | 
    
         
            -
                        "ReservedDBInstance": {
         
     | 
| 
       281 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       282 
     | 
    
         
            -
                                "type": "ReservedDBInstance",
         
     | 
| 
       283 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       284 
     | 
    
         
            -
                                    {
         
     | 
| 
       285 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       286 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       287 
     | 
    
         
            -
                                    }
         
     | 
| 
       288 
     | 
    
         
            -
                                ]
         
     | 
| 
       289 
     | 
    
         
            -
                            }
         
     | 
| 
       290 
     | 
    
         
            -
                        },
         
     | 
| 
       291 
     | 
    
         
            -
                        "ReservedDBInstancesOffering": {
         
     | 
| 
       292 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       293 
     | 
    
         
            -
                                "type": "ReservedDBInstancesOffering",
         
     | 
| 
       294 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       295 
     | 
    
         
            -
                                    {
         
     | 
| 
       296 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       297 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       298 
     | 
    
         
            -
                                    }
         
     | 
| 
       299 
     | 
    
         
            -
                                ]
         
     | 
| 
       300 
     | 
    
         
            -
                            }
         
     | 
| 
       301 
     | 
    
         
            -
                        },
         
     | 
| 
       302 
     | 
    
         
            -
                        "ResourceWithPendingMaintenanceActions": {
         
     | 
| 
       303 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       304 
     | 
    
         
            -
                                "type": "ResourcePendingMaintenanceActionList",
         
     | 
| 
       305 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       306 
     | 
    
         
            -
                                    {
         
     | 
| 
       307 
     | 
    
         
            -
                                        "target": "ARN",
         
     | 
| 
       308 
     | 
    
         
            -
                                        "source": "input"
         
     | 
| 
       309 
     | 
    
         
            -
                                    }
         
     | 
| 
       310 
     | 
    
         
            -
                                ]
         
     | 
| 
       311 
     | 
    
         
            -
                            }
         
     | 
| 
       312 
     | 
    
         
            -
                        }
         
     | 
| 
       313 
     | 
    
         
            -
                    },
         
     | 
| 
       314 
     | 
    
         
            -
                    "hasMany": {
         
     | 
| 
       315 
     | 
    
         
            -
                        "AccountQuotas": {
         
     | 
| 
       316 
     | 
    
         
            -
                            "request": { "operation": "DescribeAccountAttributes" },
         
     | 
| 
       317 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       318 
     | 
    
         
            -
                                "type": "AccountQuota",
         
     | 
| 
       319 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       320 
     | 
    
         
            -
                                    {
         
     | 
| 
       321 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       322 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       323 
     | 
    
         
            -
                                        "path": "AccountQuotas[].AccountQuotaName"
         
     | 
| 
       324 
     | 
    
         
            -
                                    }
         
     | 
| 
       325 
     | 
    
         
            -
                                ],
         
     | 
| 
       326 
     | 
    
         
            -
                                "path": "AccountQuotas[]"
         
     | 
| 
       327 
     | 
    
         
            -
                            }
         
     | 
| 
       328 
     | 
    
         
            -
                        },
         
     | 
| 
       329 
     | 
    
         
            -
                        "Certificates": {
         
     | 
| 
       330 
     | 
    
         
            -
                            "request": { "operation": "DescribeCertificates" },
         
     | 
| 
       331 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       332 
     | 
    
         
            -
                                "type": "Certificate",
         
     | 
| 
       333 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       334 
     | 
    
         
            -
                                    {
         
     | 
| 
       335 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       336 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       337 
     | 
    
         
            -
                                        "path": "Certificates[].CertificateIdentifier"
         
     | 
| 
       338 
     | 
    
         
            -
                                    }
         
     | 
| 
       339 
     | 
    
         
            -
                                ],
         
     | 
| 
       340 
     | 
    
         
            -
                                "path": "Certificates[]"
         
     | 
| 
       341 
     | 
    
         
            -
                            }
         
     | 
| 
       342 
     | 
    
         
            -
                        },
         
     | 
| 
       343 
     | 
    
         
            -
                        "DBClusters": {
         
     | 
| 
       344 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBClusters" },
         
     | 
| 
       345 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       346 
     | 
    
         
            -
                                "type": "DBCluster",
         
     | 
| 
       347 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       348 
     | 
    
         
            -
                                    {
         
     | 
| 
       349 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       350 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       351 
     | 
    
         
            -
                                        "path": "DBClusters[].DBClusterIdentifier"
         
     | 
| 
       352 
     | 
    
         
            -
                                    }
         
     | 
| 
       353 
     | 
    
         
            -
                                ],
         
     | 
| 
       354 
     | 
    
         
            -
                                "path": "DBClusters[]"
         
     | 
| 
       355 
     | 
    
         
            -
                            }
         
     | 
| 
       356 
     | 
    
         
            -
                        },
         
     | 
| 
       357 
     | 
    
         
            -
                        "DBClusterParameterGroups": {
         
     | 
| 
       358 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBClusterParameterGroups" },
         
     | 
| 
       359 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       360 
     | 
    
         
            -
                                "type": "DBClusterParameterGroup",
         
     | 
| 
       361 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       362 
     | 
    
         
            -
                                    {
         
     | 
| 
       363 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       364 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       365 
     | 
    
         
            -
                                        "path": "DBClusterParameterGroups[].DBClusterParameterGroupName"
         
     | 
| 
       366 
     | 
    
         
            -
                                    }
         
     | 
| 
       367 
     | 
    
         
            -
                                ],
         
     | 
| 
       368 
     | 
    
         
            -
                                "path": "DBClusterParameterGroups[]"
         
     | 
| 
       369 
     | 
    
         
            -
                            }
         
     | 
| 
       370 
     | 
    
         
            -
                        },
         
     | 
| 
       371 
     | 
    
         
            -
                        "DBEngineVersions": {
         
     | 
| 
       372 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBEngineVersions" },
         
     | 
| 
       373 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       374 
     | 
    
         
            -
                                "type": "DBEngineVersion",
         
     | 
| 
       375 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       376 
     | 
    
         
            -
                                    {
         
     | 
| 
       377 
     | 
    
         
            -
                                        "target": "EngineName",
         
     | 
| 
       378 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       379 
     | 
    
         
            -
                                        "path": "DBEngineVersions[].Engine"
         
     | 
| 
       380 
     | 
    
         
            -
                                    },
         
     | 
| 
       381 
     | 
    
         
            -
                                    {
         
     | 
| 
       382 
     | 
    
         
            -
                                        "target": "Version",
         
     | 
| 
       383 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       384 
     | 
    
         
            -
                                        "path": "DBEngineVersions[].EngineVersion"
         
     | 
| 
       385 
     | 
    
         
            -
                                    }
         
     | 
| 
       386 
     | 
    
         
            -
                                ],
         
     | 
| 
       387 
     | 
    
         
            -
                                "path": "DBEngineVersions[]"
         
     | 
| 
       388 
     | 
    
         
            -
                            }
         
     | 
| 
       389 
     | 
    
         
            -
                        },
         
     | 
| 
       390 
     | 
    
         
            -
                        "DBInstances": {
         
     | 
| 
       391 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBInstances" },
         
     | 
| 
       392 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       393 
     | 
    
         
            -
                                "type": "DBInstance",
         
     | 
| 
       394 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       395 
     | 
    
         
            -
                                    {
         
     | 
| 
       396 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       397 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       398 
     | 
    
         
            -
                                        "path": "DBInstances[].DBInstanceIdentifier"
         
     | 
| 
       399 
     | 
    
         
            -
                                    }
         
     | 
| 
       400 
     | 
    
         
            -
                                ],
         
     | 
| 
       401 
     | 
    
         
            -
                                "path": "DBInstances[]"
         
     | 
| 
       402 
     | 
    
         
            -
                            }
         
     | 
| 
       403 
     | 
    
         
            -
                        },
         
     | 
| 
       404 
     | 
    
         
            -
                        "DBParameterGroups": {
         
     | 
| 
       405 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBParameterGroups" },
         
     | 
| 
       406 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       407 
     | 
    
         
            -
                                "type": "DBParameterGroup",
         
     | 
| 
       408 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       409 
     | 
    
         
            -
                                    {
         
     | 
| 
       410 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       411 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       412 
     | 
    
         
            -
                                        "path": "DBParameterGroups[].DBParameterGroupName"
         
     | 
| 
       413 
     | 
    
         
            -
                                    }
         
     | 
| 
       414 
     | 
    
         
            -
                                ],
         
     | 
| 
       415 
     | 
    
         
            -
                                "path": "DBParameterGroups[]"
         
     | 
| 
       416 
     | 
    
         
            -
                            }
         
     | 
| 
       417 
     | 
    
         
            -
                        },
         
     | 
| 
       418 
     | 
    
         
            -
                        "DBSecurityGroups": {
         
     | 
| 
       419 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBSecurityGroups" },
         
     | 
| 
       420 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       421 
     | 
    
         
            -
                                "type": "DBSecurityGroup",
         
     | 
| 
       422 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       423 
     | 
    
         
            -
                                    {
         
     | 
| 
       424 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       425 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       426 
     | 
    
         
            -
                                        "path": "DBSecurityGroups[].DBSecurityGroupName"
         
     | 
| 
       427 
     | 
    
         
            -
                                    }
         
     | 
| 
       428 
     | 
    
         
            -
                                ],
         
     | 
| 
       429 
     | 
    
         
            -
                                "path": "DBSecurityGroups[]"
         
     | 
| 
       430 
     | 
    
         
            -
                            }
         
     | 
| 
       431 
     | 
    
         
            -
                        },
         
     | 
| 
       432 
     | 
    
         
            -
                        "DBSnapshots": {
         
     | 
| 
       433 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBSnapshots" },
         
     | 
| 
       434 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       435 
     | 
    
         
            -
                                "type": "DBSnapshot",
         
     | 
| 
       436 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       437 
     | 
    
         
            -
                                    {
         
     | 
| 
       438 
     | 
    
         
            -
                                        "target": "InstanceId",
         
     | 
| 
       439 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       440 
     | 
    
         
            -
                                        "path": "DBSnapshots[].DBInstanceIdentifier"
         
     | 
| 
       441 
     | 
    
         
            -
                                    },
         
     | 
| 
       442 
     | 
    
         
            -
                                    {
         
     | 
| 
       443 
     | 
    
         
            -
                                        "target": "SnapshotId",
         
     | 
| 
       444 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       445 
     | 
    
         
            -
                                        "path": "DBSnapshots[].DBSnapshotIdentifier"
         
     | 
| 
       446 
     | 
    
         
            -
                                    }
         
     | 
| 
       447 
     | 
    
         
            -
                                ],
         
     | 
| 
       448 
     | 
    
         
            -
                                "path": "DBSnapshots[]"
         
     | 
| 
       449 
     | 
    
         
            -
                            }
         
     | 
| 
       450 
     | 
    
         
            -
                        },
         
     | 
| 
       451 
     | 
    
         
            -
                        "DBSubnetGroups": {
         
     | 
| 
       452 
     | 
    
         
            -
                            "request": { "operation": "DescribeDBSubnetGroups" },
         
     | 
| 
       453 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       454 
     | 
    
         
            -
                                "type": "DBSubnetGroup",
         
     | 
| 
       455 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       456 
     | 
    
         
            -
                                    {
         
     | 
| 
       457 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       458 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       459 
     | 
    
         
            -
                                        "path": "DBSubnetGroups[].DBSubnetGroupName"
         
     | 
| 
       460 
     | 
    
         
            -
                                    }
         
     | 
| 
       461 
     | 
    
         
            -
                                ],
         
     | 
| 
       462 
     | 
    
         
            -
                                "path": "DBSubnetGroups[]"
         
     | 
| 
       463 
     | 
    
         
            -
                            }
         
     | 
| 
       464 
     | 
    
         
            -
                        },
         
     | 
| 
       465 
     | 
    
         
            -
                        "EventCategoryMaps": {
         
     | 
| 
       466 
     | 
    
         
            -
                            "request": { "operation": "DescribeEventCategories" },
         
     | 
| 
       467 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       468 
     | 
    
         
            -
                                "type": "EventCategoryMap",
         
     | 
| 
       469 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       470 
     | 
    
         
            -
                                    {
         
     | 
| 
       471 
     | 
    
         
            -
                                        "target": "SourceType",
         
     | 
| 
       472 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       473 
     | 
    
         
            -
                                        "path": "EventCategoriesMapList[].SourceType"
         
     | 
| 
       474 
     | 
    
         
            -
                                    }
         
     | 
| 
       475 
     | 
    
         
            -
                                ],
         
     | 
| 
       476 
     | 
    
         
            -
                                "path": "EventCategoriesMapList[]"
         
     | 
| 
       477 
     | 
    
         
            -
                            }
         
     | 
| 
       478 
     | 
    
         
            -
                        },
         
     | 
| 
       479 
     | 
    
         
            -
                        "Events": {
         
     | 
| 
       480 
     | 
    
         
            -
                            "request": { "operation": "DescribeEvents" },
         
     | 
| 
       481 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       482 
     | 
    
         
            -
                                "type": "Event",
         
     | 
| 
       483 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       484 
     | 
    
         
            -
                                    {
         
     | 
| 
       485 
     | 
    
         
            -
                                        "target": "SourceId",
         
     | 
| 
       486 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       487 
     | 
    
         
            -
                                        "path": "Events[].SourceIdentifier"
         
     | 
| 
       488 
     | 
    
         
            -
                                    },
         
     | 
| 
       489 
     | 
    
         
            -
                                    {
         
     | 
| 
       490 
     | 
    
         
            -
                                        "target": "Date",
         
     | 
| 
       491 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       492 
     | 
    
         
            -
                                        "path": "Events[].Date"
         
     | 
| 
       493 
     | 
    
         
            -
                                    }
         
     | 
| 
       494 
     | 
    
         
            -
                                ],
         
     | 
| 
       495 
     | 
    
         
            -
                                "path": "Events[]"
         
     | 
| 
       496 
     | 
    
         
            -
                            }
         
     | 
| 
       497 
     | 
    
         
            -
                        },
         
     | 
| 
       498 
     | 
    
         
            -
                        "EventSubscriptions": {
         
     | 
| 
       499 
     | 
    
         
            -
                            "request": { "operation": "DescribeEventSubscriptions" },
         
     | 
| 
       500 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       501 
     | 
    
         
            -
                                "type": "EventSubscription",
         
     | 
| 
       502 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       503 
     | 
    
         
            -
                                    {
         
     | 
| 
       504 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       505 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       506 
     | 
    
         
            -
                                        "path": "EventSubscriptionsList[].CustSubscriptionId"
         
     | 
| 
       507 
     | 
    
         
            -
                                    }
         
     | 
| 
       508 
     | 
    
         
            -
                                ],
         
     | 
| 
       509 
     | 
    
         
            -
                                "path": "EventSubscriptionsList[]"
         
     | 
| 
       510 
     | 
    
         
            -
                            }
         
     | 
| 
       511 
     | 
    
         
            -
                        },
         
     | 
| 
       512 
     | 
    
         
            -
                        "OptionGroups": {
         
     | 
| 
       513 
     | 
    
         
            -
                            "request": { "operation": "DescribeOptionGroups" },
         
     | 
| 
       514 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       515 
     | 
    
         
            -
                                "type": "OptionGroup",
         
     | 
| 
       516 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       517 
     | 
    
         
            -
                                    {
         
     | 
| 
       518 
     | 
    
         
            -
                                        "target": "Name",
         
     | 
| 
       519 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       520 
     | 
    
         
            -
                                        "path": "OptionGroupsList[].OptionGroupName"
         
     | 
| 
       521 
     | 
    
         
            -
                                    }
         
     | 
| 
       522 
     | 
    
         
            -
                                ],
         
     | 
| 
       523 
     | 
    
         
            -
                                "path": "OptionGroupsList[]"
         
     | 
| 
       524 
     | 
    
         
            -
                            }
         
     | 
| 
       525 
     | 
    
         
            -
                        },
         
     | 
| 
       526 
     | 
    
         
            -
                        "ReservedDBInstancesOfferings": {
         
     | 
| 
       527 
     | 
    
         
            -
                            "request": { "operation": "DescribeReservedDBInstancesOfferings" },
         
     | 
| 
       528 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       529 
     | 
    
         
            -
                                "type": "ReservedDBInstancesOffering",
         
     | 
| 
       530 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       531 
     | 
    
         
            -
                                    {
         
     | 
| 
       532 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       533 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       534 
     | 
    
         
            -
                                        "path": "ReservedDBInstancesOfferings[].ReservedDBInstancesOfferingId"
         
     | 
| 
       535 
     | 
    
         
            -
                                    }
         
     | 
| 
       536 
     | 
    
         
            -
                                ],
         
     | 
| 
       537 
     | 
    
         
            -
                                "path": "ReservedDBInstancesOfferings[]"
         
     | 
| 
       538 
     | 
    
         
            -
                            }
         
     | 
| 
       539 
     | 
    
         
            -
                        },
         
     | 
| 
       540 
     | 
    
         
            -
                        "ReservedDBInstances": {
         
     | 
| 
       541 
     | 
    
         
            -
                            "request": { "operation": "DescribeReservedDBInstances" },
         
     | 
| 
       542 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       543 
     | 
    
         
            -
                                "type": "ReservedDBInstance",
         
     | 
| 
       544 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       545 
     | 
    
         
            -
                                    {
         
     | 
| 
       546 
     | 
    
         
            -
                                        "target": "Id",
         
     | 
| 
       547 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       548 
     | 
    
         
            -
                                        "path": "ReservedDBInstances[].ReservedDBInstanceId"
         
     | 
| 
       549 
     | 
    
         
            -
                                    }
         
     | 
| 
       550 
     | 
    
         
            -
                                ],
         
     | 
| 
       551 
     | 
    
         
            -
                                "path": "ReservedDBInstances[]"
         
     | 
| 
       552 
     | 
    
         
            -
                            }
         
     | 
| 
       553 
     | 
    
         
            -
                        },
         
     | 
| 
       554 
     | 
    
         
            -
                        "ResourcesWithPendingMaintenanceActions": {
         
     | 
| 
       555 
     | 
    
         
            -
                            "request": { "operation": "DescribePendingMaintenanceActions" },
         
     | 
| 
       556 
     | 
    
         
            -
                            "resource": {
         
     | 
| 
       557 
     | 
    
         
            -
                                "type": "ResourcePendingMaintenanceActionList",
         
     | 
| 
       558 
     | 
    
         
            -
                                "identifiers": [
         
     | 
| 
       559 
     | 
    
         
            -
                                    {
         
     | 
| 
       560 
     | 
    
         
            -
                                        "target": "ARN",
         
     | 
| 
       561 
     | 
    
         
            -
                                        "source": "response",
         
     | 
| 
       562 
     | 
    
         
            -
                                        "path": "PendingMaintenanceActions[].ResourceIdentifier"
         
     | 
| 
       563 
     | 
    
         
            -
                                    }
         
     | 
| 
       564 
     | 
    
         
            -
                                ],
         
     | 
| 
       565 
     | 
    
         
            -
                                "path": "PendingMaintenanceActions[]"
         
     | 
| 
       566 
     | 
    
         
            -
                            }
         
     | 
| 
       567 
     | 
    
         
            -
                        }
         
     | 
| 
       568 
     | 
    
         
            -
                    }
         
     | 
| 
       569 
     | 
    
         
            -
                },
         
     | 
| 
       570 
     | 
    
         
            -
                "resources": {
         
     | 
| 
       571 
     | 
    
         
            -
                    "AccountQuota": {
         
     | 
| 
       572 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       573 
     | 
    
         
            -
                            {
         
     | 
| 
       574 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       575 
     | 
    
         
            -
                                "memberName": "AccountQuotaName"
         
     | 
| 
       576 
     | 
    
         
            -
                            }
         
     | 
| 
       577 
     | 
    
         
            -
                        ],
         
     | 
| 
       578 
     | 
    
         
            -
                        "shape": "AccountQuota"
         
     | 
| 
       579 
     | 
    
         
            -
                    },
         
     | 
| 
       580 
     | 
    
         
            -
                    "Certificate": {
         
     | 
| 
       581 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       582 
     | 
    
         
            -
                            {
         
     | 
| 
       583 
     | 
    
         
            -
                                "name": "Id",
         
     | 
| 
       584 
     | 
    
         
            -
                                "memberName": "CertificateIdentifier"
         
     | 
| 
       585 
     | 
    
         
            -
                            }
         
     | 
| 
       586 
     | 
    
         
            -
                        ],
         
     | 
| 
       587 
     | 
    
         
            -
                        "shape": "Certificate",
         
     | 
| 
       588 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       589 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       590 
     | 
    
         
            -
                                "operation": "DescribeCertificates",
         
     | 
| 
       591 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       592 
     | 
    
         
            -
                                    {
         
     | 
| 
       593 
     | 
    
         
            -
                                        "target": "CertificateIdentifier",
         
     | 
| 
       594 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       595 
     | 
    
         
            -
                                        "name": "Id"
         
     | 
| 
       596 
     | 
    
         
            -
                                    }
         
     | 
| 
       597 
     | 
    
         
            -
                                ]
         
     | 
| 
       598 
     | 
    
         
            -
                            },
         
     | 
| 
       599 
     | 
    
         
            -
                            "path": "Certificates[0]"
         
     | 
| 
       600 
     | 
    
         
            -
                        }
         
     | 
| 
       601 
     | 
    
         
            -
                    },
         
     | 
| 
       602 
     | 
    
         
            -
                    "DBCluster": {
         
     | 
| 
       603 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       604 
     | 
    
         
            -
                            {
         
     | 
| 
       605 
     | 
    
         
            -
                                "name": "Id",
         
     | 
| 
       606 
     | 
    
         
            -
                                "memberName": "DBClusterIdentifier"
         
     | 
| 
       607 
     | 
    
         
            -
                            }
         
     | 
| 
       608 
     | 
    
         
            -
                        ],
         
     | 
| 
       609 
     | 
    
         
            -
                        "shape": "DBCluster",
         
     | 
| 
       610 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       611 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       612 
     | 
    
         
            -
                                "operation": "DescribeDBClusters",
         
     | 
| 
       613 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       614 
     | 
    
         
            -
                                    {
         
     | 
| 
       615 
     | 
    
         
            -
                                        "target": "DBClusterIdentifier",
         
     | 
| 
       616 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       617 
     | 
    
         
            -
                                        "name": "Id"
         
     | 
| 
       618 
     | 
    
         
            -
                                    }
         
     | 
| 
       619 
     | 
    
         
            -
                                ]
         
     | 
| 
       620 
     | 
    
         
            -
                            },
         
     | 
| 
       621 
     | 
    
         
            -
                            "path": "DBClusters[0]"
         
     | 
| 
       622 
     | 
    
         
            -
                        },
         
     | 
| 
       623 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       624 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       625 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       626 
     | 
    
         
            -
                                    "operation": "CreateDBCluster",
         
     | 
| 
       627 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       628 
     | 
    
         
            -
                                        {
         
     | 
| 
       629 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       630 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       631 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       632 
     | 
    
         
            -
                                        }
         
     | 
| 
       633 
     | 
    
         
            -
                                    ]
         
     | 
| 
       634 
     | 
    
         
            -
                                },
         
     | 
| 
       635 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       636 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       637 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       638 
     | 
    
         
            -
                                        {
         
     | 
| 
       639 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       640 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       641 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       642 
     | 
    
         
            -
                                        }
         
     | 
| 
       643 
     | 
    
         
            -
                                    ],
         
     | 
| 
       644 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       645 
     | 
    
         
            -
                                }
         
     | 
| 
       646 
     | 
    
         
            -
                            },
         
     | 
| 
       647 
     | 
    
         
            -
                            "CreateSnapshot": {
         
     | 
| 
       648 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       649 
     | 
    
         
            -
                                    "operation": "CreateDBClusterSnapshot",
         
     | 
| 
       650 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       651 
     | 
    
         
            -
                                        {
         
     | 
| 
       652 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       653 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       654 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       655 
     | 
    
         
            -
                                        }
         
     | 
| 
       656 
     | 
    
         
            -
                                    ]
         
     | 
| 
       657 
     | 
    
         
            -
                                },
         
     | 
| 
       658 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       659 
     | 
    
         
            -
                                    "type": "DBClusterSnapshot",
         
     | 
| 
       660 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       661 
     | 
    
         
            -
                                        {
         
     | 
| 
       662 
     | 
    
         
            -
                                            "target": "ClusterId",
         
     | 
| 
       663 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       664 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterIdentifier"
         
     | 
| 
       665 
     | 
    
         
            -
                                        },
         
     | 
| 
       666 
     | 
    
         
            -
                                        {
         
     | 
| 
       667 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       668 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       669 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterSnapshotIdentifier"
         
     | 
| 
       670 
     | 
    
         
            -
                                        }
         
     | 
| 
       671 
     | 
    
         
            -
                                    ],
         
     | 
| 
       672 
     | 
    
         
            -
                                    "path": "DBClusterSnapshot"
         
     | 
| 
       673 
     | 
    
         
            -
                                }
         
     | 
| 
       674 
     | 
    
         
            -
                            },
         
     | 
| 
       675 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       676 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       677 
     | 
    
         
            -
                                    "operation": "DeleteDBCluster",
         
     | 
| 
       678 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       679 
     | 
    
         
            -
                                        {
         
     | 
| 
       680 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       681 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       682 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       683 
     | 
    
         
            -
                                        }
         
     | 
| 
       684 
     | 
    
         
            -
                                    ]
         
     | 
| 
       685 
     | 
    
         
            -
                                },
         
     | 
| 
       686 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       687 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       688 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       689 
     | 
    
         
            -
                                        {
         
     | 
| 
       690 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       691 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       692 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       693 
     | 
    
         
            -
                                        }
         
     | 
| 
       694 
     | 
    
         
            -
                                    ],
         
     | 
| 
       695 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       696 
     | 
    
         
            -
                                }
         
     | 
| 
       697 
     | 
    
         
            -
                            },
         
     | 
| 
       698 
     | 
    
         
            -
                            "Failover": {
         
     | 
| 
       699 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       700 
     | 
    
         
            -
                                    "operation": "FailoverDBCluster",
         
     | 
| 
       701 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       702 
     | 
    
         
            -
                                        {
         
     | 
| 
       703 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       704 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       705 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       706 
     | 
    
         
            -
                                        }
         
     | 
| 
       707 
     | 
    
         
            -
                                    ]
         
     | 
| 
       708 
     | 
    
         
            -
                                },
         
     | 
| 
       709 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       710 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       711 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       712 
     | 
    
         
            -
                                        {
         
     | 
| 
       713 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       714 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       715 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       716 
     | 
    
         
            -
                                        }
         
     | 
| 
       717 
     | 
    
         
            -
                                    ],
         
     | 
| 
       718 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       719 
     | 
    
         
            -
                                }
         
     | 
| 
       720 
     | 
    
         
            -
                            },
         
     | 
| 
       721 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       722 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       723 
     | 
    
         
            -
                                    "operation": "ModifyDBCluster",
         
     | 
| 
       724 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       725 
     | 
    
         
            -
                                        {
         
     | 
| 
       726 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       727 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       728 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       729 
     | 
    
         
            -
                                        }
         
     | 
| 
       730 
     | 
    
         
            -
                                    ]
         
     | 
| 
       731 
     | 
    
         
            -
                                },
         
     | 
| 
       732 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       733 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       734 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       735 
     | 
    
         
            -
                                        {
         
     | 
| 
       736 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       737 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       738 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       739 
     | 
    
         
            -
                                        }
         
     | 
| 
       740 
     | 
    
         
            -
                                    ],
         
     | 
| 
       741 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       742 
     | 
    
         
            -
                                }
         
     | 
| 
       743 
     | 
    
         
            -
                            },
         
     | 
| 
       744 
     | 
    
         
            -
                            "Restore": {
         
     | 
| 
       745 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       746 
     | 
    
         
            -
                                    "operation": "RestoreDBClusterToPointInTime",
         
     | 
| 
       747 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       748 
     | 
    
         
            -
                                        {
         
     | 
| 
       749 
     | 
    
         
            -
                                            "target": "SourceDBClusterIdentifier",
         
     | 
| 
       750 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       751 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       752 
     | 
    
         
            -
                                        }
         
     | 
| 
       753 
     | 
    
         
            -
                                    ]
         
     | 
| 
       754 
     | 
    
         
            -
                                },
         
     | 
| 
       755 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       756 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       757 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       758 
     | 
    
         
            -
                                        {
         
     | 
| 
       759 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       760 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       761 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       762 
     | 
    
         
            -
                                        }
         
     | 
| 
       763 
     | 
    
         
            -
                                    ],
         
     | 
| 
       764 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       765 
     | 
    
         
            -
                                }
         
     | 
| 
       766 
     | 
    
         
            -
                            }
         
     | 
| 
       767 
     | 
    
         
            -
                        },
         
     | 
| 
       768 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       769 
     | 
    
         
            -
                            "Members": {
         
     | 
| 
       770 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       771 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       772 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       773 
     | 
    
         
            -
                                        {
         
     | 
| 
       774 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       775 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       776 
     | 
    
         
            -
                                            "path": "DBClusterMembers[].DBInstanceIdentifier"
         
     | 
| 
       777 
     | 
    
         
            -
                                        }
         
     | 
| 
       778 
     | 
    
         
            -
                                    ],
         
     | 
| 
       779 
     | 
    
         
            -
                                    "path": "DBClusterMembers[]"
         
     | 
| 
       780 
     | 
    
         
            -
                                }
         
     | 
| 
       781 
     | 
    
         
            -
                            },
         
     | 
| 
       782 
     | 
    
         
            -
                            "OptionGroups": {
         
     | 
| 
       783 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       784 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       785 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       786 
     | 
    
         
            -
                                        {
         
     | 
| 
       787 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       788 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       789 
     | 
    
         
            -
                                            "path": "DBClusterOptionGroupMemberships[].DBClusterOptionGroupName"
         
     | 
| 
       790 
     | 
    
         
            -
                                        }
         
     | 
| 
       791 
     | 
    
         
            -
                                    ],
         
     | 
| 
       792 
     | 
    
         
            -
                                    "path": "DBClusterOptionGroupMemberships[]"
         
     | 
| 
       793 
     | 
    
         
            -
                                }
         
     | 
| 
       794 
     | 
    
         
            -
                            },
         
     | 
| 
       795 
     | 
    
         
            -
                            "ParameterGroup": {
         
     | 
| 
       796 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       797 
     | 
    
         
            -
                                    "type": "DBClusterParameterGroup",
         
     | 
| 
       798 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       799 
     | 
    
         
            -
                                        {
         
     | 
| 
       800 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       801 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       802 
     | 
    
         
            -
                                            "path": "DBClusterParameterGroup"
         
     | 
| 
       803 
     | 
    
         
            -
                                        }
         
     | 
| 
       804 
     | 
    
         
            -
                                    ]
         
     | 
| 
       805 
     | 
    
         
            -
                                }
         
     | 
| 
       806 
     | 
    
         
            -
                            },
         
     | 
| 
       807 
     | 
    
         
            -
                            "SubnetGroup": {
         
     | 
| 
       808 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       809 
     | 
    
         
            -
                                    "type": "DBSubnetGroup",
         
     | 
| 
       810 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       811 
     | 
    
         
            -
                                        {
         
     | 
| 
       812 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       813 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       814 
     | 
    
         
            -
                                            "path": "DBSubnetGroup"
         
     | 
| 
       815 
     | 
    
         
            -
                                        }
         
     | 
| 
       816 
     | 
    
         
            -
                                    ]
         
     | 
| 
       817 
     | 
    
         
            -
                                }
         
     | 
| 
       818 
     | 
    
         
            -
                            }
         
     | 
| 
       819 
     | 
    
         
            -
                        },
         
     | 
| 
       820 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       821 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       822 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       823 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       824 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       825 
     | 
    
         
            -
                                        {
         
     | 
| 
       826 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       827 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       828 
     | 
    
         
            -
                                            "value": "db-cluster"
         
     | 
| 
       829 
     | 
    
         
            -
                                        },
         
     | 
| 
       830 
     | 
    
         
            -
                                        {
         
     | 
| 
       831 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       832 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       833 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       834 
     | 
    
         
            -
                                        }
         
     | 
| 
       835 
     | 
    
         
            -
                                    ]
         
     | 
| 
       836 
     | 
    
         
            -
                                },
         
     | 
| 
       837 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       838 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       839 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       840 
     | 
    
         
            -
                                        {
         
     | 
| 
       841 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       842 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       843 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       844 
     | 
    
         
            -
                                        },
         
     | 
| 
       845 
     | 
    
         
            -
                                        {
         
     | 
| 
       846 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       847 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       848 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       849 
     | 
    
         
            -
                                        }
         
     | 
| 
       850 
     | 
    
         
            -
                                    ],
         
     | 
| 
       851 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       852 
     | 
    
         
            -
                                }
         
     | 
| 
       853 
     | 
    
         
            -
                            },
         
     | 
| 
       854 
     | 
    
         
            -
                            "Snapshots": {
         
     | 
| 
       855 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       856 
     | 
    
         
            -
                                    "operation": "DescribeDBClusterSnapshots",
         
     | 
| 
       857 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       858 
     | 
    
         
            -
                                        {
         
     | 
| 
       859 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       860 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       861 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       862 
     | 
    
         
            -
                                        }
         
     | 
| 
       863 
     | 
    
         
            -
                                    ]
         
     | 
| 
       864 
     | 
    
         
            -
                                },
         
     | 
| 
       865 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       866 
     | 
    
         
            -
                                    "type": "DBClusterSnapshot",
         
     | 
| 
       867 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       868 
     | 
    
         
            -
                                        {
         
     | 
| 
       869 
     | 
    
         
            -
                                            "target": "ClusterId",
         
     | 
| 
       870 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       871 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       872 
     | 
    
         
            -
                                        },
         
     | 
| 
       873 
     | 
    
         
            -
                                        {
         
     | 
| 
       874 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       875 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       876 
     | 
    
         
            -
                                            "path": "DBClusterSnapshots[].DBClusterSnapshotIdentifier"
         
     | 
| 
       877 
     | 
    
         
            -
                                        }
         
     | 
| 
       878 
     | 
    
         
            -
                                    ],
         
     | 
| 
       879 
     | 
    
         
            -
                                    "path": "DBClusterSnapshots[]"
         
     | 
| 
       880 
     | 
    
         
            -
                                }
         
     | 
| 
       881 
     | 
    
         
            -
                            }
         
     | 
| 
       882 
     | 
    
         
            -
                        }
         
     | 
| 
       883 
     | 
    
         
            -
                    },
         
     | 
| 
       884 
     | 
    
         
            -
                    "DBClusterParameterGroup": {
         
     | 
| 
       885 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       886 
     | 
    
         
            -
                            {
         
     | 
| 
       887 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       888 
     | 
    
         
            -
                                "memberName": "DBClusterParameterGroupName"
         
     | 
| 
       889 
     | 
    
         
            -
                            }
         
     | 
| 
       890 
     | 
    
         
            -
                        ],
         
     | 
| 
       891 
     | 
    
         
            -
                        "shape": "DBClusterParameterGroup",
         
     | 
| 
       892 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       893 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       894 
     | 
    
         
            -
                                "operation": "DescribeDBClusterParameterGroups",
         
     | 
| 
       895 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       896 
     | 
    
         
            -
                                    {
         
     | 
| 
       897 
     | 
    
         
            -
                                        "target": "DBClusterParameterGroupName",
         
     | 
| 
       898 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       899 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       900 
     | 
    
         
            -
                                    }
         
     | 
| 
       901 
     | 
    
         
            -
                                ]
         
     | 
| 
       902 
     | 
    
         
            -
                            },
         
     | 
| 
       903 
     | 
    
         
            -
                            "path": "DBClusterParameterGroups[0]"
         
     | 
| 
       904 
     | 
    
         
            -
                        },
         
     | 
| 
       905 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       906 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       907 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       908 
     | 
    
         
            -
                                    "operation": "CreateDBClusterParameterGroup",
         
     | 
| 
       909 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       910 
     | 
    
         
            -
                                        {
         
     | 
| 
       911 
     | 
    
         
            -
                                            "target": "DBClusterParameterGroupName",
         
     | 
| 
       912 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       913 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       914 
     | 
    
         
            -
                                        }
         
     | 
| 
       915 
     | 
    
         
            -
                                    ]
         
     | 
| 
       916 
     | 
    
         
            -
                                },
         
     | 
| 
       917 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       918 
     | 
    
         
            -
                                    "type": "DBClusterParameterGroup",
         
     | 
| 
       919 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       920 
     | 
    
         
            -
                                        {
         
     | 
| 
       921 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       922 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       923 
     | 
    
         
            -
                                            "path": "DBClusterParameterGroup.DBClusterParameterGroupName"
         
     | 
| 
       924 
     | 
    
         
            -
                                        }
         
     | 
| 
       925 
     | 
    
         
            -
                                    ],
         
     | 
| 
       926 
     | 
    
         
            -
                                    "path": "DBClusterParameterGroup"
         
     | 
| 
       927 
     | 
    
         
            -
                                }
         
     | 
| 
       928 
     | 
    
         
            -
                            },
         
     | 
| 
       929 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       930 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       931 
     | 
    
         
            -
                                    "operation": "DeleteDBClusterParameterGroup",
         
     | 
| 
       932 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       933 
     | 
    
         
            -
                                        {
         
     | 
| 
       934 
     | 
    
         
            -
                                            "target": "DBClusterParameterGroupName",
         
     | 
| 
       935 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       936 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       937 
     | 
    
         
            -
                                        }
         
     | 
| 
       938 
     | 
    
         
            -
                                    ]
         
     | 
| 
       939 
     | 
    
         
            -
                                }
         
     | 
| 
       940 
     | 
    
         
            -
                            },
         
     | 
| 
       941 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       942 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       943 
     | 
    
         
            -
                                    "operation": "ModifyDBClusterParameterGroup",
         
     | 
| 
       944 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       945 
     | 
    
         
            -
                                        {
         
     | 
| 
       946 
     | 
    
         
            -
                                            "target": "DBClusterParameterGroupName",
         
     | 
| 
       947 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       948 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       949 
     | 
    
         
            -
                                        }
         
     | 
| 
       950 
     | 
    
         
            -
                                    ]
         
     | 
| 
       951 
     | 
    
         
            -
                                },
         
     | 
| 
       952 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       953 
     | 
    
         
            -
                                    "type": "DBClusterParameterGroup",
         
     | 
| 
       954 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       955 
     | 
    
         
            -
                                        {
         
     | 
| 
       956 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       957 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       958 
     | 
    
         
            -
                                            "path": "DBClusterParameterGroupName"
         
     | 
| 
       959 
     | 
    
         
            -
                                        }
         
     | 
| 
       960 
     | 
    
         
            -
                                    ]
         
     | 
| 
       961 
     | 
    
         
            -
                                }
         
     | 
| 
       962 
     | 
    
         
            -
                            },
         
     | 
| 
       963 
     | 
    
         
            -
                            "Reset": {
         
     | 
| 
       964 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       965 
     | 
    
         
            -
                                    "operation": "ResetDBClusterParameterGroup",
         
     | 
| 
       966 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       967 
     | 
    
         
            -
                                        {
         
     | 
| 
       968 
     | 
    
         
            -
                                            "target": "DBClusterParameterGroupName",
         
     | 
| 
       969 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       970 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       971 
     | 
    
         
            -
                                        }
         
     | 
| 
       972 
     | 
    
         
            -
                                    ]
         
     | 
| 
       973 
     | 
    
         
            -
                                },
         
     | 
| 
       974 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       975 
     | 
    
         
            -
                                    "type": "DBClusterParameterGroup",
         
     | 
| 
       976 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       977 
     | 
    
         
            -
                                        {
         
     | 
| 
       978 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       979 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       980 
     | 
    
         
            -
                                            "path": "DBClusterParameterGroupName"
         
     | 
| 
       981 
     | 
    
         
            -
                                        }
         
     | 
| 
       982 
     | 
    
         
            -
                                    ]
         
     | 
| 
       983 
     | 
    
         
            -
                                }
         
     | 
| 
       984 
     | 
    
         
            -
                            }
         
     | 
| 
       985 
     | 
    
         
            -
                        }
         
     | 
| 
       986 
     | 
    
         
            -
                    },
         
     | 
| 
       987 
     | 
    
         
            -
                    "DBClusterSnapshot": {
         
     | 
| 
       988 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       989 
     | 
    
         
            -
                            {
         
     | 
| 
       990 
     | 
    
         
            -
                                "name": "ClusterId",
         
     | 
| 
       991 
     | 
    
         
            -
                                "memberName": "DBClusterIdentifier"
         
     | 
| 
       992 
     | 
    
         
            -
                            },
         
     | 
| 
       993 
     | 
    
         
            -
                            {
         
     | 
| 
       994 
     | 
    
         
            -
                                "name": "SnapshotId",
         
     | 
| 
       995 
     | 
    
         
            -
                                "memberName": "DBClusterSnapshotIdentifier"
         
     | 
| 
       996 
     | 
    
         
            -
                            }
         
     | 
| 
       997 
     | 
    
         
            -
                        ],
         
     | 
| 
       998 
     | 
    
         
            -
                        "shape": "DBClusterSnapshot",
         
     | 
| 
       999 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       1000 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       1001 
     | 
    
         
            -
                                "operation": "DescribeDBClusterSnapshots",
         
     | 
| 
       1002 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       1003 
     | 
    
         
            -
                                    {
         
     | 
| 
       1004 
     | 
    
         
            -
                                        "target": "DBClusterSnapshotIdentifier",
         
     | 
| 
       1005 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       1006 
     | 
    
         
            -
                                        "name": "SnapshotId"
         
     | 
| 
       1007 
     | 
    
         
            -
                                    }
         
     | 
| 
       1008 
     | 
    
         
            -
                                ]
         
     | 
| 
       1009 
     | 
    
         
            -
                            },
         
     | 
| 
       1010 
     | 
    
         
            -
                            "path": "DBClusterSnapshots[0]"
         
     | 
| 
       1011 
     | 
    
         
            -
                        },
         
     | 
| 
       1012 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       1013 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       1014 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1015 
     | 
    
         
            -
                                    "operation": "CreateDBClusterSnapshot",
         
     | 
| 
       1016 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1017 
     | 
    
         
            -
                                        {
         
     | 
| 
       1018 
     | 
    
         
            -
                                            "target": "DBClusterIdentifier",
         
     | 
| 
       1019 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1020 
     | 
    
         
            -
                                            "name": "ClusterId"
         
     | 
| 
       1021 
     | 
    
         
            -
                                        },
         
     | 
| 
       1022 
     | 
    
         
            -
                                        {
         
     | 
| 
       1023 
     | 
    
         
            -
                                            "target": "DBClusterSnapshotIdentifier",
         
     | 
| 
       1024 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1025 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       1026 
     | 
    
         
            -
                                        }
         
     | 
| 
       1027 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1028 
     | 
    
         
            -
                                },
         
     | 
| 
       1029 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1030 
     | 
    
         
            -
                                    "type": "DBClusterSnapshot",
         
     | 
| 
       1031 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1032 
     | 
    
         
            -
                                        {
         
     | 
| 
       1033 
     | 
    
         
            -
                                            "target": "ClusterId",
         
     | 
| 
       1034 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1035 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterIdentifier"
         
     | 
| 
       1036 
     | 
    
         
            -
                                        },
         
     | 
| 
       1037 
     | 
    
         
            -
                                        {
         
     | 
| 
       1038 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       1039 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1040 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterSnapshotIdentifier"
         
     | 
| 
       1041 
     | 
    
         
            -
                                        }
         
     | 
| 
       1042 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1043 
     | 
    
         
            -
                                    "path": "DBClusterSnapshot"
         
     | 
| 
       1044 
     | 
    
         
            -
                                }
         
     | 
| 
       1045 
     | 
    
         
            -
                            },
         
     | 
| 
       1046 
     | 
    
         
            -
                            "Copy": {
         
     | 
| 
       1047 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1048 
     | 
    
         
            -
                                    "operation": "CopyDBClusterSnapshot",
         
     | 
| 
       1049 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1050 
     | 
    
         
            -
                                        {
         
     | 
| 
       1051 
     | 
    
         
            -
                                            "target": "SourceDBClusterSnapshotIdentifier",
         
     | 
| 
       1052 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1053 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       1054 
     | 
    
         
            -
                                        }
         
     | 
| 
       1055 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1056 
     | 
    
         
            -
                                },
         
     | 
| 
       1057 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1058 
     | 
    
         
            -
                                    "type": "DBClusterSnapshot",
         
     | 
| 
       1059 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1060 
     | 
    
         
            -
                                        {
         
     | 
| 
       1061 
     | 
    
         
            -
                                            "target": "ClusterId",
         
     | 
| 
       1062 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1063 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterIdentifier"
         
     | 
| 
       1064 
     | 
    
         
            -
                                        },
         
     | 
| 
       1065 
     | 
    
         
            -
                                        {
         
     | 
| 
       1066 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       1067 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1068 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterSnapshotIdentifier"
         
     | 
| 
       1069 
     | 
    
         
            -
                                        }
         
     | 
| 
       1070 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1071 
     | 
    
         
            -
                                    "path": "DBClusterSnapshot"
         
     | 
| 
       1072 
     | 
    
         
            -
                                }
         
     | 
| 
       1073 
     | 
    
         
            -
                            },
         
     | 
| 
       1074 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       1075 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1076 
     | 
    
         
            -
                                    "operation": "DeleteDBClusterSnapshot",
         
     | 
| 
       1077 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1078 
     | 
    
         
            -
                                        {
         
     | 
| 
       1079 
     | 
    
         
            -
                                            "target": "DBClusterSnapshotIdentifier",
         
     | 
| 
       1080 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1081 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       1082 
     | 
    
         
            -
                                        }
         
     | 
| 
       1083 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1084 
     | 
    
         
            -
                                },
         
     | 
| 
       1085 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1086 
     | 
    
         
            -
                                    "type": "DBClusterSnapshot",
         
     | 
| 
       1087 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1088 
     | 
    
         
            -
                                        {
         
     | 
| 
       1089 
     | 
    
         
            -
                                            "target": "ClusterId",
         
     | 
| 
       1090 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1091 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterIdentifier"
         
     | 
| 
       1092 
     | 
    
         
            -
                                        },
         
     | 
| 
       1093 
     | 
    
         
            -
                                        {
         
     | 
| 
       1094 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       1095 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1096 
     | 
    
         
            -
                                            "path": "DBClusterSnapshot.DBClusterSnapshotIdentifier"
         
     | 
| 
       1097 
     | 
    
         
            -
                                        }
         
     | 
| 
       1098 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1099 
     | 
    
         
            -
                                    "path": "DBClusterSnapshot"
         
     | 
| 
       1100 
     | 
    
         
            -
                                }
         
     | 
| 
       1101 
     | 
    
         
            -
                            },
         
     | 
| 
       1102 
     | 
    
         
            -
                            "Restore": {
         
     | 
| 
       1103 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1104 
     | 
    
         
            -
                                    "operation": "RestoreDBClusterFromSnapshot",
         
     | 
| 
       1105 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1106 
     | 
    
         
            -
                                        {
         
     | 
| 
       1107 
     | 
    
         
            -
                                            "target": "SnapshotIdentifier",
         
     | 
| 
       1108 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1109 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       1110 
     | 
    
         
            -
                                        }
         
     | 
| 
       1111 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1112 
     | 
    
         
            -
                                },
         
     | 
| 
       1113 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1114 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       1115 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1116 
     | 
    
         
            -
                                        {
         
     | 
| 
       1117 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1118 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1119 
     | 
    
         
            -
                                            "path": "DBCluster.DBClusterIdentifier"
         
     | 
| 
       1120 
     | 
    
         
            -
                                        }
         
     | 
| 
       1121 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1122 
     | 
    
         
            -
                                    "path": "DBCluster"
         
     | 
| 
       1123 
     | 
    
         
            -
                                }
         
     | 
| 
       1124 
     | 
    
         
            -
                            }
         
     | 
| 
       1125 
     | 
    
         
            -
                        },
         
     | 
| 
       1126 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       1127 
     | 
    
         
            -
                            "Cluster": {
         
     | 
| 
       1128 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1129 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       1130 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1131 
     | 
    
         
            -
                                        {
         
     | 
| 
       1132 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1133 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1134 
     | 
    
         
            -
                                            "name": "ClusterId"
         
     | 
| 
       1135 
     | 
    
         
            -
                                        }
         
     | 
| 
       1136 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1137 
     | 
    
         
            -
                                }
         
     | 
| 
       1138 
     | 
    
         
            -
                            }
         
     | 
| 
       1139 
     | 
    
         
            -
                        },
         
     | 
| 
       1140 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       1141 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       1142 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1143 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       1144 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1145 
     | 
    
         
            -
                                        {
         
     | 
| 
       1146 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       1147 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       1148 
     | 
    
         
            -
                                            "value": "db-cluster-snapshot"
         
     | 
| 
       1149 
     | 
    
         
            -
                                        },
         
     | 
| 
       1150 
     | 
    
         
            -
                                        {
         
     | 
| 
       1151 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       1152 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1153 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       1154 
     | 
    
         
            -
                                        }
         
     | 
| 
       1155 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1156 
     | 
    
         
            -
                                },
         
     | 
| 
       1157 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1158 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       1159 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1160 
     | 
    
         
            -
                                        {
         
     | 
| 
       1161 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       1162 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1163 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       1164 
     | 
    
         
            -
                                        },
         
     | 
| 
       1165 
     | 
    
         
            -
                                        {
         
     | 
| 
       1166 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       1167 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1168 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       1169 
     | 
    
         
            -
                                        }
         
     | 
| 
       1170 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1171 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       1172 
     | 
    
         
            -
                                }
         
     | 
| 
       1173 
     | 
    
         
            -
                            }
         
     | 
| 
       1174 
     | 
    
         
            -
                        }
         
     | 
| 
       1175 
     | 
    
         
            -
                    },
         
     | 
| 
       1176 
     | 
    
         
            -
                    "DBEngine": {
         
     | 
| 
       1177 
     | 
    
         
            -
                        "identifiers": [{ "name": "Name" }],
         
     | 
| 
       1178 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       1179 
     | 
    
         
            -
                            "Version": {
         
     | 
| 
       1180 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1181 
     | 
    
         
            -
                                    "type": "DBEngineVersion",
         
     | 
| 
       1182 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1183 
     | 
    
         
            -
                                        {
         
     | 
| 
       1184 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1185 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1186 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1187 
     | 
    
         
            -
                                        },
         
     | 
| 
       1188 
     | 
    
         
            -
                                        {
         
     | 
| 
       1189 
     | 
    
         
            -
                                            "target": "Version",
         
     | 
| 
       1190 
     | 
    
         
            -
                                            "source": "input"
         
     | 
| 
       1191 
     | 
    
         
            -
                                        }
         
     | 
| 
       1192 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1193 
     | 
    
         
            -
                                }
         
     | 
| 
       1194 
     | 
    
         
            -
                            }
         
     | 
| 
       1195 
     | 
    
         
            -
                        },
         
     | 
| 
       1196 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       1197 
     | 
    
         
            -
                            "OptionGroupOptions": {
         
     | 
| 
       1198 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1199 
     | 
    
         
            -
                                    "operation": "DescribeOptionGroupOptions",
         
     | 
| 
       1200 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1201 
     | 
    
         
            -
                                        {
         
     | 
| 
       1202 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1203 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1204 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1205 
     | 
    
         
            -
                                        }
         
     | 
| 
       1206 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1207 
     | 
    
         
            -
                                },
         
     | 
| 
       1208 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1209 
     | 
    
         
            -
                                    "type": "OptionGroupOption",
         
     | 
| 
       1210 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1211 
     | 
    
         
            -
                                        {
         
     | 
| 
       1212 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1213 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1214 
     | 
    
         
            -
                                            "path": "OptionGroupOptions[].Name"
         
     | 
| 
       1215 
     | 
    
         
            -
                                        }
         
     | 
| 
       1216 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1217 
     | 
    
         
            -
                                    "path": "OptionGroupOptions[]"
         
     | 
| 
       1218 
     | 
    
         
            -
                                }
         
     | 
| 
       1219 
     | 
    
         
            -
                            },
         
     | 
| 
       1220 
     | 
    
         
            -
                            "OptionGroups": {
         
     | 
| 
       1221 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1222 
     | 
    
         
            -
                                    "operation": "DescribeOptionGroups",
         
     | 
| 
       1223 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1224 
     | 
    
         
            -
                                        {
         
     | 
| 
       1225 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1226 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1227 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1228 
     | 
    
         
            -
                                        }
         
     | 
| 
       1229 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1230 
     | 
    
         
            -
                                },
         
     | 
| 
       1231 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1232 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       1233 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1234 
     | 
    
         
            -
                                        {
         
     | 
| 
       1235 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1236 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1237 
     | 
    
         
            -
                                            "path": "OptionGroupsList[].OptionGroupName"
         
     | 
| 
       1238 
     | 
    
         
            -
                                        }
         
     | 
| 
       1239 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1240 
     | 
    
         
            -
                                    "path": "OptionGroupsList[]"
         
     | 
| 
       1241 
     | 
    
         
            -
                                }
         
     | 
| 
       1242 
     | 
    
         
            -
                            },
         
     | 
| 
       1243 
     | 
    
         
            -
                            "Versions": {
         
     | 
| 
       1244 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1245 
     | 
    
         
            -
                                    "operation": "DescribeDBEngineVersions",
         
     | 
| 
       1246 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1247 
     | 
    
         
            -
                                        {
         
     | 
| 
       1248 
     | 
    
         
            -
                                            "target": "Engine",
         
     | 
| 
       1249 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1250 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1251 
     | 
    
         
            -
                                        }
         
     | 
| 
       1252 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1253 
     | 
    
         
            -
                                },
         
     | 
| 
       1254 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1255 
     | 
    
         
            -
                                    "type": "DBEngineVersion",
         
     | 
| 
       1256 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1257 
     | 
    
         
            -
                                        {
         
     | 
| 
       1258 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1259 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1260 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1261 
     | 
    
         
            -
                                        },
         
     | 
| 
       1262 
     | 
    
         
            -
                                        {
         
     | 
| 
       1263 
     | 
    
         
            -
                                            "target": "Version",
         
     | 
| 
       1264 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1265 
     | 
    
         
            -
                                            "path": "DBEngineVersions[].EngineVersion"
         
     | 
| 
       1266 
     | 
    
         
            -
                                        }
         
     | 
| 
       1267 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1268 
     | 
    
         
            -
                                    "path": "DBEngineVersions[]"
         
     | 
| 
       1269 
     | 
    
         
            -
                                }
         
     | 
| 
       1270 
     | 
    
         
            -
                            }
         
     | 
| 
       1271 
     | 
    
         
            -
                        }
         
     | 
| 
       1272 
     | 
    
         
            -
                    },
         
     | 
| 
       1273 
     | 
    
         
            -
                    "DBEngineVersion": {
         
     | 
| 
       1274 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       1275 
     | 
    
         
            -
                            {
         
     | 
| 
       1276 
     | 
    
         
            -
                                "name": "EngineName",
         
     | 
| 
       1277 
     | 
    
         
            -
                                "memberName": "Engine"
         
     | 
| 
       1278 
     | 
    
         
            -
                            },
         
     | 
| 
       1279 
     | 
    
         
            -
                            {
         
     | 
| 
       1280 
     | 
    
         
            -
                                "name": "Version",
         
     | 
| 
       1281 
     | 
    
         
            -
                                "memberName": "EngineVersion"
         
     | 
| 
       1282 
     | 
    
         
            -
                            }
         
     | 
| 
       1283 
     | 
    
         
            -
                        ],
         
     | 
| 
       1284 
     | 
    
         
            -
                        "shape": "DBEngineVersion",
         
     | 
| 
       1285 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       1286 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       1287 
     | 
    
         
            -
                                "operation": "DescribeDBEngineVersions",
         
     | 
| 
       1288 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       1289 
     | 
    
         
            -
                                    {
         
     | 
| 
       1290 
     | 
    
         
            -
                                        "target": "Engine",
         
     | 
| 
       1291 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       1292 
     | 
    
         
            -
                                        "name": "EngineName"
         
     | 
| 
       1293 
     | 
    
         
            -
                                    },
         
     | 
| 
       1294 
     | 
    
         
            -
                                    {
         
     | 
| 
       1295 
     | 
    
         
            -
                                        "target": "EngineVersion",
         
     | 
| 
       1296 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       1297 
     | 
    
         
            -
                                        "name": "Version"
         
     | 
| 
       1298 
     | 
    
         
            -
                                    }
         
     | 
| 
       1299 
     | 
    
         
            -
                                ]
         
     | 
| 
       1300 
     | 
    
         
            -
                            },
         
     | 
| 
       1301 
     | 
    
         
            -
                            "path": "DBEngineVersions[0]"
         
     | 
| 
       1302 
     | 
    
         
            -
                        },
         
     | 
| 
       1303 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       1304 
     | 
    
         
            -
                            "Engine": {
         
     | 
| 
       1305 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1306 
     | 
    
         
            -
                                    "type": "DBEngine",
         
     | 
| 
       1307 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1308 
     | 
    
         
            -
                                        {
         
     | 
| 
       1309 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1310 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1311 
     | 
    
         
            -
                                            "name": "Engine"
         
     | 
| 
       1312 
     | 
    
         
            -
                                        }
         
     | 
| 
       1313 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1314 
     | 
    
         
            -
                                }
         
     | 
| 
       1315 
     | 
    
         
            -
                            },
         
     | 
| 
       1316 
     | 
    
         
            -
                            "ParameterGroupFamily": {
         
     | 
| 
       1317 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1318 
     | 
    
         
            -
                                    "type": "DBParameterGroupFamily",
         
     | 
| 
       1319 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1320 
     | 
    
         
            -
                                        {
         
     | 
| 
       1321 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1322 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1323 
     | 
    
         
            -
                                            "path": "DBParameterGroupFamily"
         
     | 
| 
       1324 
     | 
    
         
            -
                                        }
         
     | 
| 
       1325 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1326 
     | 
    
         
            -
                                }
         
     | 
| 
       1327 
     | 
    
         
            -
                            }
         
     | 
| 
       1328 
     | 
    
         
            -
                        },
         
     | 
| 
       1329 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       1330 
     | 
    
         
            -
                            "OptionGroupOptions": {
         
     | 
| 
       1331 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1332 
     | 
    
         
            -
                                    "operation": "DescribeOptionGroupOptions",
         
     | 
| 
       1333 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1334 
     | 
    
         
            -
                                        {
         
     | 
| 
       1335 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1336 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1337 
     | 
    
         
            -
                                            "name": "Engine"
         
     | 
| 
       1338 
     | 
    
         
            -
                                        },
         
     | 
| 
       1339 
     | 
    
         
            -
                                        {
         
     | 
| 
       1340 
     | 
    
         
            -
                                            "target": "MajorEngineVersion",
         
     | 
| 
       1341 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1342 
     | 
    
         
            -
                                            "name": "Version"
         
     | 
| 
       1343 
     | 
    
         
            -
                                        }
         
     | 
| 
       1344 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1345 
     | 
    
         
            -
                                },
         
     | 
| 
       1346 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1347 
     | 
    
         
            -
                                    "type": "OptionGroupOption",
         
     | 
| 
       1348 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1349 
     | 
    
         
            -
                                        {
         
     | 
| 
       1350 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1351 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1352 
     | 
    
         
            -
                                            "path": "OptionGroupOptions[].Name"
         
     | 
| 
       1353 
     | 
    
         
            -
                                        }
         
     | 
| 
       1354 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1355 
     | 
    
         
            -
                                    "path": "OptionGroupOptions[]"
         
     | 
| 
       1356 
     | 
    
         
            -
                                }
         
     | 
| 
       1357 
     | 
    
         
            -
                            },
         
     | 
| 
       1358 
     | 
    
         
            -
                            "OptionGroups": {
         
     | 
| 
       1359 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1360 
     | 
    
         
            -
                                    "operation": "DescribeOptionGroups",
         
     | 
| 
       1361 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1362 
     | 
    
         
            -
                                        {
         
     | 
| 
       1363 
     | 
    
         
            -
                                            "target": "EngineName",
         
     | 
| 
       1364 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1365 
     | 
    
         
            -
                                            "name": "Engine"
         
     | 
| 
       1366 
     | 
    
         
            -
                                        },
         
     | 
| 
       1367 
     | 
    
         
            -
                                        {
         
     | 
| 
       1368 
     | 
    
         
            -
                                            "target": "MajorEngineVersion",
         
     | 
| 
       1369 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1370 
     | 
    
         
            -
                                            "name": "Version"
         
     | 
| 
       1371 
     | 
    
         
            -
                                        }
         
     | 
| 
       1372 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1373 
     | 
    
         
            -
                                },
         
     | 
| 
       1374 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1375 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       1376 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1377 
     | 
    
         
            -
                                        {
         
     | 
| 
       1378 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1379 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1380 
     | 
    
         
            -
                                            "path": "OptionGroupsList[].OptionGroupName"
         
     | 
| 
       1381 
     | 
    
         
            -
                                        }
         
     | 
| 
       1382 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1383 
     | 
    
         
            -
                                    "path": "OptionGroupsList[]"
         
     | 
| 
       1384 
     | 
    
         
            -
                                }
         
     | 
| 
       1385 
     | 
    
         
            -
                            }
         
     | 
| 
       1386 
     | 
    
         
            -
                        }
         
     | 
| 
       1387 
     | 
    
         
            -
                    },
         
     | 
| 
       1388 
     | 
    
         
            -
                    "DBInstance": {
         
     | 
| 
       1389 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       1390 
     | 
    
         
            -
                            {
         
     | 
| 
       1391 
     | 
    
         
            -
                                "name": "Id",
         
     | 
| 
       1392 
     | 
    
         
            -
                                "memberName": "DBInstanceIdentifier"
         
     | 
| 
       1393 
     | 
    
         
            -
                            }
         
     | 
| 
       1394 
     | 
    
         
            -
                        ],
         
     | 
| 
       1395 
     | 
    
         
            -
                        "shape": "DBInstance",
         
     | 
| 
       1396 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       1397 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       1398 
     | 
    
         
            -
                                "operation": "DescribeDBInstances",
         
     | 
| 
       1399 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       1400 
     | 
    
         
            -
                                    {
         
     | 
| 
       1401 
     | 
    
         
            -
                                        "target": "DBInstanceIdentifier",
         
     | 
| 
       1402 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       1403 
     | 
    
         
            -
                                        "name": "Id"
         
     | 
| 
       1404 
     | 
    
         
            -
                                    }
         
     | 
| 
       1405 
     | 
    
         
            -
                                ]
         
     | 
| 
       1406 
     | 
    
         
            -
                            },
         
     | 
| 
       1407 
     | 
    
         
            -
                            "path": "DBInstances[0]"
         
     | 
| 
       1408 
     | 
    
         
            -
                        },
         
     | 
| 
       1409 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       1410 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       1411 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1412 
     | 
    
         
            -
                                    "operation": "CreateDBInstance",
         
     | 
| 
       1413 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1414 
     | 
    
         
            -
                                        {
         
     | 
| 
       1415 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1416 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1417 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1418 
     | 
    
         
            -
                                        }
         
     | 
| 
       1419 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1420 
     | 
    
         
            -
                                },
         
     | 
| 
       1421 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1422 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1423 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1424 
     | 
    
         
            -
                                        {
         
     | 
| 
       1425 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1426 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1427 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1428 
     | 
    
         
            -
                                        }
         
     | 
| 
       1429 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1430 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1431 
     | 
    
         
            -
                                }
         
     | 
| 
       1432 
     | 
    
         
            -
                            },
         
     | 
| 
       1433 
     | 
    
         
            -
                            "CreateReadReplica": {
         
     | 
| 
       1434 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1435 
     | 
    
         
            -
                                    "operation": "CreateDBInstanceReadReplica",
         
     | 
| 
       1436 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1437 
     | 
    
         
            -
                                        {
         
     | 
| 
       1438 
     | 
    
         
            -
                                            "target": "SourceDBInstanceIdentifier",
         
     | 
| 
       1439 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1440 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1441 
     | 
    
         
            -
                                        }
         
     | 
| 
       1442 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1443 
     | 
    
         
            -
                                },
         
     | 
| 
       1444 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1445 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1446 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1447 
     | 
    
         
            -
                                        {
         
     | 
| 
       1448 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1449 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1450 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1451 
     | 
    
         
            -
                                        }
         
     | 
| 
       1452 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1453 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1454 
     | 
    
         
            -
                                }
         
     | 
| 
       1455 
     | 
    
         
            -
                            },
         
     | 
| 
       1456 
     | 
    
         
            -
                            "CreateSnapshot": {
         
     | 
| 
       1457 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1458 
     | 
    
         
            -
                                    "operation": "CreateDBSnapshot",
         
     | 
| 
       1459 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1460 
     | 
    
         
            -
                                        {
         
     | 
| 
       1461 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1462 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1463 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1464 
     | 
    
         
            -
                                        }
         
     | 
| 
       1465 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1466 
     | 
    
         
            -
                                },
         
     | 
| 
       1467 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1468 
     | 
    
         
            -
                                    "type": "DBSnapshot",
         
     | 
| 
       1469 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1470 
     | 
    
         
            -
                                        {
         
     | 
| 
       1471 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       1472 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1473 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBInstanceIdentifier"
         
     | 
| 
       1474 
     | 
    
         
            -
                                        },
         
     | 
| 
       1475 
     | 
    
         
            -
                                        {
         
     | 
| 
       1476 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       1477 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1478 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBSnapshotIdentifier"
         
     | 
| 
       1479 
     | 
    
         
            -
                                        }
         
     | 
| 
       1480 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1481 
     | 
    
         
            -
                                    "path": "DBSnapshot"
         
     | 
| 
       1482 
     | 
    
         
            -
                                }
         
     | 
| 
       1483 
     | 
    
         
            -
                            },
         
     | 
| 
       1484 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       1485 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1486 
     | 
    
         
            -
                                    "operation": "DeleteDBInstance",
         
     | 
| 
       1487 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1488 
     | 
    
         
            -
                                        {
         
     | 
| 
       1489 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1490 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1491 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1492 
     | 
    
         
            -
                                        }
         
     | 
| 
       1493 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1494 
     | 
    
         
            -
                                },
         
     | 
| 
       1495 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1496 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1497 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1498 
     | 
    
         
            -
                                        {
         
     | 
| 
       1499 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1500 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1501 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1502 
     | 
    
         
            -
                                        }
         
     | 
| 
       1503 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1504 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1505 
     | 
    
         
            -
                                }
         
     | 
| 
       1506 
     | 
    
         
            -
                            },
         
     | 
| 
       1507 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       1508 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1509 
     | 
    
         
            -
                                    "operation": "ModifyDBInstance",
         
     | 
| 
       1510 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1511 
     | 
    
         
            -
                                        {
         
     | 
| 
       1512 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1513 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1514 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1515 
     | 
    
         
            -
                                        }
         
     | 
| 
       1516 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1517 
     | 
    
         
            -
                                },
         
     | 
| 
       1518 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1519 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1520 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1521 
     | 
    
         
            -
                                        {
         
     | 
| 
       1522 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1523 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1524 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1525 
     | 
    
         
            -
                                        }
         
     | 
| 
       1526 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1527 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1528 
     | 
    
         
            -
                                }
         
     | 
| 
       1529 
     | 
    
         
            -
                            },
         
     | 
| 
       1530 
     | 
    
         
            -
                            "Promote": {
         
     | 
| 
       1531 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1532 
     | 
    
         
            -
                                    "operation": "PromoteReadReplica",
         
     | 
| 
       1533 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1534 
     | 
    
         
            -
                                        {
         
     | 
| 
       1535 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1536 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1537 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1538 
     | 
    
         
            -
                                        }
         
     | 
| 
       1539 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1540 
     | 
    
         
            -
                                },
         
     | 
| 
       1541 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1542 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1543 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1544 
     | 
    
         
            -
                                        {
         
     | 
| 
       1545 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1546 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1547 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1548 
     | 
    
         
            -
                                        }
         
     | 
| 
       1549 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1550 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1551 
     | 
    
         
            -
                                }
         
     | 
| 
       1552 
     | 
    
         
            -
                            },
         
     | 
| 
       1553 
     | 
    
         
            -
                            "Reboot": {
         
     | 
| 
       1554 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1555 
     | 
    
         
            -
                                    "operation": "RebootDBInstance",
         
     | 
| 
       1556 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1557 
     | 
    
         
            -
                                        {
         
     | 
| 
       1558 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1559 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1560 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1561 
     | 
    
         
            -
                                        }
         
     | 
| 
       1562 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1563 
     | 
    
         
            -
                                },
         
     | 
| 
       1564 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1565 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1566 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1567 
     | 
    
         
            -
                                        {
         
     | 
| 
       1568 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1569 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1570 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1571 
     | 
    
         
            -
                                        }
         
     | 
| 
       1572 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1573 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1574 
     | 
    
         
            -
                                }
         
     | 
| 
       1575 
     | 
    
         
            -
                            },
         
     | 
| 
       1576 
     | 
    
         
            -
                            "Restore": {
         
     | 
| 
       1577 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1578 
     | 
    
         
            -
                                    "operation": "RestoreDBInstanceToPointInTime",
         
     | 
| 
       1579 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1580 
     | 
    
         
            -
                                        {
         
     | 
| 
       1581 
     | 
    
         
            -
                                            "target": "SourceDBInstanceIdentifier",
         
     | 
| 
       1582 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1583 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1584 
     | 
    
         
            -
                                        }
         
     | 
| 
       1585 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1586 
     | 
    
         
            -
                                },
         
     | 
| 
       1587 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1588 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1589 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1590 
     | 
    
         
            -
                                        {
         
     | 
| 
       1591 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1592 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1593 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       1594 
     | 
    
         
            -
                                        }
         
     | 
| 
       1595 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1596 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       1597 
     | 
    
         
            -
                                }
         
     | 
| 
       1598 
     | 
    
         
            -
                            },
         
     | 
| 
       1599 
     | 
    
         
            -
                            "SubscribeTo": {
         
     | 
| 
       1600 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1601 
     | 
    
         
            -
                                    "operation": "AddSourceIdentifierToSubscription",
         
     | 
| 
       1602 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1603 
     | 
    
         
            -
                                        {
         
     | 
| 
       1604 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       1605 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1606 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1607 
     | 
    
         
            -
                                        }
         
     | 
| 
       1608 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1609 
     | 
    
         
            -
                                },
         
     | 
| 
       1610 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1611 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       1612 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1613 
     | 
    
         
            -
                                        {
         
     | 
| 
       1614 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1615 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1616 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       1617 
     | 
    
         
            -
                                        }
         
     | 
| 
       1618 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1619 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       1620 
     | 
    
         
            -
                                }
         
     | 
| 
       1621 
     | 
    
         
            -
                            },
         
     | 
| 
       1622 
     | 
    
         
            -
                            "UnsubscribeFrom": {
         
     | 
| 
       1623 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1624 
     | 
    
         
            -
                                    "operation": "RemoveSourceIdentifierFromSubscription",
         
     | 
| 
       1625 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1626 
     | 
    
         
            -
                                        {
         
     | 
| 
       1627 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       1628 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1629 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1630 
     | 
    
         
            -
                                        }
         
     | 
| 
       1631 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1632 
     | 
    
         
            -
                                },
         
     | 
| 
       1633 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1634 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       1635 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1636 
     | 
    
         
            -
                                        {
         
     | 
| 
       1637 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1638 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1639 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       1640 
     | 
    
         
            -
                                        }
         
     | 
| 
       1641 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1642 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       1643 
     | 
    
         
            -
                                }
         
     | 
| 
       1644 
     | 
    
         
            -
                            }
         
     | 
| 
       1645 
     | 
    
         
            -
                        },
         
     | 
| 
       1646 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       1647 
     | 
    
         
            -
                            "Certificate": {
         
     | 
| 
       1648 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1649 
     | 
    
         
            -
                                    "type": "Certificate",
         
     | 
| 
       1650 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1651 
     | 
    
         
            -
                                        {
         
     | 
| 
       1652 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1653 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1654 
     | 
    
         
            -
                                            "path": "CACertificateIdentifier"
         
     | 
| 
       1655 
     | 
    
         
            -
                                        }
         
     | 
| 
       1656 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1657 
     | 
    
         
            -
                                }
         
     | 
| 
       1658 
     | 
    
         
            -
                            },
         
     | 
| 
       1659 
     | 
    
         
            -
                            "Cluster": {
         
     | 
| 
       1660 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1661 
     | 
    
         
            -
                                    "type": "DBCluster",
         
     | 
| 
       1662 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1663 
     | 
    
         
            -
                                        {
         
     | 
| 
       1664 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1665 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1666 
     | 
    
         
            -
                                            "path": "DBClusterIdentifier"
         
     | 
| 
       1667 
     | 
    
         
            -
                                        }
         
     | 
| 
       1668 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1669 
     | 
    
         
            -
                                }
         
     | 
| 
       1670 
     | 
    
         
            -
                            },
         
     | 
| 
       1671 
     | 
    
         
            -
                            "OptionGroups": {
         
     | 
| 
       1672 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1673 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       1674 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1675 
     | 
    
         
            -
                                        {
         
     | 
| 
       1676 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1677 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1678 
     | 
    
         
            -
                                            "path": "OptionGroupMemberships[].OptionGroupName"
         
     | 
| 
       1679 
     | 
    
         
            -
                                        }
         
     | 
| 
       1680 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1681 
     | 
    
         
            -
                                }
         
     | 
| 
       1682 
     | 
    
         
            -
                            },
         
     | 
| 
       1683 
     | 
    
         
            -
                            "ParameterGroups": {
         
     | 
| 
       1684 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1685 
     | 
    
         
            -
                                    "type": "DBParameterGroup",
         
     | 
| 
       1686 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1687 
     | 
    
         
            -
                                        {
         
     | 
| 
       1688 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1689 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1690 
     | 
    
         
            -
                                            "path": "DBParameterGroups[].DBParameterGroupName"
         
     | 
| 
       1691 
     | 
    
         
            -
                                        }
         
     | 
| 
       1692 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1693 
     | 
    
         
            -
                                }
         
     | 
| 
       1694 
     | 
    
         
            -
                            },
         
     | 
| 
       1695 
     | 
    
         
            -
                            "ReadReplicas": {
         
     | 
| 
       1696 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1697 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1698 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1699 
     | 
    
         
            -
                                        {
         
     | 
| 
       1700 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1701 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1702 
     | 
    
         
            -
                                            "path": "ReadReplicaDBInstanceIdentifiers[]"
         
     | 
| 
       1703 
     | 
    
         
            -
                                        }
         
     | 
| 
       1704 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1705 
     | 
    
         
            -
                                }
         
     | 
| 
       1706 
     | 
    
         
            -
                            },
         
     | 
| 
       1707 
     | 
    
         
            -
                            "SecurityGroups": {
         
     | 
| 
       1708 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1709 
     | 
    
         
            -
                                    "type": "DBSecurityGroup",
         
     | 
| 
       1710 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1711 
     | 
    
         
            -
                                        {
         
     | 
| 
       1712 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1713 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1714 
     | 
    
         
            -
                                            "path": "DBSecurityGroups[].DBSecurityGroupName"
         
     | 
| 
       1715 
     | 
    
         
            -
                                        }
         
     | 
| 
       1716 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1717 
     | 
    
         
            -
                                }
         
     | 
| 
       1718 
     | 
    
         
            -
                            },
         
     | 
| 
       1719 
     | 
    
         
            -
                            "Source": {
         
     | 
| 
       1720 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1721 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       1722 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1723 
     | 
    
         
            -
                                        {
         
     | 
| 
       1724 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       1725 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1726 
     | 
    
         
            -
                                            "path": "ReadReplicaSourceDBInstanceIdentifier"
         
     | 
| 
       1727 
     | 
    
         
            -
                                        }
         
     | 
| 
       1728 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1729 
     | 
    
         
            -
                                }
         
     | 
| 
       1730 
     | 
    
         
            -
                            },
         
     | 
| 
       1731 
     | 
    
         
            -
                            "SubnetGroup": {
         
     | 
| 
       1732 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1733 
     | 
    
         
            -
                                    "type": "DBSubnetGroup",
         
     | 
| 
       1734 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1735 
     | 
    
         
            -
                                        {
         
     | 
| 
       1736 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1737 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       1738 
     | 
    
         
            -
                                            "path": "DBSubnetGroup.DBSubnetGroupName"
         
     | 
| 
       1739 
     | 
    
         
            -
                                        }
         
     | 
| 
       1740 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1741 
     | 
    
         
            -
                                }
         
     | 
| 
       1742 
     | 
    
         
            -
                            }
         
     | 
| 
       1743 
     | 
    
         
            -
                        },
         
     | 
| 
       1744 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       1745 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       1746 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1747 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       1748 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1749 
     | 
    
         
            -
                                        {
         
     | 
| 
       1750 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       1751 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       1752 
     | 
    
         
            -
                                            "value": "db-instance"
         
     | 
| 
       1753 
     | 
    
         
            -
                                        },
         
     | 
| 
       1754 
     | 
    
         
            -
                                        {
         
     | 
| 
       1755 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       1756 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1757 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1758 
     | 
    
         
            -
                                        }
         
     | 
| 
       1759 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1760 
     | 
    
         
            -
                                },
         
     | 
| 
       1761 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1762 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       1763 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1764 
     | 
    
         
            -
                                        {
         
     | 
| 
       1765 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       1766 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1767 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       1768 
     | 
    
         
            -
                                        },
         
     | 
| 
       1769 
     | 
    
         
            -
                                        {
         
     | 
| 
       1770 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       1771 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1772 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       1773 
     | 
    
         
            -
                                        }
         
     | 
| 
       1774 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1775 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       1776 
     | 
    
         
            -
                                }
         
     | 
| 
       1777 
     | 
    
         
            -
                            },
         
     | 
| 
       1778 
     | 
    
         
            -
                            "LogFiles": {
         
     | 
| 
       1779 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1780 
     | 
    
         
            -
                                    "operation": "DescribeDBLogFiles",
         
     | 
| 
       1781 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1782 
     | 
    
         
            -
                                        {
         
     | 
| 
       1783 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1784 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1785 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1786 
     | 
    
         
            -
                                        }
         
     | 
| 
       1787 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1788 
     | 
    
         
            -
                                },
         
     | 
| 
       1789 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1790 
     | 
    
         
            -
                                    "type": "DBLogFile",
         
     | 
| 
       1791 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1792 
     | 
    
         
            -
                                        {
         
     | 
| 
       1793 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       1794 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1795 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1796 
     | 
    
         
            -
                                        },
         
     | 
| 
       1797 
     | 
    
         
            -
                                        {
         
     | 
| 
       1798 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1799 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1800 
     | 
    
         
            -
                                            "path": "DescribeDBLogFiles[].LogFileName"
         
     | 
| 
       1801 
     | 
    
         
            -
                                        }
         
     | 
| 
       1802 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1803 
     | 
    
         
            -
                                    "path": "DescribeDBLogFiles[]"
         
     | 
| 
       1804 
     | 
    
         
            -
                                }
         
     | 
| 
       1805 
     | 
    
         
            -
                            },
         
     | 
| 
       1806 
     | 
    
         
            -
                            "PendingMaintenanceActions": {
         
     | 
| 
       1807 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1808 
     | 
    
         
            -
                                    "operation": "DescribePendingMaintenanceActions",
         
     | 
| 
       1809 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1810 
     | 
    
         
            -
                                        {
         
     | 
| 
       1811 
     | 
    
         
            -
                                            "target": "Filters[0].Name",
         
     | 
| 
       1812 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       1813 
     | 
    
         
            -
                                            "value": "db-instance-id"
         
     | 
| 
       1814 
     | 
    
         
            -
                                        },
         
     | 
| 
       1815 
     | 
    
         
            -
                                        {
         
     | 
| 
       1816 
     | 
    
         
            -
                                            "target": "Filters[0].Values[]",
         
     | 
| 
       1817 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1818 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1819 
     | 
    
         
            -
                                        }
         
     | 
| 
       1820 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1821 
     | 
    
         
            -
                                },
         
     | 
| 
       1822 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1823 
     | 
    
         
            -
                                    "type": "PendingMaintenanceAction",
         
     | 
| 
       1824 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1825 
     | 
    
         
            -
                                        {
         
     | 
| 
       1826 
     | 
    
         
            -
                                            "target": "TargetARN",
         
     | 
| 
       1827 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1828 
     | 
    
         
            -
                                            "path": "PendingMaintenanceActions[0].ResourceIdentifier"
         
     | 
| 
       1829 
     | 
    
         
            -
                                        },
         
     | 
| 
       1830 
     | 
    
         
            -
                                        {
         
     | 
| 
       1831 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1832 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1833 
     | 
    
         
            -
                                            "path": "PendingMaintenanceActions[0].PendingMaintenanceActionDetails[].Action"
         
     | 
| 
       1834 
     | 
    
         
            -
                                        }
         
     | 
| 
       1835 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1836 
     | 
    
         
            -
                                    "path": "PendingMaintenanceActions[0].PendingMaintenanceActionDetails[]"
         
     | 
| 
       1837 
     | 
    
         
            -
                                }
         
     | 
| 
       1838 
     | 
    
         
            -
                            },
         
     | 
| 
       1839 
     | 
    
         
            -
                            "Snapshots": {
         
     | 
| 
       1840 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1841 
     | 
    
         
            -
                                    "operation": "DescribeDBSnapshots",
         
     | 
| 
       1842 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1843 
     | 
    
         
            -
                                        {
         
     | 
| 
       1844 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1845 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1846 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       1847 
     | 
    
         
            -
                                        }
         
     | 
| 
       1848 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1849 
     | 
    
         
            -
                                },
         
     | 
| 
       1850 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1851 
     | 
    
         
            -
                                    "type": "DBSnapshot",
         
     | 
| 
       1852 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1853 
     | 
    
         
            -
                                        {
         
     | 
| 
       1854 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       1855 
     | 
    
         
            -
                                            "source": "requestParameter",
         
     | 
| 
       1856 
     | 
    
         
            -
                                            "path": "DBInstanceIdentifier"
         
     | 
| 
       1857 
     | 
    
         
            -
                                        },
         
     | 
| 
       1858 
     | 
    
         
            -
                                        {
         
     | 
| 
       1859 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       1860 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1861 
     | 
    
         
            -
                                            "path": "DBSnapshots[].DBSnapshotIdentifier"
         
     | 
| 
       1862 
     | 
    
         
            -
                                        }
         
     | 
| 
       1863 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1864 
     | 
    
         
            -
                                    "path": "DBSnapshots[]"
         
     | 
| 
       1865 
     | 
    
         
            -
                                }
         
     | 
| 
       1866 
     | 
    
         
            -
                            }
         
     | 
| 
       1867 
     | 
    
         
            -
                        }
         
     | 
| 
       1868 
     | 
    
         
            -
                    },
         
     | 
| 
       1869 
     | 
    
         
            -
                    "DBLogFile": {
         
     | 
| 
       1870 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       1871 
     | 
    
         
            -
                            { "name": "InstanceId" },
         
     | 
| 
       1872 
     | 
    
         
            -
                            {
         
     | 
| 
       1873 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       1874 
     | 
    
         
            -
                                "memberName": "LogFileName"
         
     | 
| 
       1875 
     | 
    
         
            -
                            }
         
     | 
| 
       1876 
     | 
    
         
            -
                        ],
         
     | 
| 
       1877 
     | 
    
         
            -
                        "shape": "DescribeDBLogFilesDetails",
         
     | 
| 
       1878 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       1879 
     | 
    
         
            -
                            "Download": {
         
     | 
| 
       1880 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1881 
     | 
    
         
            -
                                    "operation": "DownloadDBLogFilePortion",
         
     | 
| 
       1882 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1883 
     | 
    
         
            -
                                        {
         
     | 
| 
       1884 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       1885 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1886 
     | 
    
         
            -
                                            "name": "InstanceId"
         
     | 
| 
       1887 
     | 
    
         
            -
                                        },
         
     | 
| 
       1888 
     | 
    
         
            -
                                        {
         
     | 
| 
       1889 
     | 
    
         
            -
                                            "target": "LogFileName",
         
     | 
| 
       1890 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1891 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1892 
     | 
    
         
            -
                                        }
         
     | 
| 
       1893 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1894 
     | 
    
         
            -
                                }
         
     | 
| 
       1895 
     | 
    
         
            -
                            }
         
     | 
| 
       1896 
     | 
    
         
            -
                        }
         
     | 
| 
       1897 
     | 
    
         
            -
                    },
         
     | 
| 
       1898 
     | 
    
         
            -
                    "DBParameterGroup": {
         
     | 
| 
       1899 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       1900 
     | 
    
         
            -
                            {
         
     | 
| 
       1901 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       1902 
     | 
    
         
            -
                                "memberName": "DBParameterGroupName"
         
     | 
| 
       1903 
     | 
    
         
            -
                            }
         
     | 
| 
       1904 
     | 
    
         
            -
                        ],
         
     | 
| 
       1905 
     | 
    
         
            -
                        "shape": "DBParameterGroup",
         
     | 
| 
       1906 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       1907 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       1908 
     | 
    
         
            -
                                "operation": "DescribeDBParameterGroups",
         
     | 
| 
       1909 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       1910 
     | 
    
         
            -
                                    {
         
     | 
| 
       1911 
     | 
    
         
            -
                                        "target": "DBParameterGroupName",
         
     | 
| 
       1912 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       1913 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       1914 
     | 
    
         
            -
                                    }
         
     | 
| 
       1915 
     | 
    
         
            -
                                ]
         
     | 
| 
       1916 
     | 
    
         
            -
                            },
         
     | 
| 
       1917 
     | 
    
         
            -
                            "path": "DBParameterGroups[0]"
         
     | 
| 
       1918 
     | 
    
         
            -
                        },
         
     | 
| 
       1919 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       1920 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       1921 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1922 
     | 
    
         
            -
                                    "operation": "CreateDBParameterGroup",
         
     | 
| 
       1923 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1924 
     | 
    
         
            -
                                        {
         
     | 
| 
       1925 
     | 
    
         
            -
                                            "target": "DBParameterGroupName",
         
     | 
| 
       1926 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1927 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1928 
     | 
    
         
            -
                                        }
         
     | 
| 
       1929 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1930 
     | 
    
         
            -
                                },
         
     | 
| 
       1931 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1932 
     | 
    
         
            -
                                    "type": "DBParameterGroup",
         
     | 
| 
       1933 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1934 
     | 
    
         
            -
                                        {
         
     | 
| 
       1935 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1936 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1937 
     | 
    
         
            -
                                            "path": "DBParameterGroup.DBParameterGroupName"
         
     | 
| 
       1938 
     | 
    
         
            -
                                        }
         
     | 
| 
       1939 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1940 
     | 
    
         
            -
                                    "path": "DBParameterGroup"
         
     | 
| 
       1941 
     | 
    
         
            -
                                }
         
     | 
| 
       1942 
     | 
    
         
            -
                            },
         
     | 
| 
       1943 
     | 
    
         
            -
                            "Copy": {
         
     | 
| 
       1944 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1945 
     | 
    
         
            -
                                    "operation": "CopyDBParameterGroup",
         
     | 
| 
       1946 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1947 
     | 
    
         
            -
                                        {
         
     | 
| 
       1948 
     | 
    
         
            -
                                            "target": "SourceDBParameterGroupIdentifier",
         
     | 
| 
       1949 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1950 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1951 
     | 
    
         
            -
                                        }
         
     | 
| 
       1952 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1953 
     | 
    
         
            -
                                },
         
     | 
| 
       1954 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1955 
     | 
    
         
            -
                                    "type": "DBParameterGroup",
         
     | 
| 
       1956 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1957 
     | 
    
         
            -
                                        {
         
     | 
| 
       1958 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1959 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1960 
     | 
    
         
            -
                                            "path": "DBParameterGroup.DBParameterGroupName"
         
     | 
| 
       1961 
     | 
    
         
            -
                                        }
         
     | 
| 
       1962 
     | 
    
         
            -
                                    ],
         
     | 
| 
       1963 
     | 
    
         
            -
                                    "path": "DBParameterGroup"
         
     | 
| 
       1964 
     | 
    
         
            -
                                }
         
     | 
| 
       1965 
     | 
    
         
            -
                            },
         
     | 
| 
       1966 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       1967 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1968 
     | 
    
         
            -
                                    "operation": "DeleteDBParameterGroup",
         
     | 
| 
       1969 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1970 
     | 
    
         
            -
                                        {
         
     | 
| 
       1971 
     | 
    
         
            -
                                            "target": "DBParameterGroupName",
         
     | 
| 
       1972 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1973 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1974 
     | 
    
         
            -
                                        }
         
     | 
| 
       1975 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1976 
     | 
    
         
            -
                                }
         
     | 
| 
       1977 
     | 
    
         
            -
                            },
         
     | 
| 
       1978 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       1979 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       1980 
     | 
    
         
            -
                                    "operation": "ModifyDBParameterGroup",
         
     | 
| 
       1981 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       1982 
     | 
    
         
            -
                                        {
         
     | 
| 
       1983 
     | 
    
         
            -
                                            "target": "DBParameterGroupName",
         
     | 
| 
       1984 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       1985 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       1986 
     | 
    
         
            -
                                        }
         
     | 
| 
       1987 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1988 
     | 
    
         
            -
                                },
         
     | 
| 
       1989 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       1990 
     | 
    
         
            -
                                    "type": "DBParameterGroup",
         
     | 
| 
       1991 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       1992 
     | 
    
         
            -
                                        {
         
     | 
| 
       1993 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       1994 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       1995 
     | 
    
         
            -
                                            "path": "DBParameterGroupName"
         
     | 
| 
       1996 
     | 
    
         
            -
                                        }
         
     | 
| 
       1997 
     | 
    
         
            -
                                    ]
         
     | 
| 
       1998 
     | 
    
         
            -
                                }
         
     | 
| 
       1999 
     | 
    
         
            -
                            },
         
     | 
| 
       2000 
     | 
    
         
            -
                            "Reset": {
         
     | 
| 
       2001 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2002 
     | 
    
         
            -
                                    "operation": "ResetDBParameterGroup",
         
     | 
| 
       2003 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2004 
     | 
    
         
            -
                                        {
         
     | 
| 
       2005 
     | 
    
         
            -
                                            "target": "DBParameterGroupName",
         
     | 
| 
       2006 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2007 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2008 
     | 
    
         
            -
                                        }
         
     | 
| 
       2009 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2010 
     | 
    
         
            -
                                },
         
     | 
| 
       2011 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2012 
     | 
    
         
            -
                                    "type": "DBParameterGroup",
         
     | 
| 
       2013 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2014 
     | 
    
         
            -
                                        {
         
     | 
| 
       2015 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2016 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2017 
     | 
    
         
            -
                                            "path": "DBParameterGroupName"
         
     | 
| 
       2018 
     | 
    
         
            -
                                        }
         
     | 
| 
       2019 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2020 
     | 
    
         
            -
                                }
         
     | 
| 
       2021 
     | 
    
         
            -
                            },
         
     | 
| 
       2022 
     | 
    
         
            -
                            "SubscribeTo": {
         
     | 
| 
       2023 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2024 
     | 
    
         
            -
                                    "operation": "AddSourceIdentifierToSubscription",
         
     | 
| 
       2025 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2026 
     | 
    
         
            -
                                        {
         
     | 
| 
       2027 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2028 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2029 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2030 
     | 
    
         
            -
                                        }
         
     | 
| 
       2031 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2032 
     | 
    
         
            -
                                },
         
     | 
| 
       2033 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2034 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2035 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2036 
     | 
    
         
            -
                                        {
         
     | 
| 
       2037 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2038 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2039 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2040 
     | 
    
         
            -
                                        }
         
     | 
| 
       2041 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2042 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2043 
     | 
    
         
            -
                                }
         
     | 
| 
       2044 
     | 
    
         
            -
                            },
         
     | 
| 
       2045 
     | 
    
         
            -
                            "UnsubscribeFrom": {
         
     | 
| 
       2046 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2047 
     | 
    
         
            -
                                    "operation": "RemoveSourceIdentifierFromSubscription",
         
     | 
| 
       2048 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2049 
     | 
    
         
            -
                                        {
         
     | 
| 
       2050 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2051 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2052 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2053 
     | 
    
         
            -
                                        }
         
     | 
| 
       2054 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2055 
     | 
    
         
            -
                                },
         
     | 
| 
       2056 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2057 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2058 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2059 
     | 
    
         
            -
                                        {
         
     | 
| 
       2060 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2061 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2062 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2063 
     | 
    
         
            -
                                        }
         
     | 
| 
       2064 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2065 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2066 
     | 
    
         
            -
                                }
         
     | 
| 
       2067 
     | 
    
         
            -
                            }
         
     | 
| 
       2068 
     | 
    
         
            -
                        },
         
     | 
| 
       2069 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       2070 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       2071 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2072 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       2073 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2074 
     | 
    
         
            -
                                        {
         
     | 
| 
       2075 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       2076 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       2077 
     | 
    
         
            -
                                            "value": "db-parameter-group"
         
     | 
| 
       2078 
     | 
    
         
            -
                                        },
         
     | 
| 
       2079 
     | 
    
         
            -
                                        {
         
     | 
| 
       2080 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2081 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2082 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2083 
     | 
    
         
            -
                                        }
         
     | 
| 
       2084 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2085 
     | 
    
         
            -
                                },
         
     | 
| 
       2086 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2087 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       2088 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2089 
     | 
    
         
            -
                                        {
         
     | 
| 
       2090 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       2091 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2092 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       2093 
     | 
    
         
            -
                                        },
         
     | 
| 
       2094 
     | 
    
         
            -
                                        {
         
     | 
| 
       2095 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       2096 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2097 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       2098 
     | 
    
         
            -
                                        }
         
     | 
| 
       2099 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2100 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       2101 
     | 
    
         
            -
                                }
         
     | 
| 
       2102 
     | 
    
         
            -
                            },
         
     | 
| 
       2103 
     | 
    
         
            -
                            "Parameters": {
         
     | 
| 
       2104 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2105 
     | 
    
         
            -
                                    "operation": "DescribeDBParameters",
         
     | 
| 
       2106 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2107 
     | 
    
         
            -
                                        {
         
     | 
| 
       2108 
     | 
    
         
            -
                                            "target": "DBParameterGroupName",
         
     | 
| 
       2109 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2110 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2111 
     | 
    
         
            -
                                        }
         
     | 
| 
       2112 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2113 
     | 
    
         
            -
                                },
         
     | 
| 
       2114 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2115 
     | 
    
         
            -
                                    "type": "Parameter",
         
     | 
| 
       2116 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2117 
     | 
    
         
            -
                                        {
         
     | 
| 
       2118 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2119 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2120 
     | 
    
         
            -
                                            "path": "Parameters[].ParameterName"
         
     | 
| 
       2121 
     | 
    
         
            -
                                        }
         
     | 
| 
       2122 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2123 
     | 
    
         
            -
                                    "path": "Parameters[]"
         
     | 
| 
       2124 
     | 
    
         
            -
                                }
         
     | 
| 
       2125 
     | 
    
         
            -
                            }
         
     | 
| 
       2126 
     | 
    
         
            -
                        }
         
     | 
| 
       2127 
     | 
    
         
            -
                    },
         
     | 
| 
       2128 
     | 
    
         
            -
                    "DBParameterGroupFamily": {
         
     | 
| 
       2129 
     | 
    
         
            -
                        "identifiers": [{ "name": "Name" }],
         
     | 
| 
       2130 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       2131 
     | 
    
         
            -
                            "EngineDefaultClusterParameters": {
         
     | 
| 
       2132 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2133 
     | 
    
         
            -
                                    "operation": "DescribeEngineDefaultClusterParameters",
         
     | 
| 
       2134 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2135 
     | 
    
         
            -
                                        {
         
     | 
| 
       2136 
     | 
    
         
            -
                                            "target": "DBParameterGroupFamily",
         
     | 
| 
       2137 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2138 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2139 
     | 
    
         
            -
                                        }
         
     | 
| 
       2140 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2141 
     | 
    
         
            -
                                },
         
     | 
| 
       2142 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2143 
     | 
    
         
            -
                                    "type": "Parameter",
         
     | 
| 
       2144 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2145 
     | 
    
         
            -
                                        {
         
     | 
| 
       2146 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2147 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2148 
     | 
    
         
            -
                                            "path": "EngineDefaults.Parameters[].ParameterName"
         
     | 
| 
       2149 
     | 
    
         
            -
                                        }
         
     | 
| 
       2150 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2151 
     | 
    
         
            -
                                    "path": "EngineDefaults.Parameters[]"
         
     | 
| 
       2152 
     | 
    
         
            -
                                }
         
     | 
| 
       2153 
     | 
    
         
            -
                            },
         
     | 
| 
       2154 
     | 
    
         
            -
                            "EngineDefaultParameters": {
         
     | 
| 
       2155 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2156 
     | 
    
         
            -
                                    "operation": "DescribeEngineDefaultParameters",
         
     | 
| 
       2157 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2158 
     | 
    
         
            -
                                        {
         
     | 
| 
       2159 
     | 
    
         
            -
                                            "target": "DBParameterGroupFamily",
         
     | 
| 
       2160 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2161 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2162 
     | 
    
         
            -
                                        }
         
     | 
| 
       2163 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2164 
     | 
    
         
            -
                                },
         
     | 
| 
       2165 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2166 
     | 
    
         
            -
                                    "type": "Parameter",
         
     | 
| 
       2167 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2168 
     | 
    
         
            -
                                        {
         
     | 
| 
       2169 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2170 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2171 
     | 
    
         
            -
                                            "path": "EngineDefaults.Parameters[].ParameterName"
         
     | 
| 
       2172 
     | 
    
         
            -
                                        }
         
     | 
| 
       2173 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2174 
     | 
    
         
            -
                                    "path": "EngineDefaults.Parameters[]"
         
     | 
| 
       2175 
     | 
    
         
            -
                                }
         
     | 
| 
       2176 
     | 
    
         
            -
                            }
         
     | 
| 
       2177 
     | 
    
         
            -
                        }
         
     | 
| 
       2178 
     | 
    
         
            -
                    },
         
     | 
| 
       2179 
     | 
    
         
            -
                    "DBSecurityGroup": {
         
     | 
| 
       2180 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2181 
     | 
    
         
            -
                            {
         
     | 
| 
       2182 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       2183 
     | 
    
         
            -
                                "memberName": "DBSecurityGroupName"
         
     | 
| 
       2184 
     | 
    
         
            -
                            }
         
     | 
| 
       2185 
     | 
    
         
            -
                        ],
         
     | 
| 
       2186 
     | 
    
         
            -
                        "shape": "DBSecurityGroup",
         
     | 
| 
       2187 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2188 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2189 
     | 
    
         
            -
                                "operation": "DescribeDBSecurityGroups",
         
     | 
| 
       2190 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2191 
     | 
    
         
            -
                                    {
         
     | 
| 
       2192 
     | 
    
         
            -
                                        "target": "DBSecurityGroupName",
         
     | 
| 
       2193 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2194 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       2195 
     | 
    
         
            -
                                    }
         
     | 
| 
       2196 
     | 
    
         
            -
                                ]
         
     | 
| 
       2197 
     | 
    
         
            -
                            },
         
     | 
| 
       2198 
     | 
    
         
            -
                            "path": "DBSecurityGroups[0]"
         
     | 
| 
       2199 
     | 
    
         
            -
                        },
         
     | 
| 
       2200 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2201 
     | 
    
         
            -
                            "AuthorizeIngress": {
         
     | 
| 
       2202 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2203 
     | 
    
         
            -
                                    "operation": "AuthorizeDBSecurityGroupIngress",
         
     | 
| 
       2204 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2205 
     | 
    
         
            -
                                        {
         
     | 
| 
       2206 
     | 
    
         
            -
                                            "target": "DBSecurityGroupName",
         
     | 
| 
       2207 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2208 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2209 
     | 
    
         
            -
                                        }
         
     | 
| 
       2210 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2211 
     | 
    
         
            -
                                },
         
     | 
| 
       2212 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2213 
     | 
    
         
            -
                                    "type": "DBSecurityGroup",
         
     | 
| 
       2214 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2215 
     | 
    
         
            -
                                        {
         
     | 
| 
       2216 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2217 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2218 
     | 
    
         
            -
                                            "path": "DBSecurityGroup.DBSecurityGroupName"
         
     | 
| 
       2219 
     | 
    
         
            -
                                        }
         
     | 
| 
       2220 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2221 
     | 
    
         
            -
                                    "path": "DBSecurityGroup"
         
     | 
| 
       2222 
     | 
    
         
            -
                                }
         
     | 
| 
       2223 
     | 
    
         
            -
                            },
         
     | 
| 
       2224 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       2225 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2226 
     | 
    
         
            -
                                    "operation": "CreateDBSecurityGroup",
         
     | 
| 
       2227 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2228 
     | 
    
         
            -
                                        {
         
     | 
| 
       2229 
     | 
    
         
            -
                                            "target": "DBSecurityGroupName",
         
     | 
| 
       2230 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2231 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2232 
     | 
    
         
            -
                                        }
         
     | 
| 
       2233 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2234 
     | 
    
         
            -
                                },
         
     | 
| 
       2235 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2236 
     | 
    
         
            -
                                    "type": "DBSecurityGroup",
         
     | 
| 
       2237 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2238 
     | 
    
         
            -
                                        {
         
     | 
| 
       2239 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2240 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2241 
     | 
    
         
            -
                                            "path": "DBSecurityGroup.DBSecurityGroupName"
         
     | 
| 
       2242 
     | 
    
         
            -
                                        }
         
     | 
| 
       2243 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2244 
     | 
    
         
            -
                                    "path": "DBSecurityGroup"
         
     | 
| 
       2245 
     | 
    
         
            -
                                }
         
     | 
| 
       2246 
     | 
    
         
            -
                            },
         
     | 
| 
       2247 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       2248 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2249 
     | 
    
         
            -
                                    "operation": "DeleteDBSecurityGroup",
         
     | 
| 
       2250 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2251 
     | 
    
         
            -
                                        {
         
     | 
| 
       2252 
     | 
    
         
            -
                                            "target": "DBSecurityGroupName",
         
     | 
| 
       2253 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2254 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2255 
     | 
    
         
            -
                                        }
         
     | 
| 
       2256 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2257 
     | 
    
         
            -
                                }
         
     | 
| 
       2258 
     | 
    
         
            -
                            },
         
     | 
| 
       2259 
     | 
    
         
            -
                            "RevokeIngress": {
         
     | 
| 
       2260 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2261 
     | 
    
         
            -
                                    "operation": "RevokeDBSecurityGroupIngress",
         
     | 
| 
       2262 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2263 
     | 
    
         
            -
                                        {
         
     | 
| 
       2264 
     | 
    
         
            -
                                            "target": "DBSecurityGroupName",
         
     | 
| 
       2265 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2266 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2267 
     | 
    
         
            -
                                        }
         
     | 
| 
       2268 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2269 
     | 
    
         
            -
                                },
         
     | 
| 
       2270 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2271 
     | 
    
         
            -
                                    "type": "DBSecurityGroup",
         
     | 
| 
       2272 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2273 
     | 
    
         
            -
                                        {
         
     | 
| 
       2274 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2275 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2276 
     | 
    
         
            -
                                            "path": "DBSecurityGroup.DBSecurityGroupName"
         
     | 
| 
       2277 
     | 
    
         
            -
                                        }
         
     | 
| 
       2278 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2279 
     | 
    
         
            -
                                    "path": "DBSecurityGroup"
         
     | 
| 
       2280 
     | 
    
         
            -
                                }
         
     | 
| 
       2281 
     | 
    
         
            -
                            },
         
     | 
| 
       2282 
     | 
    
         
            -
                            "SubscribeTo": {
         
     | 
| 
       2283 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2284 
     | 
    
         
            -
                                    "operation": "AddSourceIdentifierToSubscription",
         
     | 
| 
       2285 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2286 
     | 
    
         
            -
                                        {
         
     | 
| 
       2287 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2288 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2289 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2290 
     | 
    
         
            -
                                        }
         
     | 
| 
       2291 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2292 
     | 
    
         
            -
                                },
         
     | 
| 
       2293 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2294 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2295 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2296 
     | 
    
         
            -
                                        {
         
     | 
| 
       2297 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2298 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2299 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2300 
     | 
    
         
            -
                                        }
         
     | 
| 
       2301 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2302 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2303 
     | 
    
         
            -
                                }
         
     | 
| 
       2304 
     | 
    
         
            -
                            },
         
     | 
| 
       2305 
     | 
    
         
            -
                            "UnsubscribeFrom": {
         
     | 
| 
       2306 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2307 
     | 
    
         
            -
                                    "operation": "RemoveSourceIdentifierFromSubscription",
         
     | 
| 
       2308 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2309 
     | 
    
         
            -
                                        {
         
     | 
| 
       2310 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2311 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2312 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2313 
     | 
    
         
            -
                                        }
         
     | 
| 
       2314 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2315 
     | 
    
         
            -
                                },
         
     | 
| 
       2316 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2317 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2318 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2319 
     | 
    
         
            -
                                        {
         
     | 
| 
       2320 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2321 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2322 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2323 
     | 
    
         
            -
                                        }
         
     | 
| 
       2324 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2325 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2326 
     | 
    
         
            -
                                }
         
     | 
| 
       2327 
     | 
    
         
            -
                            }
         
     | 
| 
       2328 
     | 
    
         
            -
                        },
         
     | 
| 
       2329 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       2330 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       2331 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2332 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       2333 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2334 
     | 
    
         
            -
                                        {
         
     | 
| 
       2335 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       2336 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       2337 
     | 
    
         
            -
                                            "value": "db-security-group"
         
     | 
| 
       2338 
     | 
    
         
            -
                                        },
         
     | 
| 
       2339 
     | 
    
         
            -
                                        {
         
     | 
| 
       2340 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2341 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2342 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2343 
     | 
    
         
            -
                                        }
         
     | 
| 
       2344 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2345 
     | 
    
         
            -
                                },
         
     | 
| 
       2346 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2347 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       2348 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2349 
     | 
    
         
            -
                                        {
         
     | 
| 
       2350 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       2351 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2352 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       2353 
     | 
    
         
            -
                                        },
         
     | 
| 
       2354 
     | 
    
         
            -
                                        {
         
     | 
| 
       2355 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       2356 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2357 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       2358 
     | 
    
         
            -
                                        }
         
     | 
| 
       2359 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2360 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       2361 
     | 
    
         
            -
                                }
         
     | 
| 
       2362 
     | 
    
         
            -
                            }
         
     | 
| 
       2363 
     | 
    
         
            -
                        }
         
     | 
| 
       2364 
     | 
    
         
            -
                    },
         
     | 
| 
       2365 
     | 
    
         
            -
                    "DBSnapshot": {
         
     | 
| 
       2366 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2367 
     | 
    
         
            -
                            {
         
     | 
| 
       2368 
     | 
    
         
            -
                                "name": "InstanceId",
         
     | 
| 
       2369 
     | 
    
         
            -
                                "memberName": "DBInstanceIdentifier"
         
     | 
| 
       2370 
     | 
    
         
            -
                            },
         
     | 
| 
       2371 
     | 
    
         
            -
                            {
         
     | 
| 
       2372 
     | 
    
         
            -
                                "name": "SnapshotId",
         
     | 
| 
       2373 
     | 
    
         
            -
                                "memberName": "DBSnapshotIdentifier"
         
     | 
| 
       2374 
     | 
    
         
            -
                            }
         
     | 
| 
       2375 
     | 
    
         
            -
                        ],
         
     | 
| 
       2376 
     | 
    
         
            -
                        "shape": "DBSnapshot",
         
     | 
| 
       2377 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2378 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2379 
     | 
    
         
            -
                                "operation": "DescribeDBSnapshots",
         
     | 
| 
       2380 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2381 
     | 
    
         
            -
                                    {
         
     | 
| 
       2382 
     | 
    
         
            -
                                        "target": "DBSnapshotIdentifier",
         
     | 
| 
       2383 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2384 
     | 
    
         
            -
                                        "name": "SnapshotId"
         
     | 
| 
       2385 
     | 
    
         
            -
                                    }
         
     | 
| 
       2386 
     | 
    
         
            -
                                ]
         
     | 
| 
       2387 
     | 
    
         
            -
                            },
         
     | 
| 
       2388 
     | 
    
         
            -
                            "path": "DBSnapshots[0]"
         
     | 
| 
       2389 
     | 
    
         
            -
                        },
         
     | 
| 
       2390 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2391 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       2392 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2393 
     | 
    
         
            -
                                    "operation": "CreateDBSnapshot",
         
     | 
| 
       2394 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2395 
     | 
    
         
            -
                                        {
         
     | 
| 
       2396 
     | 
    
         
            -
                                            "target": "DBInstanceIdentifier",
         
     | 
| 
       2397 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2398 
     | 
    
         
            -
                                            "name": "InstanceId"
         
     | 
| 
       2399 
     | 
    
         
            -
                                        },
         
     | 
| 
       2400 
     | 
    
         
            -
                                        {
         
     | 
| 
       2401 
     | 
    
         
            -
                                            "target": "DBSnapshotIdentifier",
         
     | 
| 
       2402 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2403 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2404 
     | 
    
         
            -
                                        }
         
     | 
| 
       2405 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2406 
     | 
    
         
            -
                                },
         
     | 
| 
       2407 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2408 
     | 
    
         
            -
                                    "type": "DBSnapshot",
         
     | 
| 
       2409 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2410 
     | 
    
         
            -
                                        {
         
     | 
| 
       2411 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       2412 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2413 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBInstanceIdentifier"
         
     | 
| 
       2414 
     | 
    
         
            -
                                        },
         
     | 
| 
       2415 
     | 
    
         
            -
                                        {
         
     | 
| 
       2416 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       2417 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2418 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBSnapshotIdentifier"
         
     | 
| 
       2419 
     | 
    
         
            -
                                        }
         
     | 
| 
       2420 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2421 
     | 
    
         
            -
                                    "path": "DBSnapshot"
         
     | 
| 
       2422 
     | 
    
         
            -
                                }
         
     | 
| 
       2423 
     | 
    
         
            -
                            },
         
     | 
| 
       2424 
     | 
    
         
            -
                            "Copy": {
         
     | 
| 
       2425 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2426 
     | 
    
         
            -
                                    "operation": "CopyDBSnapshot",
         
     | 
| 
       2427 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2428 
     | 
    
         
            -
                                        {
         
     | 
| 
       2429 
     | 
    
         
            -
                                            "target": "SourceDBSnapshotIdentifier",
         
     | 
| 
       2430 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2431 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2432 
     | 
    
         
            -
                                        }
         
     | 
| 
       2433 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2434 
     | 
    
         
            -
                                },
         
     | 
| 
       2435 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2436 
     | 
    
         
            -
                                    "type": "DBSnapshot",
         
     | 
| 
       2437 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2438 
     | 
    
         
            -
                                        {
         
     | 
| 
       2439 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       2440 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2441 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBInstanceIdentifier"
         
     | 
| 
       2442 
     | 
    
         
            -
                                        },
         
     | 
| 
       2443 
     | 
    
         
            -
                                        {
         
     | 
| 
       2444 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       2445 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2446 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBSnapshotIdentifier"
         
     | 
| 
       2447 
     | 
    
         
            -
                                        }
         
     | 
| 
       2448 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2449 
     | 
    
         
            -
                                    "path": "DBSnapshot"
         
     | 
| 
       2450 
     | 
    
         
            -
                                }
         
     | 
| 
       2451 
     | 
    
         
            -
                            },
         
     | 
| 
       2452 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       2453 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2454 
     | 
    
         
            -
                                    "operation": "DeleteDBSnapshot",
         
     | 
| 
       2455 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2456 
     | 
    
         
            -
                                        {
         
     | 
| 
       2457 
     | 
    
         
            -
                                            "target": "DBSnapshotIdentifier",
         
     | 
| 
       2458 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2459 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2460 
     | 
    
         
            -
                                        }
         
     | 
| 
       2461 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2462 
     | 
    
         
            -
                                },
         
     | 
| 
       2463 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2464 
     | 
    
         
            -
                                    "type": "DBSnapshot",
         
     | 
| 
       2465 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2466 
     | 
    
         
            -
                                        {
         
     | 
| 
       2467 
     | 
    
         
            -
                                            "target": "InstanceId",
         
     | 
| 
       2468 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2469 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBInstanceIdentifier"
         
     | 
| 
       2470 
     | 
    
         
            -
                                        },
         
     | 
| 
       2471 
     | 
    
         
            -
                                        {
         
     | 
| 
       2472 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       2473 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2474 
     | 
    
         
            -
                                            "path": "DBSnapshot.DBSnapshotIdentifier"
         
     | 
| 
       2475 
     | 
    
         
            -
                                        }
         
     | 
| 
       2476 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2477 
     | 
    
         
            -
                                    "path": "DBSnapshot"
         
     | 
| 
       2478 
     | 
    
         
            -
                                }
         
     | 
| 
       2479 
     | 
    
         
            -
                            },
         
     | 
| 
       2480 
     | 
    
         
            -
                            "Restore": {
         
     | 
| 
       2481 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2482 
     | 
    
         
            -
                                    "operation": "RestoreDBInstanceFromDBSnapshot",
         
     | 
| 
       2483 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2484 
     | 
    
         
            -
                                        {
         
     | 
| 
       2485 
     | 
    
         
            -
                                            "target": "DBSnapshotIdentifier",
         
     | 
| 
       2486 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2487 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2488 
     | 
    
         
            -
                                        }
         
     | 
| 
       2489 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2490 
     | 
    
         
            -
                                },
         
     | 
| 
       2491 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2492 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       2493 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2494 
     | 
    
         
            -
                                        {
         
     | 
| 
       2495 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       2496 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2497 
     | 
    
         
            -
                                            "path": "DBInstance.DBInstanceIdentifier"
         
     | 
| 
       2498 
     | 
    
         
            -
                                        }
         
     | 
| 
       2499 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2500 
     | 
    
         
            -
                                    "path": "DBInstance"
         
     | 
| 
       2501 
     | 
    
         
            -
                                }
         
     | 
| 
       2502 
     | 
    
         
            -
                            },
         
     | 
| 
       2503 
     | 
    
         
            -
                            "SubscribeTo": {
         
     | 
| 
       2504 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2505 
     | 
    
         
            -
                                    "operation": "AddSourceIdentifierToSubscription",
         
     | 
| 
       2506 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2507 
     | 
    
         
            -
                                        {
         
     | 
| 
       2508 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2509 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2510 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2511 
     | 
    
         
            -
                                        }
         
     | 
| 
       2512 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2513 
     | 
    
         
            -
                                },
         
     | 
| 
       2514 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2515 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2516 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2517 
     | 
    
         
            -
                                        {
         
     | 
| 
       2518 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2519 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2520 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2521 
     | 
    
         
            -
                                        }
         
     | 
| 
       2522 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2523 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2524 
     | 
    
         
            -
                                }
         
     | 
| 
       2525 
     | 
    
         
            -
                            },
         
     | 
| 
       2526 
     | 
    
         
            -
                            "UnsubscribeFrom": {
         
     | 
| 
       2527 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2528 
     | 
    
         
            -
                                    "operation": "RemoveSourceIdentifierFromSubscription",
         
     | 
| 
       2529 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2530 
     | 
    
         
            -
                                        {
         
     | 
| 
       2531 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2532 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2533 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2534 
     | 
    
         
            -
                                        }
         
     | 
| 
       2535 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2536 
     | 
    
         
            -
                                },
         
     | 
| 
       2537 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2538 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2539 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2540 
     | 
    
         
            -
                                        {
         
     | 
| 
       2541 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2542 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2543 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2544 
     | 
    
         
            -
                                        }
         
     | 
| 
       2545 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2546 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2547 
     | 
    
         
            -
                                }
         
     | 
| 
       2548 
     | 
    
         
            -
                            }
         
     | 
| 
       2549 
     | 
    
         
            -
                        },
         
     | 
| 
       2550 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       2551 
     | 
    
         
            -
                            "Instance": {
         
     | 
| 
       2552 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2553 
     | 
    
         
            -
                                    "type": "DBInstance",
         
     | 
| 
       2554 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2555 
     | 
    
         
            -
                                        {
         
     | 
| 
       2556 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       2557 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2558 
     | 
    
         
            -
                                            "name": "InstanceId"
         
     | 
| 
       2559 
     | 
    
         
            -
                                        }
         
     | 
| 
       2560 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2561 
     | 
    
         
            -
                                }
         
     | 
| 
       2562 
     | 
    
         
            -
                            },
         
     | 
| 
       2563 
     | 
    
         
            -
                            "OptionGroup": {
         
     | 
| 
       2564 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2565 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       2566 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2567 
     | 
    
         
            -
                                        {
         
     | 
| 
       2568 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2569 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       2570 
     | 
    
         
            -
                                            "path": "DBSnapshot.OptionGroupName"
         
     | 
| 
       2571 
     | 
    
         
            -
                                        }
         
     | 
| 
       2572 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2573 
     | 
    
         
            -
                                }
         
     | 
| 
       2574 
     | 
    
         
            -
                            }
         
     | 
| 
       2575 
     | 
    
         
            -
                        },
         
     | 
| 
       2576 
     | 
    
         
            -
                        "hasMany": {
         
     | 
| 
       2577 
     | 
    
         
            -
                            "Attributes": {
         
     | 
| 
       2578 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2579 
     | 
    
         
            -
                                    "operation": "DescribeDBSnapshotAttributes",
         
     | 
| 
       2580 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2581 
     | 
    
         
            -
                                        {
         
     | 
| 
       2582 
     | 
    
         
            -
                                            "target": "DBSnapshotIdentifier",
         
     | 
| 
       2583 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2584 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2585 
     | 
    
         
            -
                                        }
         
     | 
| 
       2586 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2587 
     | 
    
         
            -
                                },
         
     | 
| 
       2588 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2589 
     | 
    
         
            -
                                    "type": "DBSnapshotAttribute",
         
     | 
| 
       2590 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2591 
     | 
    
         
            -
                                        {
         
     | 
| 
       2592 
     | 
    
         
            -
                                            "target": "SnapshotId",
         
     | 
| 
       2593 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2594 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2595 
     | 
    
         
            -
                                        },
         
     | 
| 
       2596 
     | 
    
         
            -
                                        {
         
     | 
| 
       2597 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2598 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2599 
     | 
    
         
            -
                                            "path": "DBSnapshotAttributesResult.DBSnapshotAttributes[].AttributeName"
         
     | 
| 
       2600 
     | 
    
         
            -
                                        }
         
     | 
| 
       2601 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2602 
     | 
    
         
            -
                                    "path": "DBSnapshotAttributesResult.DBSnapshotAttributes[]"
         
     | 
| 
       2603 
     | 
    
         
            -
                                }
         
     | 
| 
       2604 
     | 
    
         
            -
                            },
         
     | 
| 
       2605 
     | 
    
         
            -
                            "Events": {
         
     | 
| 
       2606 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2607 
     | 
    
         
            -
                                    "operation": "DescribeEvents",
         
     | 
| 
       2608 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2609 
     | 
    
         
            -
                                        {
         
     | 
| 
       2610 
     | 
    
         
            -
                                            "target": "SourceType",
         
     | 
| 
       2611 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       2612 
     | 
    
         
            -
                                            "value": "db-snapshot"
         
     | 
| 
       2613 
     | 
    
         
            -
                                        },
         
     | 
| 
       2614 
     | 
    
         
            -
                                        {
         
     | 
| 
       2615 
     | 
    
         
            -
                                            "target": "SourceIdentifier",
         
     | 
| 
       2616 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2617 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2618 
     | 
    
         
            -
                                        }
         
     | 
| 
       2619 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2620 
     | 
    
         
            -
                                },
         
     | 
| 
       2621 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2622 
     | 
    
         
            -
                                    "type": "Event",
         
     | 
| 
       2623 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2624 
     | 
    
         
            -
                                        {
         
     | 
| 
       2625 
     | 
    
         
            -
                                            "target": "SourceId",
         
     | 
| 
       2626 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2627 
     | 
    
         
            -
                                            "path": "Events[].SourceIdentifier"
         
     | 
| 
       2628 
     | 
    
         
            -
                                        },
         
     | 
| 
       2629 
     | 
    
         
            -
                                        {
         
     | 
| 
       2630 
     | 
    
         
            -
                                            "target": "Date",
         
     | 
| 
       2631 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2632 
     | 
    
         
            -
                                            "path": "Events[].Date"
         
     | 
| 
       2633 
     | 
    
         
            -
                                        }
         
     | 
| 
       2634 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2635 
     | 
    
         
            -
                                    "path": "Events[]"
         
     | 
| 
       2636 
     | 
    
         
            -
                                }
         
     | 
| 
       2637 
     | 
    
         
            -
                            }
         
     | 
| 
       2638 
     | 
    
         
            -
                        }
         
     | 
| 
       2639 
     | 
    
         
            -
                    },
         
     | 
| 
       2640 
     | 
    
         
            -
                    "DBSnapshotAttribute": {
         
     | 
| 
       2641 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2642 
     | 
    
         
            -
                            { "name": "SnapshotId" },
         
     | 
| 
       2643 
     | 
    
         
            -
                            {
         
     | 
| 
       2644 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       2645 
     | 
    
         
            -
                                "memberName": "AttributeName"
         
     | 
| 
       2646 
     | 
    
         
            -
                            }
         
     | 
| 
       2647 
     | 
    
         
            -
                        ],
         
     | 
| 
       2648 
     | 
    
         
            -
                        "shape": "DBSnapshotAttribute",
         
     | 
| 
       2649 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2650 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       2651 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2652 
     | 
    
         
            -
                                    "operation": "ModifyDBSnapshotAttribute",
         
     | 
| 
       2653 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2654 
     | 
    
         
            -
                                        {
         
     | 
| 
       2655 
     | 
    
         
            -
                                            "target": "AttributeName",
         
     | 
| 
       2656 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2657 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2658 
     | 
    
         
            -
                                        },
         
     | 
| 
       2659 
     | 
    
         
            -
                                        {
         
     | 
| 
       2660 
     | 
    
         
            -
                                            "target": "DBSnapshotIdentifier",
         
     | 
| 
       2661 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2662 
     | 
    
         
            -
                                            "name": "SnapshotId"
         
     | 
| 
       2663 
     | 
    
         
            -
                                        }
         
     | 
| 
       2664 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2665 
     | 
    
         
            -
                                }
         
     | 
| 
       2666 
     | 
    
         
            -
                            }
         
     | 
| 
       2667 
     | 
    
         
            -
                        }
         
     | 
| 
       2668 
     | 
    
         
            -
                    },
         
     | 
| 
       2669 
     | 
    
         
            -
                    "DBSubnetGroup": {
         
     | 
| 
       2670 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2671 
     | 
    
         
            -
                            {
         
     | 
| 
       2672 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       2673 
     | 
    
         
            -
                                "memberName": "DBSubnetGroupName"
         
     | 
| 
       2674 
     | 
    
         
            -
                            }
         
     | 
| 
       2675 
     | 
    
         
            -
                        ],
         
     | 
| 
       2676 
     | 
    
         
            -
                        "shape": "DBSubnetGroup",
         
     | 
| 
       2677 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2678 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2679 
     | 
    
         
            -
                                "operation": "DescribeDBSubnetGroups",
         
     | 
| 
       2680 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2681 
     | 
    
         
            -
                                    {
         
     | 
| 
       2682 
     | 
    
         
            -
                                        "target": "DBSubnetGroupName",
         
     | 
| 
       2683 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2684 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       2685 
     | 
    
         
            -
                                    }
         
     | 
| 
       2686 
     | 
    
         
            -
                                ]
         
     | 
| 
       2687 
     | 
    
         
            -
                            },
         
     | 
| 
       2688 
     | 
    
         
            -
                            "path": "DBSubnetGroups[0]"
         
     | 
| 
       2689 
     | 
    
         
            -
                        },
         
     | 
| 
       2690 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2691 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       2692 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2693 
     | 
    
         
            -
                                    "operation": "CreateDBSubnetGroup",
         
     | 
| 
       2694 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2695 
     | 
    
         
            -
                                        {
         
     | 
| 
       2696 
     | 
    
         
            -
                                            "target": "DBSubnetGroupName",
         
     | 
| 
       2697 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2698 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2699 
     | 
    
         
            -
                                        }
         
     | 
| 
       2700 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2701 
     | 
    
         
            -
                                },
         
     | 
| 
       2702 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2703 
     | 
    
         
            -
                                    "type": "DBSubnetGroup",
         
     | 
| 
       2704 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2705 
     | 
    
         
            -
                                        {
         
     | 
| 
       2706 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2707 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2708 
     | 
    
         
            -
                                            "path": "DBSubnetGroup.DBSubnetGroupName"
         
     | 
| 
       2709 
     | 
    
         
            -
                                        }
         
     | 
| 
       2710 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2711 
     | 
    
         
            -
                                    "path": "DBSubnetGroup"
         
     | 
| 
       2712 
     | 
    
         
            -
                                }
         
     | 
| 
       2713 
     | 
    
         
            -
                            },
         
     | 
| 
       2714 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       2715 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2716 
     | 
    
         
            -
                                    "operation": "DeleteDBSubnetGroup",
         
     | 
| 
       2717 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2718 
     | 
    
         
            -
                                        {
         
     | 
| 
       2719 
     | 
    
         
            -
                                            "target": "DBSubnetGroupName",
         
     | 
| 
       2720 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2721 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2722 
     | 
    
         
            -
                                        }
         
     | 
| 
       2723 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2724 
     | 
    
         
            -
                                }
         
     | 
| 
       2725 
     | 
    
         
            -
                            },
         
     | 
| 
       2726 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       2727 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2728 
     | 
    
         
            -
                                    "operation": "ModifyDBSubnetGroup",
         
     | 
| 
       2729 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2730 
     | 
    
         
            -
                                        {
         
     | 
| 
       2731 
     | 
    
         
            -
                                            "target": "DBSubnetGroupName",
         
     | 
| 
       2732 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2733 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2734 
     | 
    
         
            -
                                        }
         
     | 
| 
       2735 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2736 
     | 
    
         
            -
                                },
         
     | 
| 
       2737 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2738 
     | 
    
         
            -
                                    "type": "DBSubnetGroup",
         
     | 
| 
       2739 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2740 
     | 
    
         
            -
                                        {
         
     | 
| 
       2741 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2742 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2743 
     | 
    
         
            -
                                            "path": "DBSubnetGroup.DBSubnetGroupName"
         
     | 
| 
       2744 
     | 
    
         
            -
                                        }
         
     | 
| 
       2745 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2746 
     | 
    
         
            -
                                    "path": "DBSubnetGroup"
         
     | 
| 
       2747 
     | 
    
         
            -
                                }
         
     | 
| 
       2748 
     | 
    
         
            -
                            }
         
     | 
| 
       2749 
     | 
    
         
            -
                        }
         
     | 
| 
       2750 
     | 
    
         
            -
                    },
         
     | 
| 
       2751 
     | 
    
         
            -
                    "EventCategoryMap": {
         
     | 
| 
       2752 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2753 
     | 
    
         
            -
                            {
         
     | 
| 
       2754 
     | 
    
         
            -
                                "name": "SourceType",
         
     | 
| 
       2755 
     | 
    
         
            -
                                "memberName": "SourceType"
         
     | 
| 
       2756 
     | 
    
         
            -
                            }
         
     | 
| 
       2757 
     | 
    
         
            -
                        ],
         
     | 
| 
       2758 
     | 
    
         
            -
                        "shape": "EventCategoriesMap",
         
     | 
| 
       2759 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2760 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2761 
     | 
    
         
            -
                                "operation": "DescribeEventCategories",
         
     | 
| 
       2762 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2763 
     | 
    
         
            -
                                    {
         
     | 
| 
       2764 
     | 
    
         
            -
                                        "target": "SourceType",
         
     | 
| 
       2765 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2766 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       2767 
     | 
    
         
            -
                                    }
         
     | 
| 
       2768 
     | 
    
         
            -
                                ]
         
     | 
| 
       2769 
     | 
    
         
            -
                            },
         
     | 
| 
       2770 
     | 
    
         
            -
                            "path": "EventCategoriesMapList[0]"
         
     | 
| 
       2771 
     | 
    
         
            -
                        }
         
     | 
| 
       2772 
     | 
    
         
            -
                    },
         
     | 
| 
       2773 
     | 
    
         
            -
                    "Event": {
         
     | 
| 
       2774 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2775 
     | 
    
         
            -
                            {
         
     | 
| 
       2776 
     | 
    
         
            -
                                "name": "SourceId",
         
     | 
| 
       2777 
     | 
    
         
            -
                                "memberName": "SourceIdentifier"
         
     | 
| 
       2778 
     | 
    
         
            -
                            },
         
     | 
| 
       2779 
     | 
    
         
            -
                            {
         
     | 
| 
       2780 
     | 
    
         
            -
                                "name": "Date",
         
     | 
| 
       2781 
     | 
    
         
            -
                                "memberName": "Date"
         
     | 
| 
       2782 
     | 
    
         
            -
                            }
         
     | 
| 
       2783 
     | 
    
         
            -
                        ],
         
     | 
| 
       2784 
     | 
    
         
            -
                        "shape": "Event"
         
     | 
| 
       2785 
     | 
    
         
            -
                    },
         
     | 
| 
       2786 
     | 
    
         
            -
                    "EventSubscription": {
         
     | 
| 
       2787 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2788 
     | 
    
         
            -
                            {
         
     | 
| 
       2789 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       2790 
     | 
    
         
            -
                                "memberName": "CustSubscriptionId"
         
     | 
| 
       2791 
     | 
    
         
            -
                            }
         
     | 
| 
       2792 
     | 
    
         
            -
                        ],
         
     | 
| 
       2793 
     | 
    
         
            -
                        "shape": "EventSubscription",
         
     | 
| 
       2794 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2795 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2796 
     | 
    
         
            -
                                "operation": "DescribeEventSubscriptions",
         
     | 
| 
       2797 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2798 
     | 
    
         
            -
                                    {
         
     | 
| 
       2799 
     | 
    
         
            -
                                        "target": "SubscriptionName",
         
     | 
| 
       2800 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2801 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       2802 
     | 
    
         
            -
                                    }
         
     | 
| 
       2803 
     | 
    
         
            -
                                ]
         
     | 
| 
       2804 
     | 
    
         
            -
                            },
         
     | 
| 
       2805 
     | 
    
         
            -
                            "path": "EventSubscriptionsList[0]"
         
     | 
| 
       2806 
     | 
    
         
            -
                        },
         
     | 
| 
       2807 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2808 
     | 
    
         
            -
                            "AddSubscriber": {
         
     | 
| 
       2809 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2810 
     | 
    
         
            -
                                    "operation": "AddSourceIdentifierToSubscription",
         
     | 
| 
       2811 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2812 
     | 
    
         
            -
                                        {
         
     | 
| 
       2813 
     | 
    
         
            -
                                            "target": "SubscriptionName",
         
     | 
| 
       2814 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2815 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2816 
     | 
    
         
            -
                                        }
         
     | 
| 
       2817 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2818 
     | 
    
         
            -
                                },
         
     | 
| 
       2819 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2820 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2821 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2822 
     | 
    
         
            -
                                        {
         
     | 
| 
       2823 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2824 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2825 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2826 
     | 
    
         
            -
                                        }
         
     | 
| 
       2827 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2828 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2829 
     | 
    
         
            -
                                }
         
     | 
| 
       2830 
     | 
    
         
            -
                            },
         
     | 
| 
       2831 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       2832 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2833 
     | 
    
         
            -
                                    "operation": "CreateEventSubscription",
         
     | 
| 
       2834 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2835 
     | 
    
         
            -
                                        {
         
     | 
| 
       2836 
     | 
    
         
            -
                                            "target": "SubscriptionName",
         
     | 
| 
       2837 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2838 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2839 
     | 
    
         
            -
                                        }
         
     | 
| 
       2840 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2841 
     | 
    
         
            -
                                },
         
     | 
| 
       2842 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2843 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2844 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2845 
     | 
    
         
            -
                                        {
         
     | 
| 
       2846 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2847 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2848 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2849 
     | 
    
         
            -
                                        }
         
     | 
| 
       2850 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2851 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2852 
     | 
    
         
            -
                                }
         
     | 
| 
       2853 
     | 
    
         
            -
                            },
         
     | 
| 
       2854 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       2855 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2856 
     | 
    
         
            -
                                    "operation": "DeleteEventSubscription",
         
     | 
| 
       2857 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2858 
     | 
    
         
            -
                                        {
         
     | 
| 
       2859 
     | 
    
         
            -
                                            "target": "SubscriptionName",
         
     | 
| 
       2860 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2861 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2862 
     | 
    
         
            -
                                        }
         
     | 
| 
       2863 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2864 
     | 
    
         
            -
                                },
         
     | 
| 
       2865 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2866 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2867 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2868 
     | 
    
         
            -
                                        {
         
     | 
| 
       2869 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2870 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2871 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2872 
     | 
    
         
            -
                                        }
         
     | 
| 
       2873 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2874 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2875 
     | 
    
         
            -
                                }
         
     | 
| 
       2876 
     | 
    
         
            -
                            },
         
     | 
| 
       2877 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       2878 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2879 
     | 
    
         
            -
                                    "operation": "ModifyEventSubscription",
         
     | 
| 
       2880 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2881 
     | 
    
         
            -
                                        {
         
     | 
| 
       2882 
     | 
    
         
            -
                                            "target": "SubscriptionName",
         
     | 
| 
       2883 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2884 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2885 
     | 
    
         
            -
                                        }
         
     | 
| 
       2886 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2887 
     | 
    
         
            -
                                },
         
     | 
| 
       2888 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2889 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2890 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2891 
     | 
    
         
            -
                                        {
         
     | 
| 
       2892 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2893 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2894 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2895 
     | 
    
         
            -
                                        }
         
     | 
| 
       2896 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2897 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2898 
     | 
    
         
            -
                                }
         
     | 
| 
       2899 
     | 
    
         
            -
                            },
         
     | 
| 
       2900 
     | 
    
         
            -
                            "RemoveSubscriber": {
         
     | 
| 
       2901 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2902 
     | 
    
         
            -
                                    "operation": "RemoveSourceIdentifierFromSubscription",
         
     | 
| 
       2903 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2904 
     | 
    
         
            -
                                        {
         
     | 
| 
       2905 
     | 
    
         
            -
                                            "target": "SubscriptionName",
         
     | 
| 
       2906 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2907 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2908 
     | 
    
         
            -
                                        }
         
     | 
| 
       2909 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2910 
     | 
    
         
            -
                                },
         
     | 
| 
       2911 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2912 
     | 
    
         
            -
                                    "type": "EventSubscription",
         
     | 
| 
       2913 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2914 
     | 
    
         
            -
                                        {
         
     | 
| 
       2915 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2916 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2917 
     | 
    
         
            -
                                            "path": "EventSubscription.CustSubscriptionId"
         
     | 
| 
       2918 
     | 
    
         
            -
                                        }
         
     | 
| 
       2919 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2920 
     | 
    
         
            -
                                    "path": "EventSubscription"
         
     | 
| 
       2921 
     | 
    
         
            -
                                }
         
     | 
| 
       2922 
     | 
    
         
            -
                            }
         
     | 
| 
       2923 
     | 
    
         
            -
                        }
         
     | 
| 
       2924 
     | 
    
         
            -
                    },
         
     | 
| 
       2925 
     | 
    
         
            -
                    "OptionGroup": {
         
     | 
| 
       2926 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       2927 
     | 
    
         
            -
                            {
         
     | 
| 
       2928 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       2929 
     | 
    
         
            -
                                "memberName": "OptionGroupName"
         
     | 
| 
       2930 
     | 
    
         
            -
                            }
         
     | 
| 
       2931 
     | 
    
         
            -
                        ],
         
     | 
| 
       2932 
     | 
    
         
            -
                        "shape": "OptionGroup",
         
     | 
| 
       2933 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       2934 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       2935 
     | 
    
         
            -
                                "operation": "DescribeOptionGroups",
         
     | 
| 
       2936 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       2937 
     | 
    
         
            -
                                    {
         
     | 
| 
       2938 
     | 
    
         
            -
                                        "target": "OptionGroupName",
         
     | 
| 
       2939 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       2940 
     | 
    
         
            -
                                        "name": "Name"
         
     | 
| 
       2941 
     | 
    
         
            -
                                    }
         
     | 
| 
       2942 
     | 
    
         
            -
                                ]
         
     | 
| 
       2943 
     | 
    
         
            -
                            },
         
     | 
| 
       2944 
     | 
    
         
            -
                            "path": "OptionGroupsList[0]"
         
     | 
| 
       2945 
     | 
    
         
            -
                        },
         
     | 
| 
       2946 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       2947 
     | 
    
         
            -
                            "Create": {
         
     | 
| 
       2948 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2949 
     | 
    
         
            -
                                    "operation": "CreateOptionGroup",
         
     | 
| 
       2950 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2951 
     | 
    
         
            -
                                        {
         
     | 
| 
       2952 
     | 
    
         
            -
                                            "target": "OptionGroupName",
         
     | 
| 
       2953 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2954 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2955 
     | 
    
         
            -
                                        }
         
     | 
| 
       2956 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2957 
     | 
    
         
            -
                                },
         
     | 
| 
       2958 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2959 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       2960 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2961 
     | 
    
         
            -
                                        {
         
     | 
| 
       2962 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2963 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2964 
     | 
    
         
            -
                                            "path": "OptionGroup.OptionGroupName"
         
     | 
| 
       2965 
     | 
    
         
            -
                                        }
         
     | 
| 
       2966 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2967 
     | 
    
         
            -
                                    "path": "OptionGroup"
         
     | 
| 
       2968 
     | 
    
         
            -
                                }
         
     | 
| 
       2969 
     | 
    
         
            -
                            },
         
     | 
| 
       2970 
     | 
    
         
            -
                            "Copy": {
         
     | 
| 
       2971 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2972 
     | 
    
         
            -
                                    "operation": "CopyOptionGroup",
         
     | 
| 
       2973 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2974 
     | 
    
         
            -
                                        {
         
     | 
| 
       2975 
     | 
    
         
            -
                                            "target": "SourceOptionGroupIdentifier",
         
     | 
| 
       2976 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       2977 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       2978 
     | 
    
         
            -
                                        }
         
     | 
| 
       2979 
     | 
    
         
            -
                                    ]
         
     | 
| 
       2980 
     | 
    
         
            -
                                },
         
     | 
| 
       2981 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       2982 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       2983 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       2984 
     | 
    
         
            -
                                        {
         
     | 
| 
       2985 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       2986 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       2987 
     | 
    
         
            -
                                            "path": "OptionGroup.OptionGroupName"
         
     | 
| 
       2988 
     | 
    
         
            -
                                        }
         
     | 
| 
       2989 
     | 
    
         
            -
                                    ],
         
     | 
| 
       2990 
     | 
    
         
            -
                                    "path": "OptionGroup"
         
     | 
| 
       2991 
     | 
    
         
            -
                                }
         
     | 
| 
       2992 
     | 
    
         
            -
                            },
         
     | 
| 
       2993 
     | 
    
         
            -
                            "Delete": {
         
     | 
| 
       2994 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       2995 
     | 
    
         
            -
                                    "operation": "DeleteOptionGroup",
         
     | 
| 
       2996 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       2997 
     | 
    
         
            -
                                        {
         
     | 
| 
       2998 
     | 
    
         
            -
                                            "target": "OptionGroupName",
         
     | 
| 
       2999 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3000 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       3001 
     | 
    
         
            -
                                        }
         
     | 
| 
       3002 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3003 
     | 
    
         
            -
                                }
         
     | 
| 
       3004 
     | 
    
         
            -
                            },
         
     | 
| 
       3005 
     | 
    
         
            -
                            "Modify": {
         
     | 
| 
       3006 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       3007 
     | 
    
         
            -
                                    "operation": "ModifyOptionGroup",
         
     | 
| 
       3008 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       3009 
     | 
    
         
            -
                                        {
         
     | 
| 
       3010 
     | 
    
         
            -
                                            "target": "OptionGroupName",
         
     | 
| 
       3011 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3012 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       3013 
     | 
    
         
            -
                                        }
         
     | 
| 
       3014 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3015 
     | 
    
         
            -
                                },
         
     | 
| 
       3016 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3017 
     | 
    
         
            -
                                    "type": "OptionGroup",
         
     | 
| 
       3018 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3019 
     | 
    
         
            -
                                        {
         
     | 
| 
       3020 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       3021 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       3022 
     | 
    
         
            -
                                            "path": "OptionGroup.OptionGroupName"
         
     | 
| 
       3023 
     | 
    
         
            -
                                        }
         
     | 
| 
       3024 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3025 
     | 
    
         
            -
                                    "path": "OptionGroup"
         
     | 
| 
       3026 
     | 
    
         
            -
                                }
         
     | 
| 
       3027 
     | 
    
         
            -
                            }
         
     | 
| 
       3028 
     | 
    
         
            -
                        }
         
     | 
| 
       3029 
     | 
    
         
            -
                    },
         
     | 
| 
       3030 
     | 
    
         
            -
                    "OptionGroupOption": {
         
     | 
| 
       3031 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3032 
     | 
    
         
            -
                            {
         
     | 
| 
       3033 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       3034 
     | 
    
         
            -
                                "memberName": "Name"
         
     | 
| 
       3035 
     | 
    
         
            -
                            }
         
     | 
| 
       3036 
     | 
    
         
            -
                        ],
         
     | 
| 
       3037 
     | 
    
         
            -
                        "shape": "OptionGroupOption"
         
     | 
| 
       3038 
     | 
    
         
            -
                    },
         
     | 
| 
       3039 
     | 
    
         
            -
                    "Parameter": {
         
     | 
| 
       3040 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3041 
     | 
    
         
            -
                            {
         
     | 
| 
       3042 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       3043 
     | 
    
         
            -
                                "memberName": "ParameterName"
         
     | 
| 
       3044 
     | 
    
         
            -
                            }
         
     | 
| 
       3045 
     | 
    
         
            -
                        ],
         
     | 
| 
       3046 
     | 
    
         
            -
                        "shape": "Parameter"
         
     | 
| 
       3047 
     | 
    
         
            -
                    },
         
     | 
| 
       3048 
     | 
    
         
            -
                    "PendingMaintenanceAction": {
         
     | 
| 
       3049 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3050 
     | 
    
         
            -
                            {"name": "TargetARN"},
         
     | 
| 
       3051 
     | 
    
         
            -
                            {
         
     | 
| 
       3052 
     | 
    
         
            -
                                "name": "Name",
         
     | 
| 
       3053 
     | 
    
         
            -
                                "memberName": "Action"
         
     | 
| 
       3054 
     | 
    
         
            -
                            }
         
     | 
| 
       3055 
     | 
    
         
            -
                        ],
         
     | 
| 
       3056 
     | 
    
         
            -
                        "shape": "PendingMaintenanceAction",
         
     | 
| 
       3057 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       3058 
     | 
    
         
            -
                            "ApplyImmediately": {
         
     | 
| 
       3059 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       3060 
     | 
    
         
            -
                                    "operation": "ApplyPendingMaintenanceAction",
         
     | 
| 
       3061 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       3062 
     | 
    
         
            -
                                        {
         
     | 
| 
       3063 
     | 
    
         
            -
                                            "target": "ApplyAction",
         
     | 
| 
       3064 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3065 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       3066 
     | 
    
         
            -
                                        },
         
     | 
| 
       3067 
     | 
    
         
            -
                                        {
         
     | 
| 
       3068 
     | 
    
         
            -
                                            "target": "ResourceIdentifier",
         
     | 
| 
       3069 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3070 
     | 
    
         
            -
                                            "name": "TargetARN"
         
     | 
| 
       3071 
     | 
    
         
            -
                                        },
         
     | 
| 
       3072 
     | 
    
         
            -
                                        {
         
     | 
| 
       3073 
     | 
    
         
            -
                                            "target": "OptInType",
         
     | 
| 
       3074 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       3075 
     | 
    
         
            -
                                            "value": "immediate"
         
     | 
| 
       3076 
     | 
    
         
            -
                                        }
         
     | 
| 
       3077 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3078 
     | 
    
         
            -
                                },
         
     | 
| 
       3079 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3080 
     | 
    
         
            -
                                    "type": "ResourcePendingMaintenanceActionList",
         
     | 
| 
       3081 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3082 
     | 
    
         
            -
                                        {
         
     | 
| 
       3083 
     | 
    
         
            -
                                            "target": "ARN",
         
     | 
| 
       3084 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       3085 
     | 
    
         
            -
                                            "path": "ResourcePendingMaintenanceActions.ResourceIdentifier"
         
     | 
| 
       3086 
     | 
    
         
            -
                                        }
         
     | 
| 
       3087 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3088 
     | 
    
         
            -
                                    "path": "ResourcePendingMaintenanceActions"
         
     | 
| 
       3089 
     | 
    
         
            -
                                }
         
     | 
| 
       3090 
     | 
    
         
            -
                            },
         
     | 
| 
       3091 
     | 
    
         
            -
                            "UndoOptIn": {
         
     | 
| 
       3092 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       3093 
     | 
    
         
            -
                                    "operation": "ApplyPendingMaintenanceAction",
         
     | 
| 
       3094 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       3095 
     | 
    
         
            -
                                        {
         
     | 
| 
       3096 
     | 
    
         
            -
                                            "target": "ApplyAction",
         
     | 
| 
       3097 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3098 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       3099 
     | 
    
         
            -
                                        },
         
     | 
| 
       3100 
     | 
    
         
            -
                                        {
         
     | 
| 
       3101 
     | 
    
         
            -
                                            "target": "ResourceIdentifier",
         
     | 
| 
       3102 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3103 
     | 
    
         
            -
                                            "name": "TargetARN"
         
     | 
| 
       3104 
     | 
    
         
            -
                                        },
         
     | 
| 
       3105 
     | 
    
         
            -
                                        {
         
     | 
| 
       3106 
     | 
    
         
            -
                                            "target": "OptInType",
         
     | 
| 
       3107 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       3108 
     | 
    
         
            -
                                            "value": "undo-opt-in"
         
     | 
| 
       3109 
     | 
    
         
            -
                                        }
         
     | 
| 
       3110 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3111 
     | 
    
         
            -
                                },
         
     | 
| 
       3112 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3113 
     | 
    
         
            -
                                    "type": "ResourcePendingMaintenanceActionList",
         
     | 
| 
       3114 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3115 
     | 
    
         
            -
                                        {
         
     | 
| 
       3116 
     | 
    
         
            -
                                            "target": "ARN",
         
     | 
| 
       3117 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       3118 
     | 
    
         
            -
                                            "path": "ResourcePendingMaintenanceActions.ResourceIdentifier"
         
     | 
| 
       3119 
     | 
    
         
            -
                                        }
         
     | 
| 
       3120 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3121 
     | 
    
         
            -
                                    "path": "ResourcePendingMaintenanceActions"
         
     | 
| 
       3122 
     | 
    
         
            -
                                }
         
     | 
| 
       3123 
     | 
    
         
            -
                            },
         
     | 
| 
       3124 
     | 
    
         
            -
                            "ApplyOnNextMaintenance": {
         
     | 
| 
       3125 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       3126 
     | 
    
         
            -
                                    "operation": "ApplyPendingMaintenanceAction",
         
     | 
| 
       3127 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       3128 
     | 
    
         
            -
                                        {
         
     | 
| 
       3129 
     | 
    
         
            -
                                            "target": "ApplyAction",
         
     | 
| 
       3130 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3131 
     | 
    
         
            -
                                            "name": "Name"
         
     | 
| 
       3132 
     | 
    
         
            -
                                        },
         
     | 
| 
       3133 
     | 
    
         
            -
                                        {
         
     | 
| 
       3134 
     | 
    
         
            -
                                            "target": "ResourceIdentifier",
         
     | 
| 
       3135 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3136 
     | 
    
         
            -
                                            "name": "TargetARN"
         
     | 
| 
       3137 
     | 
    
         
            -
                                        },
         
     | 
| 
       3138 
     | 
    
         
            -
                                        {
         
     | 
| 
       3139 
     | 
    
         
            -
                                            "target": "OptInType",
         
     | 
| 
       3140 
     | 
    
         
            -
                                            "source": "string",
         
     | 
| 
       3141 
     | 
    
         
            -
                                            "value": "next-maintenance"
         
     | 
| 
       3142 
     | 
    
         
            -
                                        }
         
     | 
| 
       3143 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3144 
     | 
    
         
            -
                                },
         
     | 
| 
       3145 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3146 
     | 
    
         
            -
                                    "type": "ResourcePendingMaintenanceActionList",
         
     | 
| 
       3147 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3148 
     | 
    
         
            -
                                        {
         
     | 
| 
       3149 
     | 
    
         
            -
                                            "target": "ARN",
         
     | 
| 
       3150 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       3151 
     | 
    
         
            -
                                            "path": "ResourcePendingMaintenanceActions.ResourceIdentifier"
         
     | 
| 
       3152 
     | 
    
         
            -
                                        }
         
     | 
| 
       3153 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3154 
     | 
    
         
            -
                                    "path": "ResourcePendingMaintenanceActions"
         
     | 
| 
       3155 
     | 
    
         
            -
                                }
         
     | 
| 
       3156 
     | 
    
         
            -
                            }
         
     | 
| 
       3157 
     | 
    
         
            -
                        }
         
     | 
| 
       3158 
     | 
    
         
            -
                    },
         
     | 
| 
       3159 
     | 
    
         
            -
                    "ReservedDBInstance": {
         
     | 
| 
       3160 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3161 
     | 
    
         
            -
                            {
         
     | 
| 
       3162 
     | 
    
         
            -
                                "name": "Id",
         
     | 
| 
       3163 
     | 
    
         
            -
                                "memberName": "ReservedDBInstanceId"
         
     | 
| 
       3164 
     | 
    
         
            -
                            }
         
     | 
| 
       3165 
     | 
    
         
            -
                        ],
         
     | 
| 
       3166 
     | 
    
         
            -
                        "shape": "ReservedDBInstance",
         
     | 
| 
       3167 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       3168 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       3169 
     | 
    
         
            -
                                "operation": "DescribeReservedDBInstances",
         
     | 
| 
       3170 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       3171 
     | 
    
         
            -
                                    {
         
     | 
| 
       3172 
     | 
    
         
            -
                                        "target": "ReservedDBInstanceId",
         
     | 
| 
       3173 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       3174 
     | 
    
         
            -
                                        "name": "Id"
         
     | 
| 
       3175 
     | 
    
         
            -
                                    }
         
     | 
| 
       3176 
     | 
    
         
            -
                                ]
         
     | 
| 
       3177 
     | 
    
         
            -
                            },
         
     | 
| 
       3178 
     | 
    
         
            -
                            "path": "ReservedDBInstances[0]"
         
     | 
| 
       3179 
     | 
    
         
            -
                        },
         
     | 
| 
       3180 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       3181 
     | 
    
         
            -
                            "Offering": {
         
     | 
| 
       3182 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3183 
     | 
    
         
            -
                                    "type": "ReservedDBInstancesOffering",
         
     | 
| 
       3184 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3185 
     | 
    
         
            -
                                        {
         
     | 
| 
       3186 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       3187 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       3188 
     | 
    
         
            -
                                            "path": "ReservedDBInstancesOfferingId"
         
     | 
| 
       3189 
     | 
    
         
            -
                                        }
         
     | 
| 
       3190 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3191 
     | 
    
         
            -
                                }
         
     | 
| 
       3192 
     | 
    
         
            -
                            }
         
     | 
| 
       3193 
     | 
    
         
            -
                        }
         
     | 
| 
       3194 
     | 
    
         
            -
                    },
         
     | 
| 
       3195 
     | 
    
         
            -
                    "ReservedDBInstancesOffering": {
         
     | 
| 
       3196 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3197 
     | 
    
         
            -
                            {
         
     | 
| 
       3198 
     | 
    
         
            -
                                "name": "Id",
         
     | 
| 
       3199 
     | 
    
         
            -
                                "memberName": "ReservedDBInstancesOfferingId"
         
     | 
| 
       3200 
     | 
    
         
            -
                            }
         
     | 
| 
       3201 
     | 
    
         
            -
                        ],
         
     | 
| 
       3202 
     | 
    
         
            -
                        "shape": "ReservedDBInstancesOffering",
         
     | 
| 
       3203 
     | 
    
         
            -
                        "load": {
         
     | 
| 
       3204 
     | 
    
         
            -
                            "request": {
         
     | 
| 
       3205 
     | 
    
         
            -
                                "operation": "DescribeReservedDBInstancesOfferings",
         
     | 
| 
       3206 
     | 
    
         
            -
                                "params": [
         
     | 
| 
       3207 
     | 
    
         
            -
                                    {
         
     | 
| 
       3208 
     | 
    
         
            -
                                        "target": "ReservedDBInstancesOfferingId",
         
     | 
| 
       3209 
     | 
    
         
            -
                                        "source": "identifier",
         
     | 
| 
       3210 
     | 
    
         
            -
                                        "name": "Id"
         
     | 
| 
       3211 
     | 
    
         
            -
                                    }
         
     | 
| 
       3212 
     | 
    
         
            -
                                ]
         
     | 
| 
       3213 
     | 
    
         
            -
                            },
         
     | 
| 
       3214 
     | 
    
         
            -
                            "path": "ReservedDBInstancesOfferings[0]"
         
     | 
| 
       3215 
     | 
    
         
            -
                        },
         
     | 
| 
       3216 
     | 
    
         
            -
                        "actions": {
         
     | 
| 
       3217 
     | 
    
         
            -
                            "Purchase": {
         
     | 
| 
       3218 
     | 
    
         
            -
                                "request": {
         
     | 
| 
       3219 
     | 
    
         
            -
                                    "operation": "PurchaseReservedDBInstancesOffering",
         
     | 
| 
       3220 
     | 
    
         
            -
                                    "params": [
         
     | 
| 
       3221 
     | 
    
         
            -
                                        {
         
     | 
| 
       3222 
     | 
    
         
            -
                                            "target": "ReservedDBInstancesOfferingId",
         
     | 
| 
       3223 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3224 
     | 
    
         
            -
                                            "name": "Id"
         
     | 
| 
       3225 
     | 
    
         
            -
                                        }
         
     | 
| 
       3226 
     | 
    
         
            -
                                    ]
         
     | 
| 
       3227 
     | 
    
         
            -
                                },
         
     | 
| 
       3228 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3229 
     | 
    
         
            -
                                    "type": "ReservedDBInstance",
         
     | 
| 
       3230 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3231 
     | 
    
         
            -
                                        {
         
     | 
| 
       3232 
     | 
    
         
            -
                                            "target": "Id",
         
     | 
| 
       3233 
     | 
    
         
            -
                                            "source": "response",
         
     | 
| 
       3234 
     | 
    
         
            -
                                            "path": "ReservedDBInstance.ReservedDBInstanceId"
         
     | 
| 
       3235 
     | 
    
         
            -
                                        }
         
     | 
| 
       3236 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3237 
     | 
    
         
            -
                                    "path": "ReservedDBInstance"
         
     | 
| 
       3238 
     | 
    
         
            -
                                }
         
     | 
| 
       3239 
     | 
    
         
            -
                            }
         
     | 
| 
       3240 
     | 
    
         
            -
                        }
         
     | 
| 
       3241 
     | 
    
         
            -
                    },
         
     | 
| 
       3242 
     | 
    
         
            -
                    "ResourcePendingMaintenanceActionList": {
         
     | 
| 
       3243 
     | 
    
         
            -
                        "identifiers": [
         
     | 
| 
       3244 
     | 
    
         
            -
                            {
         
     | 
| 
       3245 
     | 
    
         
            -
                                "name": "ARN",
         
     | 
| 
       3246 
     | 
    
         
            -
                                "memberName": "ResourceIdentifier"
         
     | 
| 
       3247 
     | 
    
         
            -
                            }
         
     | 
| 
       3248 
     | 
    
         
            -
                        ],
         
     | 
| 
       3249 
     | 
    
         
            -
                        "shape": "ResourcePendingMaintenanceActions",
         
     | 
| 
       3250 
     | 
    
         
            -
                        "has": {
         
     | 
| 
       3251 
     | 
    
         
            -
                            "PendingMaintenanceActions": {
         
     | 
| 
       3252 
     | 
    
         
            -
                                "resource": {
         
     | 
| 
       3253 
     | 
    
         
            -
                                    "type": "PendingMaintenanceAction",
         
     | 
| 
       3254 
     | 
    
         
            -
                                    "identifiers": [
         
     | 
| 
       3255 
     | 
    
         
            -
                                        {
         
     | 
| 
       3256 
     | 
    
         
            -
                                            "target": "TargetARN",
         
     | 
| 
       3257 
     | 
    
         
            -
                                            "source": "identifier",
         
     | 
| 
       3258 
     | 
    
         
            -
                                            "name": "ARN"
         
     | 
| 
       3259 
     | 
    
         
            -
                                        },
         
     | 
| 
       3260 
     | 
    
         
            -
                                        {
         
     | 
| 
       3261 
     | 
    
         
            -
                                            "target": "Name",
         
     | 
| 
       3262 
     | 
    
         
            -
                                            "source": "data",
         
     | 
| 
       3263 
     | 
    
         
            -
                                            "path": "PendingMaintenanceActionDetails[].Action"
         
     | 
| 
       3264 
     | 
    
         
            -
                                        }
         
     | 
| 
       3265 
     | 
    
         
            -
                                    ],
         
     | 
| 
       3266 
     | 
    
         
            -
                                    "path": "PendingMaintenanceActionDetails[]"
         
     | 
| 
       3267 
     | 
    
         
            -
                                }
         
     | 
| 
       3268 
     | 
    
         
            -
                            }
         
     | 
| 
       3269 
     | 
    
         
            -
                        }
         
     | 
| 
       3270 
     | 
    
         
            -
                    }
         
     | 
| 
       3271 
     | 
    
         
            -
                }
         
     | 
| 
       3272 
     | 
    
         
            -
            }
         
     |