aws-sdk-core 2.11.429 → 3.88.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +89 -582
- data/lib/aws-sdk-core/arn.rb +77 -0
- data/lib/aws-sdk-core/arn_parser.rb +38 -0
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +0 -29
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
- data/lib/aws-sdk-core/errors.rb +146 -24
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +7 -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 +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +187 -15
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +2156 -0
- data/lib/aws-sdk-sts/client_api.rb +336 -0
- data/lib/aws-sdk-sts/customizations.rb +2 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
- data/lib/aws-sdk-sts/presigner.rb +67 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1504 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +246 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +6 -2
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +18 -5
- data/lib/seahorse/client/net_http/handler.rb +12 -1
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +67 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +101 -1165
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
- 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 -1128
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -872
- 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 -4129
- 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 -2374
- 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 -5384
- 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 -6379
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1391
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- 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 -1141
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
- 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 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- 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 -2285
- 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 -989
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2345
- 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 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1633
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -4653
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -59
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- 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 -3389
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
- 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 -257
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -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/codebuild/2016-10-06/api-2.json +0 -1888
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -5383
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
- 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 -194
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
- 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 -1062
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
- 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 -2664
- 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 -924
- 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 -571
- 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 -4340
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -2139
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- 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 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
- 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 -1354
- 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 -447
- 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 -2074
- 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 -687
- 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 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -3012
- 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 -3182
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
- 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 -277
- 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 -28951
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -462
- data/apis/ec2/2016-11-15/resources-1.json +0 -2688
- 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 -1615
- 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 -3130
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -46
- 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 -1432
- 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 -174
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
- 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 -2346
- 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 -2241
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1584
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1445
- 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 -829
- 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 -1418
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
- data/apis/fsx/2018-03-01/api-2.json +0 -1340
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -19
- data/apis/gamelift/2015-10-01/api-2.json +0 -3695
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
- 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 -6302
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5124
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3508
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
- data/apis/health/2016-08-04/api-2.json +0 -836
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -52
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5787
- 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/imagebuilder/2019-12-02/api-2.json +0 -2387
- 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 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -11061
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
- 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 -1144
- 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 -388
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -2113
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kendra/2019-02-03/api-2.json +0 -1738
- 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 -418
- 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 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
- 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 -954
- 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 -2151
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2937
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- 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 -2363
- 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 -5017
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
- 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 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -10694
- data/apis/medialive/2017-10-14/paginators-1.json +0 -52
- data/apis/medialive/2017-10-14/waiters-2.json +0 -217
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
- 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 -737
- 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 -544
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
- 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 -207
- 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 -1867
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2577
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/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 -947
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2401
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/outposts/2019-12-03/api-2.json +0 -367
- 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 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
- 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 -1863
- 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 -11495
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -5482
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
- data/apis/ram/2018-01-04/api-2.json +0 -1272
- 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 -7445
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -158
- 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/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -5263
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -106
- 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 -2659
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
- 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 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -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 -2160
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
- 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 -165
- 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 -6653
- 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 -1377
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -14
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
- 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 -9105
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -749
- 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 -2700
- 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 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2333
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/sesv2/2019-09-27/api-2.json +0 -2433
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -955
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -9210
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/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 -1476
- 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 -3259
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -598
- 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/textract/2018-06-27/api-2.json +0 -653
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
- 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 -740
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
- data/apis/transfer/2018-11-05/api-2.json +0 -964
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -658
- 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 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/wafv2/2019-07-29/api-2.json +0 -2418
- 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 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -2029
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5835
- 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/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/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/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -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/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 -6
- 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_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/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/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 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/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/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/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/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_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/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/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 -6
- data/lib/aws-sdk-core/sso.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/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/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 -881
@@ -1,4340 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2014-11-12",
|
5
|
-
"endpointPrefix":"config",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceAbbreviation":"Config Service",
|
9
|
-
"serviceFullName":"AWS Config",
|
10
|
-
"serviceId":"Config Service",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"targetPrefix":"StarlingDoveService",
|
13
|
-
"uid":"config-2014-11-12"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"BatchGetAggregateResourceConfig":{
|
17
|
-
"name":"BatchGetAggregateResourceConfig",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/"
|
21
|
-
},
|
22
|
-
"input":{"shape":"BatchGetAggregateResourceConfigRequest"},
|
23
|
-
"output":{"shape":"BatchGetAggregateResourceConfigResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"ValidationException"},
|
26
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
27
|
-
]
|
28
|
-
},
|
29
|
-
"BatchGetResourceConfig":{
|
30
|
-
"name":"BatchGetResourceConfig",
|
31
|
-
"http":{
|
32
|
-
"method":"POST",
|
33
|
-
"requestUri":"/"
|
34
|
-
},
|
35
|
-
"input":{"shape":"BatchGetResourceConfigRequest"},
|
36
|
-
"output":{"shape":"BatchGetResourceConfigResponse"},
|
37
|
-
"errors":[
|
38
|
-
{"shape":"ValidationException"},
|
39
|
-
{"shape":"NoAvailableConfigurationRecorderException"}
|
40
|
-
]
|
41
|
-
},
|
42
|
-
"DeleteAggregationAuthorization":{
|
43
|
-
"name":"DeleteAggregationAuthorization",
|
44
|
-
"http":{
|
45
|
-
"method":"POST",
|
46
|
-
"requestUri":"/"
|
47
|
-
},
|
48
|
-
"input":{"shape":"DeleteAggregationAuthorizationRequest"},
|
49
|
-
"errors":[
|
50
|
-
{"shape":"InvalidParameterValueException"}
|
51
|
-
]
|
52
|
-
},
|
53
|
-
"DeleteConfigRule":{
|
54
|
-
"name":"DeleteConfigRule",
|
55
|
-
"http":{
|
56
|
-
"method":"POST",
|
57
|
-
"requestUri":"/"
|
58
|
-
},
|
59
|
-
"input":{"shape":"DeleteConfigRuleRequest"},
|
60
|
-
"errors":[
|
61
|
-
{"shape":"NoSuchConfigRuleException"},
|
62
|
-
{"shape":"ResourceInUseException"}
|
63
|
-
]
|
64
|
-
},
|
65
|
-
"DeleteConfigurationAggregator":{
|
66
|
-
"name":"DeleteConfigurationAggregator",
|
67
|
-
"http":{
|
68
|
-
"method":"POST",
|
69
|
-
"requestUri":"/"
|
70
|
-
},
|
71
|
-
"input":{"shape":"DeleteConfigurationAggregatorRequest"},
|
72
|
-
"errors":[
|
73
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
74
|
-
]
|
75
|
-
},
|
76
|
-
"DeleteConfigurationRecorder":{
|
77
|
-
"name":"DeleteConfigurationRecorder",
|
78
|
-
"http":{
|
79
|
-
"method":"POST",
|
80
|
-
"requestUri":"/"
|
81
|
-
},
|
82
|
-
"input":{"shape":"DeleteConfigurationRecorderRequest"},
|
83
|
-
"errors":[
|
84
|
-
{"shape":"NoSuchConfigurationRecorderException"}
|
85
|
-
]
|
86
|
-
},
|
87
|
-
"DeleteConformancePack":{
|
88
|
-
"name":"DeleteConformancePack",
|
89
|
-
"http":{
|
90
|
-
"method":"POST",
|
91
|
-
"requestUri":"/"
|
92
|
-
},
|
93
|
-
"input":{"shape":"DeleteConformancePackRequest"},
|
94
|
-
"errors":[
|
95
|
-
{"shape":"NoSuchConformancePackException"},
|
96
|
-
{"shape":"ResourceInUseException"}
|
97
|
-
]
|
98
|
-
},
|
99
|
-
"DeleteDeliveryChannel":{
|
100
|
-
"name":"DeleteDeliveryChannel",
|
101
|
-
"http":{
|
102
|
-
"method":"POST",
|
103
|
-
"requestUri":"/"
|
104
|
-
},
|
105
|
-
"input":{"shape":"DeleteDeliveryChannelRequest"},
|
106
|
-
"errors":[
|
107
|
-
{"shape":"NoSuchDeliveryChannelException"},
|
108
|
-
{"shape":"LastDeliveryChannelDeleteFailedException"}
|
109
|
-
]
|
110
|
-
},
|
111
|
-
"DeleteEvaluationResults":{
|
112
|
-
"name":"DeleteEvaluationResults",
|
113
|
-
"http":{
|
114
|
-
"method":"POST",
|
115
|
-
"requestUri":"/"
|
116
|
-
},
|
117
|
-
"input":{"shape":"DeleteEvaluationResultsRequest"},
|
118
|
-
"output":{"shape":"DeleteEvaluationResultsResponse"},
|
119
|
-
"errors":[
|
120
|
-
{"shape":"NoSuchConfigRuleException"},
|
121
|
-
{"shape":"ResourceInUseException"}
|
122
|
-
]
|
123
|
-
},
|
124
|
-
"DeleteOrganizationConfigRule":{
|
125
|
-
"name":"DeleteOrganizationConfigRule",
|
126
|
-
"http":{
|
127
|
-
"method":"POST",
|
128
|
-
"requestUri":"/"
|
129
|
-
},
|
130
|
-
"input":{"shape":"DeleteOrganizationConfigRuleRequest"},
|
131
|
-
"errors":[
|
132
|
-
{"shape":"NoSuchOrganizationConfigRuleException"},
|
133
|
-
{"shape":"ResourceInUseException"},
|
134
|
-
{"shape":"OrganizationAccessDeniedException"}
|
135
|
-
]
|
136
|
-
},
|
137
|
-
"DeleteOrganizationConformancePack":{
|
138
|
-
"name":"DeleteOrganizationConformancePack",
|
139
|
-
"http":{
|
140
|
-
"method":"POST",
|
141
|
-
"requestUri":"/"
|
142
|
-
},
|
143
|
-
"input":{"shape":"DeleteOrganizationConformancePackRequest"},
|
144
|
-
"errors":[
|
145
|
-
{"shape":"NoSuchOrganizationConformancePackException"},
|
146
|
-
{"shape":"ResourceInUseException"},
|
147
|
-
{"shape":"OrganizationAccessDeniedException"}
|
148
|
-
]
|
149
|
-
},
|
150
|
-
"DeletePendingAggregationRequest":{
|
151
|
-
"name":"DeletePendingAggregationRequest",
|
152
|
-
"http":{
|
153
|
-
"method":"POST",
|
154
|
-
"requestUri":"/"
|
155
|
-
},
|
156
|
-
"input":{"shape":"DeletePendingAggregationRequestRequest"},
|
157
|
-
"errors":[
|
158
|
-
{"shape":"InvalidParameterValueException"}
|
159
|
-
]
|
160
|
-
},
|
161
|
-
"DeleteRemediationConfiguration":{
|
162
|
-
"name":"DeleteRemediationConfiguration",
|
163
|
-
"http":{
|
164
|
-
"method":"POST",
|
165
|
-
"requestUri":"/"
|
166
|
-
},
|
167
|
-
"input":{"shape":"DeleteRemediationConfigurationRequest"},
|
168
|
-
"output":{"shape":"DeleteRemediationConfigurationResponse"},
|
169
|
-
"errors":[
|
170
|
-
{"shape":"NoSuchRemediationConfigurationException"},
|
171
|
-
{"shape":"RemediationInProgressException"}
|
172
|
-
]
|
173
|
-
},
|
174
|
-
"DeleteRemediationExceptions":{
|
175
|
-
"name":"DeleteRemediationExceptions",
|
176
|
-
"http":{
|
177
|
-
"method":"POST",
|
178
|
-
"requestUri":"/"
|
179
|
-
},
|
180
|
-
"input":{"shape":"DeleteRemediationExceptionsRequest"},
|
181
|
-
"output":{"shape":"DeleteRemediationExceptionsResponse"},
|
182
|
-
"errors":[
|
183
|
-
{"shape":"NoSuchRemediationExceptionException"}
|
184
|
-
]
|
185
|
-
},
|
186
|
-
"DeleteResourceConfig":{
|
187
|
-
"name":"DeleteResourceConfig",
|
188
|
-
"http":{
|
189
|
-
"method":"POST",
|
190
|
-
"requestUri":"/"
|
191
|
-
},
|
192
|
-
"input":{"shape":"DeleteResourceConfigRequest"},
|
193
|
-
"errors":[
|
194
|
-
{"shape":"ValidationException"},
|
195
|
-
{"shape":"NoRunningConfigurationRecorderException"}
|
196
|
-
]
|
197
|
-
},
|
198
|
-
"DeleteRetentionConfiguration":{
|
199
|
-
"name":"DeleteRetentionConfiguration",
|
200
|
-
"http":{
|
201
|
-
"method":"POST",
|
202
|
-
"requestUri":"/"
|
203
|
-
},
|
204
|
-
"input":{"shape":"DeleteRetentionConfigurationRequest"},
|
205
|
-
"errors":[
|
206
|
-
{"shape":"InvalidParameterValueException"},
|
207
|
-
{"shape":"NoSuchRetentionConfigurationException"}
|
208
|
-
]
|
209
|
-
},
|
210
|
-
"DeliverConfigSnapshot":{
|
211
|
-
"name":"DeliverConfigSnapshot",
|
212
|
-
"http":{
|
213
|
-
"method":"POST",
|
214
|
-
"requestUri":"/"
|
215
|
-
},
|
216
|
-
"input":{"shape":"DeliverConfigSnapshotRequest"},
|
217
|
-
"output":{"shape":"DeliverConfigSnapshotResponse"},
|
218
|
-
"errors":[
|
219
|
-
{"shape":"NoSuchDeliveryChannelException"},
|
220
|
-
{"shape":"NoAvailableConfigurationRecorderException"},
|
221
|
-
{"shape":"NoRunningConfigurationRecorderException"}
|
222
|
-
]
|
223
|
-
},
|
224
|
-
"DescribeAggregateComplianceByConfigRules":{
|
225
|
-
"name":"DescribeAggregateComplianceByConfigRules",
|
226
|
-
"http":{
|
227
|
-
"method":"POST",
|
228
|
-
"requestUri":"/"
|
229
|
-
},
|
230
|
-
"input":{"shape":"DescribeAggregateComplianceByConfigRulesRequest"},
|
231
|
-
"output":{"shape":"DescribeAggregateComplianceByConfigRulesResponse"},
|
232
|
-
"errors":[
|
233
|
-
{"shape":"ValidationException"},
|
234
|
-
{"shape":"InvalidLimitException"},
|
235
|
-
{"shape":"InvalidNextTokenException"},
|
236
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
237
|
-
]
|
238
|
-
},
|
239
|
-
"DescribeAggregationAuthorizations":{
|
240
|
-
"name":"DescribeAggregationAuthorizations",
|
241
|
-
"http":{
|
242
|
-
"method":"POST",
|
243
|
-
"requestUri":"/"
|
244
|
-
},
|
245
|
-
"input":{"shape":"DescribeAggregationAuthorizationsRequest"},
|
246
|
-
"output":{"shape":"DescribeAggregationAuthorizationsResponse"},
|
247
|
-
"errors":[
|
248
|
-
{"shape":"InvalidParameterValueException"},
|
249
|
-
{"shape":"InvalidNextTokenException"},
|
250
|
-
{"shape":"InvalidLimitException"}
|
251
|
-
]
|
252
|
-
},
|
253
|
-
"DescribeComplianceByConfigRule":{
|
254
|
-
"name":"DescribeComplianceByConfigRule",
|
255
|
-
"http":{
|
256
|
-
"method":"POST",
|
257
|
-
"requestUri":"/"
|
258
|
-
},
|
259
|
-
"input":{"shape":"DescribeComplianceByConfigRuleRequest"},
|
260
|
-
"output":{"shape":"DescribeComplianceByConfigRuleResponse"},
|
261
|
-
"errors":[
|
262
|
-
{"shape":"InvalidParameterValueException"},
|
263
|
-
{"shape":"NoSuchConfigRuleException"},
|
264
|
-
{"shape":"InvalidNextTokenException"}
|
265
|
-
]
|
266
|
-
},
|
267
|
-
"DescribeComplianceByResource":{
|
268
|
-
"name":"DescribeComplianceByResource",
|
269
|
-
"http":{
|
270
|
-
"method":"POST",
|
271
|
-
"requestUri":"/"
|
272
|
-
},
|
273
|
-
"input":{"shape":"DescribeComplianceByResourceRequest"},
|
274
|
-
"output":{"shape":"DescribeComplianceByResourceResponse"},
|
275
|
-
"errors":[
|
276
|
-
{"shape":"InvalidParameterValueException"},
|
277
|
-
{"shape":"InvalidNextTokenException"}
|
278
|
-
]
|
279
|
-
},
|
280
|
-
"DescribeConfigRuleEvaluationStatus":{
|
281
|
-
"name":"DescribeConfigRuleEvaluationStatus",
|
282
|
-
"http":{
|
283
|
-
"method":"POST",
|
284
|
-
"requestUri":"/"
|
285
|
-
},
|
286
|
-
"input":{"shape":"DescribeConfigRuleEvaluationStatusRequest"},
|
287
|
-
"output":{"shape":"DescribeConfigRuleEvaluationStatusResponse"},
|
288
|
-
"errors":[
|
289
|
-
{"shape":"NoSuchConfigRuleException"},
|
290
|
-
{"shape":"InvalidParameterValueException"},
|
291
|
-
{"shape":"InvalidNextTokenException"}
|
292
|
-
]
|
293
|
-
},
|
294
|
-
"DescribeConfigRules":{
|
295
|
-
"name":"DescribeConfigRules",
|
296
|
-
"http":{
|
297
|
-
"method":"POST",
|
298
|
-
"requestUri":"/"
|
299
|
-
},
|
300
|
-
"input":{"shape":"DescribeConfigRulesRequest"},
|
301
|
-
"output":{"shape":"DescribeConfigRulesResponse"},
|
302
|
-
"errors":[
|
303
|
-
{"shape":"NoSuchConfigRuleException"},
|
304
|
-
{"shape":"InvalidNextTokenException"}
|
305
|
-
]
|
306
|
-
},
|
307
|
-
"DescribeConfigurationAggregatorSourcesStatus":{
|
308
|
-
"name":"DescribeConfigurationAggregatorSourcesStatus",
|
309
|
-
"http":{
|
310
|
-
"method":"POST",
|
311
|
-
"requestUri":"/"
|
312
|
-
},
|
313
|
-
"input":{"shape":"DescribeConfigurationAggregatorSourcesStatusRequest"},
|
314
|
-
"output":{"shape":"DescribeConfigurationAggregatorSourcesStatusResponse"},
|
315
|
-
"errors":[
|
316
|
-
{"shape":"InvalidParameterValueException"},
|
317
|
-
{"shape":"NoSuchConfigurationAggregatorException"},
|
318
|
-
{"shape":"InvalidNextTokenException"},
|
319
|
-
{"shape":"InvalidLimitException"}
|
320
|
-
]
|
321
|
-
},
|
322
|
-
"DescribeConfigurationAggregators":{
|
323
|
-
"name":"DescribeConfigurationAggregators",
|
324
|
-
"http":{
|
325
|
-
"method":"POST",
|
326
|
-
"requestUri":"/"
|
327
|
-
},
|
328
|
-
"input":{"shape":"DescribeConfigurationAggregatorsRequest"},
|
329
|
-
"output":{"shape":"DescribeConfigurationAggregatorsResponse"},
|
330
|
-
"errors":[
|
331
|
-
{"shape":"InvalidParameterValueException"},
|
332
|
-
{"shape":"NoSuchConfigurationAggregatorException"},
|
333
|
-
{"shape":"InvalidNextTokenException"},
|
334
|
-
{"shape":"InvalidLimitException"}
|
335
|
-
]
|
336
|
-
},
|
337
|
-
"DescribeConfigurationRecorderStatus":{
|
338
|
-
"name":"DescribeConfigurationRecorderStatus",
|
339
|
-
"http":{
|
340
|
-
"method":"POST",
|
341
|
-
"requestUri":"/"
|
342
|
-
},
|
343
|
-
"input":{"shape":"DescribeConfigurationRecorderStatusRequest"},
|
344
|
-
"output":{"shape":"DescribeConfigurationRecorderStatusResponse"},
|
345
|
-
"errors":[
|
346
|
-
{"shape":"NoSuchConfigurationRecorderException"}
|
347
|
-
]
|
348
|
-
},
|
349
|
-
"DescribeConfigurationRecorders":{
|
350
|
-
"name":"DescribeConfigurationRecorders",
|
351
|
-
"http":{
|
352
|
-
"method":"POST",
|
353
|
-
"requestUri":"/"
|
354
|
-
},
|
355
|
-
"input":{"shape":"DescribeConfigurationRecordersRequest"},
|
356
|
-
"output":{"shape":"DescribeConfigurationRecordersResponse"},
|
357
|
-
"errors":[
|
358
|
-
{"shape":"NoSuchConfigurationRecorderException"}
|
359
|
-
]
|
360
|
-
},
|
361
|
-
"DescribeConformancePackCompliance":{
|
362
|
-
"name":"DescribeConformancePackCompliance",
|
363
|
-
"http":{
|
364
|
-
"method":"POST",
|
365
|
-
"requestUri":"/"
|
366
|
-
},
|
367
|
-
"input":{"shape":"DescribeConformancePackComplianceRequest"},
|
368
|
-
"output":{"shape":"DescribeConformancePackComplianceResponse"},
|
369
|
-
"errors":[
|
370
|
-
{"shape":"InvalidLimitException"},
|
371
|
-
{"shape":"InvalidNextTokenException"},
|
372
|
-
{"shape":"InvalidParameterValueException"},
|
373
|
-
{"shape":"NoSuchConfigRuleInConformancePackException"},
|
374
|
-
{"shape":"NoSuchConformancePackException"}
|
375
|
-
]
|
376
|
-
},
|
377
|
-
"DescribeConformancePackStatus":{
|
378
|
-
"name":"DescribeConformancePackStatus",
|
379
|
-
"http":{
|
380
|
-
"method":"POST",
|
381
|
-
"requestUri":"/"
|
382
|
-
},
|
383
|
-
"input":{"shape":"DescribeConformancePackStatusRequest"},
|
384
|
-
"output":{"shape":"DescribeConformancePackStatusResponse"},
|
385
|
-
"errors":[
|
386
|
-
{"shape":"InvalidLimitException"},
|
387
|
-
{"shape":"InvalidNextTokenException"}
|
388
|
-
]
|
389
|
-
},
|
390
|
-
"DescribeConformancePacks":{
|
391
|
-
"name":"DescribeConformancePacks",
|
392
|
-
"http":{
|
393
|
-
"method":"POST",
|
394
|
-
"requestUri":"/"
|
395
|
-
},
|
396
|
-
"input":{"shape":"DescribeConformancePacksRequest"},
|
397
|
-
"output":{"shape":"DescribeConformancePacksResponse"},
|
398
|
-
"errors":[
|
399
|
-
{"shape":"NoSuchConformancePackException"},
|
400
|
-
{"shape":"InvalidLimitException"},
|
401
|
-
{"shape":"InvalidNextTokenException"}
|
402
|
-
]
|
403
|
-
},
|
404
|
-
"DescribeDeliveryChannelStatus":{
|
405
|
-
"name":"DescribeDeliveryChannelStatus",
|
406
|
-
"http":{
|
407
|
-
"method":"POST",
|
408
|
-
"requestUri":"/"
|
409
|
-
},
|
410
|
-
"input":{"shape":"DescribeDeliveryChannelStatusRequest"},
|
411
|
-
"output":{"shape":"DescribeDeliveryChannelStatusResponse"},
|
412
|
-
"errors":[
|
413
|
-
{"shape":"NoSuchDeliveryChannelException"}
|
414
|
-
]
|
415
|
-
},
|
416
|
-
"DescribeDeliveryChannels":{
|
417
|
-
"name":"DescribeDeliveryChannels",
|
418
|
-
"http":{
|
419
|
-
"method":"POST",
|
420
|
-
"requestUri":"/"
|
421
|
-
},
|
422
|
-
"input":{"shape":"DescribeDeliveryChannelsRequest"},
|
423
|
-
"output":{"shape":"DescribeDeliveryChannelsResponse"},
|
424
|
-
"errors":[
|
425
|
-
{"shape":"NoSuchDeliveryChannelException"}
|
426
|
-
]
|
427
|
-
},
|
428
|
-
"DescribeOrganizationConfigRuleStatuses":{
|
429
|
-
"name":"DescribeOrganizationConfigRuleStatuses",
|
430
|
-
"http":{
|
431
|
-
"method":"POST",
|
432
|
-
"requestUri":"/"
|
433
|
-
},
|
434
|
-
"input":{"shape":"DescribeOrganizationConfigRuleStatusesRequest"},
|
435
|
-
"output":{"shape":"DescribeOrganizationConfigRuleStatusesResponse"},
|
436
|
-
"errors":[
|
437
|
-
{"shape":"NoSuchOrganizationConfigRuleException"},
|
438
|
-
{"shape":"InvalidLimitException"},
|
439
|
-
{"shape":"InvalidNextTokenException"},
|
440
|
-
{"shape":"OrganizationAccessDeniedException"}
|
441
|
-
]
|
442
|
-
},
|
443
|
-
"DescribeOrganizationConfigRules":{
|
444
|
-
"name":"DescribeOrganizationConfigRules",
|
445
|
-
"http":{
|
446
|
-
"method":"POST",
|
447
|
-
"requestUri":"/"
|
448
|
-
},
|
449
|
-
"input":{"shape":"DescribeOrganizationConfigRulesRequest"},
|
450
|
-
"output":{"shape":"DescribeOrganizationConfigRulesResponse"},
|
451
|
-
"errors":[
|
452
|
-
{"shape":"NoSuchOrganizationConfigRuleException"},
|
453
|
-
{"shape":"InvalidNextTokenException"},
|
454
|
-
{"shape":"InvalidLimitException"},
|
455
|
-
{"shape":"OrganizationAccessDeniedException"}
|
456
|
-
]
|
457
|
-
},
|
458
|
-
"DescribeOrganizationConformancePackStatuses":{
|
459
|
-
"name":"DescribeOrganizationConformancePackStatuses",
|
460
|
-
"http":{
|
461
|
-
"method":"POST",
|
462
|
-
"requestUri":"/"
|
463
|
-
},
|
464
|
-
"input":{"shape":"DescribeOrganizationConformancePackStatusesRequest"},
|
465
|
-
"output":{"shape":"DescribeOrganizationConformancePackStatusesResponse"},
|
466
|
-
"errors":[
|
467
|
-
{"shape":"NoSuchOrganizationConformancePackException"},
|
468
|
-
{"shape":"InvalidLimitException"},
|
469
|
-
{"shape":"InvalidNextTokenException"},
|
470
|
-
{"shape":"OrganizationAccessDeniedException"}
|
471
|
-
]
|
472
|
-
},
|
473
|
-
"DescribeOrganizationConformancePacks":{
|
474
|
-
"name":"DescribeOrganizationConformancePacks",
|
475
|
-
"http":{
|
476
|
-
"method":"POST",
|
477
|
-
"requestUri":"/"
|
478
|
-
},
|
479
|
-
"input":{"shape":"DescribeOrganizationConformancePacksRequest"},
|
480
|
-
"output":{"shape":"DescribeOrganizationConformancePacksResponse"},
|
481
|
-
"errors":[
|
482
|
-
{"shape":"NoSuchOrganizationConformancePackException"},
|
483
|
-
{"shape":"InvalidNextTokenException"},
|
484
|
-
{"shape":"InvalidLimitException"},
|
485
|
-
{"shape":"OrganizationAccessDeniedException"}
|
486
|
-
]
|
487
|
-
},
|
488
|
-
"DescribePendingAggregationRequests":{
|
489
|
-
"name":"DescribePendingAggregationRequests",
|
490
|
-
"http":{
|
491
|
-
"method":"POST",
|
492
|
-
"requestUri":"/"
|
493
|
-
},
|
494
|
-
"input":{"shape":"DescribePendingAggregationRequestsRequest"},
|
495
|
-
"output":{"shape":"DescribePendingAggregationRequestsResponse"},
|
496
|
-
"errors":[
|
497
|
-
{"shape":"InvalidParameterValueException"},
|
498
|
-
{"shape":"InvalidNextTokenException"},
|
499
|
-
{"shape":"InvalidLimitException"}
|
500
|
-
]
|
501
|
-
},
|
502
|
-
"DescribeRemediationConfigurations":{
|
503
|
-
"name":"DescribeRemediationConfigurations",
|
504
|
-
"http":{
|
505
|
-
"method":"POST",
|
506
|
-
"requestUri":"/"
|
507
|
-
},
|
508
|
-
"input":{"shape":"DescribeRemediationConfigurationsRequest"},
|
509
|
-
"output":{"shape":"DescribeRemediationConfigurationsResponse"}
|
510
|
-
},
|
511
|
-
"DescribeRemediationExceptions":{
|
512
|
-
"name":"DescribeRemediationExceptions",
|
513
|
-
"http":{
|
514
|
-
"method":"POST",
|
515
|
-
"requestUri":"/"
|
516
|
-
},
|
517
|
-
"input":{"shape":"DescribeRemediationExceptionsRequest"},
|
518
|
-
"output":{"shape":"DescribeRemediationExceptionsResponse"},
|
519
|
-
"errors":[
|
520
|
-
{"shape":"InvalidNextTokenException"},
|
521
|
-
{"shape":"InvalidParameterValueException"}
|
522
|
-
]
|
523
|
-
},
|
524
|
-
"DescribeRemediationExecutionStatus":{
|
525
|
-
"name":"DescribeRemediationExecutionStatus",
|
526
|
-
"http":{
|
527
|
-
"method":"POST",
|
528
|
-
"requestUri":"/"
|
529
|
-
},
|
530
|
-
"input":{"shape":"DescribeRemediationExecutionStatusRequest"},
|
531
|
-
"output":{"shape":"DescribeRemediationExecutionStatusResponse"},
|
532
|
-
"errors":[
|
533
|
-
{"shape":"NoSuchRemediationConfigurationException"},
|
534
|
-
{"shape":"InvalidNextTokenException"}
|
535
|
-
]
|
536
|
-
},
|
537
|
-
"DescribeRetentionConfigurations":{
|
538
|
-
"name":"DescribeRetentionConfigurations",
|
539
|
-
"http":{
|
540
|
-
"method":"POST",
|
541
|
-
"requestUri":"/"
|
542
|
-
},
|
543
|
-
"input":{"shape":"DescribeRetentionConfigurationsRequest"},
|
544
|
-
"output":{"shape":"DescribeRetentionConfigurationsResponse"},
|
545
|
-
"errors":[
|
546
|
-
{"shape":"InvalidParameterValueException"},
|
547
|
-
{"shape":"NoSuchRetentionConfigurationException"},
|
548
|
-
{"shape":"InvalidNextTokenException"}
|
549
|
-
]
|
550
|
-
},
|
551
|
-
"GetAggregateComplianceDetailsByConfigRule":{
|
552
|
-
"name":"GetAggregateComplianceDetailsByConfigRule",
|
553
|
-
"http":{
|
554
|
-
"method":"POST",
|
555
|
-
"requestUri":"/"
|
556
|
-
},
|
557
|
-
"input":{"shape":"GetAggregateComplianceDetailsByConfigRuleRequest"},
|
558
|
-
"output":{"shape":"GetAggregateComplianceDetailsByConfigRuleResponse"},
|
559
|
-
"errors":[
|
560
|
-
{"shape":"ValidationException"},
|
561
|
-
{"shape":"InvalidLimitException"},
|
562
|
-
{"shape":"InvalidNextTokenException"},
|
563
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
564
|
-
]
|
565
|
-
},
|
566
|
-
"GetAggregateConfigRuleComplianceSummary":{
|
567
|
-
"name":"GetAggregateConfigRuleComplianceSummary",
|
568
|
-
"http":{
|
569
|
-
"method":"POST",
|
570
|
-
"requestUri":"/"
|
571
|
-
},
|
572
|
-
"input":{"shape":"GetAggregateConfigRuleComplianceSummaryRequest"},
|
573
|
-
"output":{"shape":"GetAggregateConfigRuleComplianceSummaryResponse"},
|
574
|
-
"errors":[
|
575
|
-
{"shape":"ValidationException"},
|
576
|
-
{"shape":"InvalidLimitException"},
|
577
|
-
{"shape":"InvalidNextTokenException"},
|
578
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
579
|
-
]
|
580
|
-
},
|
581
|
-
"GetAggregateDiscoveredResourceCounts":{
|
582
|
-
"name":"GetAggregateDiscoveredResourceCounts",
|
583
|
-
"http":{
|
584
|
-
"method":"POST",
|
585
|
-
"requestUri":"/"
|
586
|
-
},
|
587
|
-
"input":{"shape":"GetAggregateDiscoveredResourceCountsRequest"},
|
588
|
-
"output":{"shape":"GetAggregateDiscoveredResourceCountsResponse"},
|
589
|
-
"errors":[
|
590
|
-
{"shape":"ValidationException"},
|
591
|
-
{"shape":"InvalidLimitException"},
|
592
|
-
{"shape":"InvalidNextTokenException"},
|
593
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
594
|
-
]
|
595
|
-
},
|
596
|
-
"GetAggregateResourceConfig":{
|
597
|
-
"name":"GetAggregateResourceConfig",
|
598
|
-
"http":{
|
599
|
-
"method":"POST",
|
600
|
-
"requestUri":"/"
|
601
|
-
},
|
602
|
-
"input":{"shape":"GetAggregateResourceConfigRequest"},
|
603
|
-
"output":{"shape":"GetAggregateResourceConfigResponse"},
|
604
|
-
"errors":[
|
605
|
-
{"shape":"ValidationException"},
|
606
|
-
{"shape":"NoSuchConfigurationAggregatorException"},
|
607
|
-
{"shape":"OversizedConfigurationItemException"},
|
608
|
-
{"shape":"ResourceNotDiscoveredException"}
|
609
|
-
]
|
610
|
-
},
|
611
|
-
"GetComplianceDetailsByConfigRule":{
|
612
|
-
"name":"GetComplianceDetailsByConfigRule",
|
613
|
-
"http":{
|
614
|
-
"method":"POST",
|
615
|
-
"requestUri":"/"
|
616
|
-
},
|
617
|
-
"input":{"shape":"GetComplianceDetailsByConfigRuleRequest"},
|
618
|
-
"output":{"shape":"GetComplianceDetailsByConfigRuleResponse"},
|
619
|
-
"errors":[
|
620
|
-
{"shape":"InvalidParameterValueException"},
|
621
|
-
{"shape":"InvalidNextTokenException"},
|
622
|
-
{"shape":"NoSuchConfigRuleException"}
|
623
|
-
]
|
624
|
-
},
|
625
|
-
"GetComplianceDetailsByResource":{
|
626
|
-
"name":"GetComplianceDetailsByResource",
|
627
|
-
"http":{
|
628
|
-
"method":"POST",
|
629
|
-
"requestUri":"/"
|
630
|
-
},
|
631
|
-
"input":{"shape":"GetComplianceDetailsByResourceRequest"},
|
632
|
-
"output":{"shape":"GetComplianceDetailsByResourceResponse"},
|
633
|
-
"errors":[
|
634
|
-
{"shape":"InvalidParameterValueException"}
|
635
|
-
]
|
636
|
-
},
|
637
|
-
"GetComplianceSummaryByConfigRule":{
|
638
|
-
"name":"GetComplianceSummaryByConfigRule",
|
639
|
-
"http":{
|
640
|
-
"method":"POST",
|
641
|
-
"requestUri":"/"
|
642
|
-
},
|
643
|
-
"output":{"shape":"GetComplianceSummaryByConfigRuleResponse"}
|
644
|
-
},
|
645
|
-
"GetComplianceSummaryByResourceType":{
|
646
|
-
"name":"GetComplianceSummaryByResourceType",
|
647
|
-
"http":{
|
648
|
-
"method":"POST",
|
649
|
-
"requestUri":"/"
|
650
|
-
},
|
651
|
-
"input":{"shape":"GetComplianceSummaryByResourceTypeRequest"},
|
652
|
-
"output":{"shape":"GetComplianceSummaryByResourceTypeResponse"},
|
653
|
-
"errors":[
|
654
|
-
{"shape":"InvalidParameterValueException"}
|
655
|
-
]
|
656
|
-
},
|
657
|
-
"GetConformancePackComplianceDetails":{
|
658
|
-
"name":"GetConformancePackComplianceDetails",
|
659
|
-
"http":{
|
660
|
-
"method":"POST",
|
661
|
-
"requestUri":"/"
|
662
|
-
},
|
663
|
-
"input":{"shape":"GetConformancePackComplianceDetailsRequest"},
|
664
|
-
"output":{"shape":"GetConformancePackComplianceDetailsResponse"},
|
665
|
-
"errors":[
|
666
|
-
{"shape":"InvalidLimitException"},
|
667
|
-
{"shape":"InvalidNextTokenException"},
|
668
|
-
{"shape":"NoSuchConformancePackException"},
|
669
|
-
{"shape":"NoSuchConfigRuleInConformancePackException"},
|
670
|
-
{"shape":"InvalidParameterValueException"}
|
671
|
-
]
|
672
|
-
},
|
673
|
-
"GetConformancePackComplianceSummary":{
|
674
|
-
"name":"GetConformancePackComplianceSummary",
|
675
|
-
"http":{
|
676
|
-
"method":"POST",
|
677
|
-
"requestUri":"/"
|
678
|
-
},
|
679
|
-
"input":{"shape":"GetConformancePackComplianceSummaryRequest"},
|
680
|
-
"output":{"shape":"GetConformancePackComplianceSummaryResponse"},
|
681
|
-
"errors":[
|
682
|
-
{"shape":"NoSuchConformancePackException"},
|
683
|
-
{"shape":"InvalidLimitException"},
|
684
|
-
{"shape":"InvalidNextTokenException"}
|
685
|
-
]
|
686
|
-
},
|
687
|
-
"GetDiscoveredResourceCounts":{
|
688
|
-
"name":"GetDiscoveredResourceCounts",
|
689
|
-
"http":{
|
690
|
-
"method":"POST",
|
691
|
-
"requestUri":"/"
|
692
|
-
},
|
693
|
-
"input":{"shape":"GetDiscoveredResourceCountsRequest"},
|
694
|
-
"output":{"shape":"GetDiscoveredResourceCountsResponse"},
|
695
|
-
"errors":[
|
696
|
-
{"shape":"ValidationException"},
|
697
|
-
{"shape":"InvalidLimitException"},
|
698
|
-
{"shape":"InvalidNextTokenException"}
|
699
|
-
]
|
700
|
-
},
|
701
|
-
"GetOrganizationConfigRuleDetailedStatus":{
|
702
|
-
"name":"GetOrganizationConfigRuleDetailedStatus",
|
703
|
-
"http":{
|
704
|
-
"method":"POST",
|
705
|
-
"requestUri":"/"
|
706
|
-
},
|
707
|
-
"input":{"shape":"GetOrganizationConfigRuleDetailedStatusRequest"},
|
708
|
-
"output":{"shape":"GetOrganizationConfigRuleDetailedStatusResponse"},
|
709
|
-
"errors":[
|
710
|
-
{"shape":"NoSuchOrganizationConfigRuleException"},
|
711
|
-
{"shape":"InvalidLimitException"},
|
712
|
-
{"shape":"InvalidNextTokenException"},
|
713
|
-
{"shape":"OrganizationAccessDeniedException"}
|
714
|
-
]
|
715
|
-
},
|
716
|
-
"GetOrganizationConformancePackDetailedStatus":{
|
717
|
-
"name":"GetOrganizationConformancePackDetailedStatus",
|
718
|
-
"http":{
|
719
|
-
"method":"POST",
|
720
|
-
"requestUri":"/"
|
721
|
-
},
|
722
|
-
"input":{"shape":"GetOrganizationConformancePackDetailedStatusRequest"},
|
723
|
-
"output":{"shape":"GetOrganizationConformancePackDetailedStatusResponse"},
|
724
|
-
"errors":[
|
725
|
-
{"shape":"NoSuchOrganizationConformancePackException"},
|
726
|
-
{"shape":"InvalidLimitException"},
|
727
|
-
{"shape":"InvalidNextTokenException"},
|
728
|
-
{"shape":"OrganizationAccessDeniedException"}
|
729
|
-
]
|
730
|
-
},
|
731
|
-
"GetResourceConfigHistory":{
|
732
|
-
"name":"GetResourceConfigHistory",
|
733
|
-
"http":{
|
734
|
-
"method":"POST",
|
735
|
-
"requestUri":"/"
|
736
|
-
},
|
737
|
-
"input":{"shape":"GetResourceConfigHistoryRequest"},
|
738
|
-
"output":{"shape":"GetResourceConfigHistoryResponse"},
|
739
|
-
"errors":[
|
740
|
-
{"shape":"ValidationException"},
|
741
|
-
{"shape":"InvalidTimeRangeException"},
|
742
|
-
{"shape":"InvalidLimitException"},
|
743
|
-
{"shape":"InvalidNextTokenException"},
|
744
|
-
{"shape":"NoAvailableConfigurationRecorderException"},
|
745
|
-
{"shape":"ResourceNotDiscoveredException"}
|
746
|
-
]
|
747
|
-
},
|
748
|
-
"ListAggregateDiscoveredResources":{
|
749
|
-
"name":"ListAggregateDiscoveredResources",
|
750
|
-
"http":{
|
751
|
-
"method":"POST",
|
752
|
-
"requestUri":"/"
|
753
|
-
},
|
754
|
-
"input":{"shape":"ListAggregateDiscoveredResourcesRequest"},
|
755
|
-
"output":{"shape":"ListAggregateDiscoveredResourcesResponse"},
|
756
|
-
"errors":[
|
757
|
-
{"shape":"ValidationException"},
|
758
|
-
{"shape":"InvalidLimitException"},
|
759
|
-
{"shape":"InvalidNextTokenException"},
|
760
|
-
{"shape":"NoSuchConfigurationAggregatorException"}
|
761
|
-
]
|
762
|
-
},
|
763
|
-
"ListDiscoveredResources":{
|
764
|
-
"name":"ListDiscoveredResources",
|
765
|
-
"http":{
|
766
|
-
"method":"POST",
|
767
|
-
"requestUri":"/"
|
768
|
-
},
|
769
|
-
"input":{"shape":"ListDiscoveredResourcesRequest"},
|
770
|
-
"output":{"shape":"ListDiscoveredResourcesResponse"},
|
771
|
-
"errors":[
|
772
|
-
{"shape":"ValidationException"},
|
773
|
-
{"shape":"InvalidLimitException"},
|
774
|
-
{"shape":"InvalidNextTokenException"},
|
775
|
-
{"shape":"NoAvailableConfigurationRecorderException"}
|
776
|
-
]
|
777
|
-
},
|
778
|
-
"ListTagsForResource":{
|
779
|
-
"name":"ListTagsForResource",
|
780
|
-
"http":{
|
781
|
-
"method":"POST",
|
782
|
-
"requestUri":"/"
|
783
|
-
},
|
784
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
785
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
786
|
-
"errors":[
|
787
|
-
{"shape":"ResourceNotFoundException"},
|
788
|
-
{"shape":"ValidationException"},
|
789
|
-
{"shape":"InvalidLimitException"},
|
790
|
-
{"shape":"InvalidNextTokenException"}
|
791
|
-
]
|
792
|
-
},
|
793
|
-
"PutAggregationAuthorization":{
|
794
|
-
"name":"PutAggregationAuthorization",
|
795
|
-
"http":{
|
796
|
-
"method":"POST",
|
797
|
-
"requestUri":"/"
|
798
|
-
},
|
799
|
-
"input":{"shape":"PutAggregationAuthorizationRequest"},
|
800
|
-
"output":{"shape":"PutAggregationAuthorizationResponse"},
|
801
|
-
"errors":[
|
802
|
-
{"shape":"InvalidParameterValueException"}
|
803
|
-
]
|
804
|
-
},
|
805
|
-
"PutConfigRule":{
|
806
|
-
"name":"PutConfigRule",
|
807
|
-
"http":{
|
808
|
-
"method":"POST",
|
809
|
-
"requestUri":"/"
|
810
|
-
},
|
811
|
-
"input":{"shape":"PutConfigRuleRequest"},
|
812
|
-
"errors":[
|
813
|
-
{"shape":"InvalidParameterValueException"},
|
814
|
-
{"shape":"MaxNumberOfConfigRulesExceededException"},
|
815
|
-
{"shape":"ResourceInUseException"},
|
816
|
-
{"shape":"InsufficientPermissionsException"},
|
817
|
-
{"shape":"NoAvailableConfigurationRecorderException"}
|
818
|
-
]
|
819
|
-
},
|
820
|
-
"PutConfigurationAggregator":{
|
821
|
-
"name":"PutConfigurationAggregator",
|
822
|
-
"http":{
|
823
|
-
"method":"POST",
|
824
|
-
"requestUri":"/"
|
825
|
-
},
|
826
|
-
"input":{"shape":"PutConfigurationAggregatorRequest"},
|
827
|
-
"output":{"shape":"PutConfigurationAggregatorResponse"},
|
828
|
-
"errors":[
|
829
|
-
{"shape":"InvalidParameterValueException"},
|
830
|
-
{"shape":"LimitExceededException"},
|
831
|
-
{"shape":"InvalidRoleException"},
|
832
|
-
{"shape":"OrganizationAccessDeniedException"},
|
833
|
-
{"shape":"NoAvailableOrganizationException"},
|
834
|
-
{"shape":"OrganizationAllFeaturesNotEnabledException"}
|
835
|
-
]
|
836
|
-
},
|
837
|
-
"PutConfigurationRecorder":{
|
838
|
-
"name":"PutConfigurationRecorder",
|
839
|
-
"http":{
|
840
|
-
"method":"POST",
|
841
|
-
"requestUri":"/"
|
842
|
-
},
|
843
|
-
"input":{"shape":"PutConfigurationRecorderRequest"},
|
844
|
-
"errors":[
|
845
|
-
{"shape":"MaxNumberOfConfigurationRecordersExceededException"},
|
846
|
-
{"shape":"InvalidConfigurationRecorderNameException"},
|
847
|
-
{"shape":"InvalidRoleException"},
|
848
|
-
{"shape":"InvalidRecordingGroupException"}
|
849
|
-
]
|
850
|
-
},
|
851
|
-
"PutConformancePack":{
|
852
|
-
"name":"PutConformancePack",
|
853
|
-
"http":{
|
854
|
-
"method":"POST",
|
855
|
-
"requestUri":"/"
|
856
|
-
},
|
857
|
-
"input":{"shape":"PutConformancePackRequest"},
|
858
|
-
"output":{"shape":"PutConformancePackResponse"},
|
859
|
-
"errors":[
|
860
|
-
{"shape":"InsufficientPermissionsException"},
|
861
|
-
{"shape":"ConformancePackTemplateValidationException"},
|
862
|
-
{"shape":"ResourceInUseException"},
|
863
|
-
{"shape":"InvalidParameterValueException"},
|
864
|
-
{"shape":"MaxNumberOfConformancePacksExceededException"}
|
865
|
-
]
|
866
|
-
},
|
867
|
-
"PutDeliveryChannel":{
|
868
|
-
"name":"PutDeliveryChannel",
|
869
|
-
"http":{
|
870
|
-
"method":"POST",
|
871
|
-
"requestUri":"/"
|
872
|
-
},
|
873
|
-
"input":{"shape":"PutDeliveryChannelRequest"},
|
874
|
-
"errors":[
|
875
|
-
{"shape":"MaxNumberOfDeliveryChannelsExceededException"},
|
876
|
-
{"shape":"NoAvailableConfigurationRecorderException"},
|
877
|
-
{"shape":"InvalidDeliveryChannelNameException"},
|
878
|
-
{"shape":"NoSuchBucketException"},
|
879
|
-
{"shape":"InvalidS3KeyPrefixException"},
|
880
|
-
{"shape":"InvalidSNSTopicARNException"},
|
881
|
-
{"shape":"InsufficientDeliveryPolicyException"}
|
882
|
-
]
|
883
|
-
},
|
884
|
-
"PutEvaluations":{
|
885
|
-
"name":"PutEvaluations",
|
886
|
-
"http":{
|
887
|
-
"method":"POST",
|
888
|
-
"requestUri":"/"
|
889
|
-
},
|
890
|
-
"input":{"shape":"PutEvaluationsRequest"},
|
891
|
-
"output":{"shape":"PutEvaluationsResponse"},
|
892
|
-
"errors":[
|
893
|
-
{"shape":"InvalidParameterValueException"},
|
894
|
-
{"shape":"InvalidResultTokenException"},
|
895
|
-
{"shape":"NoSuchConfigRuleException"}
|
896
|
-
]
|
897
|
-
},
|
898
|
-
"PutOrganizationConfigRule":{
|
899
|
-
"name":"PutOrganizationConfigRule",
|
900
|
-
"http":{
|
901
|
-
"method":"POST",
|
902
|
-
"requestUri":"/"
|
903
|
-
},
|
904
|
-
"input":{"shape":"PutOrganizationConfigRuleRequest"},
|
905
|
-
"output":{"shape":"PutOrganizationConfigRuleResponse"},
|
906
|
-
"errors":[
|
907
|
-
{"shape":"MaxNumberOfOrganizationConfigRulesExceededException"},
|
908
|
-
{"shape":"ResourceInUseException"},
|
909
|
-
{"shape":"InvalidParameterValueException"},
|
910
|
-
{"shape":"ValidationException"},
|
911
|
-
{"shape":"OrganizationAccessDeniedException"},
|
912
|
-
{"shape":"NoAvailableOrganizationException"},
|
913
|
-
{"shape":"OrganizationAllFeaturesNotEnabledException"},
|
914
|
-
{"shape":"InsufficientPermissionsException"}
|
915
|
-
]
|
916
|
-
},
|
917
|
-
"PutOrganizationConformancePack":{
|
918
|
-
"name":"PutOrganizationConformancePack",
|
919
|
-
"http":{
|
920
|
-
"method":"POST",
|
921
|
-
"requestUri":"/"
|
922
|
-
},
|
923
|
-
"input":{"shape":"PutOrganizationConformancePackRequest"},
|
924
|
-
"output":{"shape":"PutOrganizationConformancePackResponse"},
|
925
|
-
"errors":[
|
926
|
-
{"shape":"MaxNumberOfOrganizationConformancePacksExceededException"},
|
927
|
-
{"shape":"ResourceInUseException"},
|
928
|
-
{"shape":"ValidationException"},
|
929
|
-
{"shape":"OrganizationAccessDeniedException"},
|
930
|
-
{"shape":"InsufficientPermissionsException"},
|
931
|
-
{"shape":"OrganizationConformancePackTemplateValidationException"},
|
932
|
-
{"shape":"OrganizationAllFeaturesNotEnabledException"},
|
933
|
-
{"shape":"NoAvailableOrganizationException"}
|
934
|
-
]
|
935
|
-
},
|
936
|
-
"PutRemediationConfigurations":{
|
937
|
-
"name":"PutRemediationConfigurations",
|
938
|
-
"http":{
|
939
|
-
"method":"POST",
|
940
|
-
"requestUri":"/"
|
941
|
-
},
|
942
|
-
"input":{"shape":"PutRemediationConfigurationsRequest"},
|
943
|
-
"output":{"shape":"PutRemediationConfigurationsResponse"},
|
944
|
-
"errors":[
|
945
|
-
{"shape":"InsufficientPermissionsException"},
|
946
|
-
{"shape":"InvalidParameterValueException"}
|
947
|
-
]
|
948
|
-
},
|
949
|
-
"PutRemediationExceptions":{
|
950
|
-
"name":"PutRemediationExceptions",
|
951
|
-
"http":{
|
952
|
-
"method":"POST",
|
953
|
-
"requestUri":"/"
|
954
|
-
},
|
955
|
-
"input":{"shape":"PutRemediationExceptionsRequest"},
|
956
|
-
"output":{"shape":"PutRemediationExceptionsResponse"},
|
957
|
-
"errors":[
|
958
|
-
{"shape":"InvalidParameterValueException"}
|
959
|
-
]
|
960
|
-
},
|
961
|
-
"PutResourceConfig":{
|
962
|
-
"name":"PutResourceConfig",
|
963
|
-
"http":{
|
964
|
-
"method":"POST",
|
965
|
-
"requestUri":"/"
|
966
|
-
},
|
967
|
-
"input":{"shape":"PutResourceConfigRequest"},
|
968
|
-
"errors":[
|
969
|
-
{"shape":"ValidationException"},
|
970
|
-
{"shape":"InsufficientPermissionsException"},
|
971
|
-
{"shape":"NoRunningConfigurationRecorderException"},
|
972
|
-
{"shape":"MaxActiveResourcesExceededException"}
|
973
|
-
]
|
974
|
-
},
|
975
|
-
"PutRetentionConfiguration":{
|
976
|
-
"name":"PutRetentionConfiguration",
|
977
|
-
"http":{
|
978
|
-
"method":"POST",
|
979
|
-
"requestUri":"/"
|
980
|
-
},
|
981
|
-
"input":{"shape":"PutRetentionConfigurationRequest"},
|
982
|
-
"output":{"shape":"PutRetentionConfigurationResponse"},
|
983
|
-
"errors":[
|
984
|
-
{"shape":"InvalidParameterValueException"},
|
985
|
-
{"shape":"MaxNumberOfRetentionConfigurationsExceededException"}
|
986
|
-
]
|
987
|
-
},
|
988
|
-
"SelectResourceConfig":{
|
989
|
-
"name":"SelectResourceConfig",
|
990
|
-
"http":{
|
991
|
-
"method":"POST",
|
992
|
-
"requestUri":"/"
|
993
|
-
},
|
994
|
-
"input":{"shape":"SelectResourceConfigRequest"},
|
995
|
-
"output":{"shape":"SelectResourceConfigResponse"},
|
996
|
-
"errors":[
|
997
|
-
{"shape":"InvalidExpressionException"},
|
998
|
-
{"shape":"InvalidLimitException"},
|
999
|
-
{"shape":"InvalidNextTokenException"}
|
1000
|
-
]
|
1001
|
-
},
|
1002
|
-
"StartConfigRulesEvaluation":{
|
1003
|
-
"name":"StartConfigRulesEvaluation",
|
1004
|
-
"http":{
|
1005
|
-
"method":"POST",
|
1006
|
-
"requestUri":"/"
|
1007
|
-
},
|
1008
|
-
"input":{"shape":"StartConfigRulesEvaluationRequest"},
|
1009
|
-
"output":{"shape":"StartConfigRulesEvaluationResponse"},
|
1010
|
-
"errors":[
|
1011
|
-
{"shape":"NoSuchConfigRuleException"},
|
1012
|
-
{"shape":"LimitExceededException"},
|
1013
|
-
{"shape":"ResourceInUseException"},
|
1014
|
-
{"shape":"InvalidParameterValueException"}
|
1015
|
-
]
|
1016
|
-
},
|
1017
|
-
"StartConfigurationRecorder":{
|
1018
|
-
"name":"StartConfigurationRecorder",
|
1019
|
-
"http":{
|
1020
|
-
"method":"POST",
|
1021
|
-
"requestUri":"/"
|
1022
|
-
},
|
1023
|
-
"input":{"shape":"StartConfigurationRecorderRequest"},
|
1024
|
-
"errors":[
|
1025
|
-
{"shape":"NoSuchConfigurationRecorderException"},
|
1026
|
-
{"shape":"NoAvailableDeliveryChannelException"}
|
1027
|
-
]
|
1028
|
-
},
|
1029
|
-
"StartRemediationExecution":{
|
1030
|
-
"name":"StartRemediationExecution",
|
1031
|
-
"http":{
|
1032
|
-
"method":"POST",
|
1033
|
-
"requestUri":"/"
|
1034
|
-
},
|
1035
|
-
"input":{"shape":"StartRemediationExecutionRequest"},
|
1036
|
-
"output":{"shape":"StartRemediationExecutionResponse"},
|
1037
|
-
"errors":[
|
1038
|
-
{"shape":"InvalidParameterValueException"},
|
1039
|
-
{"shape":"InsufficientPermissionsException"},
|
1040
|
-
{"shape":"NoSuchRemediationConfigurationException"}
|
1041
|
-
]
|
1042
|
-
},
|
1043
|
-
"StopConfigurationRecorder":{
|
1044
|
-
"name":"StopConfigurationRecorder",
|
1045
|
-
"http":{
|
1046
|
-
"method":"POST",
|
1047
|
-
"requestUri":"/"
|
1048
|
-
},
|
1049
|
-
"input":{"shape":"StopConfigurationRecorderRequest"},
|
1050
|
-
"errors":[
|
1051
|
-
{"shape":"NoSuchConfigurationRecorderException"}
|
1052
|
-
]
|
1053
|
-
},
|
1054
|
-
"TagResource":{
|
1055
|
-
"name":"TagResource",
|
1056
|
-
"http":{
|
1057
|
-
"method":"POST",
|
1058
|
-
"requestUri":"/"
|
1059
|
-
},
|
1060
|
-
"input":{"shape":"TagResourceRequest"},
|
1061
|
-
"errors":[
|
1062
|
-
{"shape":"ValidationException"},
|
1063
|
-
{"shape":"ResourceNotFoundException"},
|
1064
|
-
{"shape":"TooManyTagsException"}
|
1065
|
-
]
|
1066
|
-
},
|
1067
|
-
"UntagResource":{
|
1068
|
-
"name":"UntagResource",
|
1069
|
-
"http":{
|
1070
|
-
"method":"POST",
|
1071
|
-
"requestUri":"/"
|
1072
|
-
},
|
1073
|
-
"input":{"shape":"UntagResourceRequest"},
|
1074
|
-
"errors":[
|
1075
|
-
{"shape":"ValidationException"},
|
1076
|
-
{"shape":"ResourceNotFoundException"}
|
1077
|
-
]
|
1078
|
-
}
|
1079
|
-
},
|
1080
|
-
"shapes":{
|
1081
|
-
"ARN":{"type":"string"},
|
1082
|
-
"AccountAggregationSource":{
|
1083
|
-
"type":"structure",
|
1084
|
-
"required":["AccountIds"],
|
1085
|
-
"members":{
|
1086
|
-
"AccountIds":{"shape":"AccountAggregationSourceAccountList"},
|
1087
|
-
"AllAwsRegions":{"shape":"Boolean"},
|
1088
|
-
"AwsRegions":{"shape":"AggregatorRegionList"}
|
1089
|
-
}
|
1090
|
-
},
|
1091
|
-
"AccountAggregationSourceAccountList":{
|
1092
|
-
"type":"list",
|
1093
|
-
"member":{"shape":"AccountId"},
|
1094
|
-
"min":1
|
1095
|
-
},
|
1096
|
-
"AccountAggregationSourceList":{
|
1097
|
-
"type":"list",
|
1098
|
-
"member":{"shape":"AccountAggregationSource"},
|
1099
|
-
"max":1,
|
1100
|
-
"min":0
|
1101
|
-
},
|
1102
|
-
"AccountId":{
|
1103
|
-
"type":"string",
|
1104
|
-
"pattern":"\\d{12}"
|
1105
|
-
},
|
1106
|
-
"AggregateComplianceByConfigRule":{
|
1107
|
-
"type":"structure",
|
1108
|
-
"members":{
|
1109
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
1110
|
-
"Compliance":{"shape":"Compliance"},
|
1111
|
-
"AccountId":{"shape":"AccountId"},
|
1112
|
-
"AwsRegion":{"shape":"AwsRegion"}
|
1113
|
-
}
|
1114
|
-
},
|
1115
|
-
"AggregateComplianceByConfigRuleList":{
|
1116
|
-
"type":"list",
|
1117
|
-
"member":{"shape":"AggregateComplianceByConfigRule"}
|
1118
|
-
},
|
1119
|
-
"AggregateComplianceCount":{
|
1120
|
-
"type":"structure",
|
1121
|
-
"members":{
|
1122
|
-
"GroupName":{"shape":"StringWithCharLimit256"},
|
1123
|
-
"ComplianceSummary":{"shape":"ComplianceSummary"}
|
1124
|
-
}
|
1125
|
-
},
|
1126
|
-
"AggregateComplianceCountList":{
|
1127
|
-
"type":"list",
|
1128
|
-
"member":{"shape":"AggregateComplianceCount"}
|
1129
|
-
},
|
1130
|
-
"AggregateEvaluationResult":{
|
1131
|
-
"type":"structure",
|
1132
|
-
"members":{
|
1133
|
-
"EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
|
1134
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
1135
|
-
"ResultRecordedTime":{"shape":"Date"},
|
1136
|
-
"ConfigRuleInvokedTime":{"shape":"Date"},
|
1137
|
-
"Annotation":{"shape":"StringWithCharLimit256"},
|
1138
|
-
"AccountId":{"shape":"AccountId"},
|
1139
|
-
"AwsRegion":{"shape":"AwsRegion"}
|
1140
|
-
}
|
1141
|
-
},
|
1142
|
-
"AggregateEvaluationResultList":{
|
1143
|
-
"type":"list",
|
1144
|
-
"member":{"shape":"AggregateEvaluationResult"}
|
1145
|
-
},
|
1146
|
-
"AggregateResourceIdentifier":{
|
1147
|
-
"type":"structure",
|
1148
|
-
"required":[
|
1149
|
-
"SourceAccountId",
|
1150
|
-
"SourceRegion",
|
1151
|
-
"ResourceId",
|
1152
|
-
"ResourceType"
|
1153
|
-
],
|
1154
|
-
"members":{
|
1155
|
-
"SourceAccountId":{"shape":"AccountId"},
|
1156
|
-
"SourceRegion":{"shape":"AwsRegion"},
|
1157
|
-
"ResourceId":{"shape":"ResourceId"},
|
1158
|
-
"ResourceType":{"shape":"ResourceType"},
|
1159
|
-
"ResourceName":{"shape":"ResourceName"}
|
1160
|
-
}
|
1161
|
-
},
|
1162
|
-
"AggregatedSourceStatus":{
|
1163
|
-
"type":"structure",
|
1164
|
-
"members":{
|
1165
|
-
"SourceId":{"shape":"String"},
|
1166
|
-
"SourceType":{"shape":"AggregatedSourceType"},
|
1167
|
-
"AwsRegion":{"shape":"AwsRegion"},
|
1168
|
-
"LastUpdateStatus":{"shape":"AggregatedSourceStatusType"},
|
1169
|
-
"LastUpdateTime":{"shape":"Date"},
|
1170
|
-
"LastErrorCode":{"shape":"String"},
|
1171
|
-
"LastErrorMessage":{"shape":"String"}
|
1172
|
-
}
|
1173
|
-
},
|
1174
|
-
"AggregatedSourceStatusList":{
|
1175
|
-
"type":"list",
|
1176
|
-
"member":{"shape":"AggregatedSourceStatus"}
|
1177
|
-
},
|
1178
|
-
"AggregatedSourceStatusType":{
|
1179
|
-
"type":"string",
|
1180
|
-
"enum":[
|
1181
|
-
"FAILED",
|
1182
|
-
"SUCCEEDED",
|
1183
|
-
"OUTDATED"
|
1184
|
-
]
|
1185
|
-
},
|
1186
|
-
"AggregatedSourceStatusTypeList":{
|
1187
|
-
"type":"list",
|
1188
|
-
"member":{"shape":"AggregatedSourceStatusType"},
|
1189
|
-
"min":1
|
1190
|
-
},
|
1191
|
-
"AggregatedSourceType":{
|
1192
|
-
"type":"string",
|
1193
|
-
"enum":[
|
1194
|
-
"ACCOUNT",
|
1195
|
-
"ORGANIZATION"
|
1196
|
-
]
|
1197
|
-
},
|
1198
|
-
"AggregationAuthorization":{
|
1199
|
-
"type":"structure",
|
1200
|
-
"members":{
|
1201
|
-
"AggregationAuthorizationArn":{"shape":"String"},
|
1202
|
-
"AuthorizedAccountId":{"shape":"AccountId"},
|
1203
|
-
"AuthorizedAwsRegion":{"shape":"AwsRegion"},
|
1204
|
-
"CreationTime":{"shape":"Date"}
|
1205
|
-
}
|
1206
|
-
},
|
1207
|
-
"AggregationAuthorizationList":{
|
1208
|
-
"type":"list",
|
1209
|
-
"member":{"shape":"AggregationAuthorization"}
|
1210
|
-
},
|
1211
|
-
"AggregatorRegionList":{
|
1212
|
-
"type":"list",
|
1213
|
-
"member":{"shape":"String"},
|
1214
|
-
"min":1
|
1215
|
-
},
|
1216
|
-
"AllSupported":{"type":"boolean"},
|
1217
|
-
"AmazonResourceName":{
|
1218
|
-
"type":"string",
|
1219
|
-
"max":256,
|
1220
|
-
"min":1
|
1221
|
-
},
|
1222
|
-
"Annotation":{
|
1223
|
-
"type":"string",
|
1224
|
-
"max":256,
|
1225
|
-
"min":0
|
1226
|
-
},
|
1227
|
-
"AutoRemediationAttemptSeconds":{
|
1228
|
-
"type":"long",
|
1229
|
-
"box":true,
|
1230
|
-
"max":2678000,
|
1231
|
-
"min":1
|
1232
|
-
},
|
1233
|
-
"AutoRemediationAttempts":{
|
1234
|
-
"type":"integer",
|
1235
|
-
"box":true,
|
1236
|
-
"max":25,
|
1237
|
-
"min":1
|
1238
|
-
},
|
1239
|
-
"AvailabilityZone":{"type":"string"},
|
1240
|
-
"AwsRegion":{
|
1241
|
-
"type":"string",
|
1242
|
-
"max":64,
|
1243
|
-
"min":1
|
1244
|
-
},
|
1245
|
-
"BaseConfigurationItem":{
|
1246
|
-
"type":"structure",
|
1247
|
-
"members":{
|
1248
|
-
"version":{"shape":"Version"},
|
1249
|
-
"accountId":{"shape":"AccountId"},
|
1250
|
-
"configurationItemCaptureTime":{"shape":"ConfigurationItemCaptureTime"},
|
1251
|
-
"configurationItemStatus":{"shape":"ConfigurationItemStatus"},
|
1252
|
-
"configurationStateId":{"shape":"ConfigurationStateId"},
|
1253
|
-
"arn":{"shape":"ARN"},
|
1254
|
-
"resourceType":{"shape":"ResourceType"},
|
1255
|
-
"resourceId":{"shape":"ResourceId"},
|
1256
|
-
"resourceName":{"shape":"ResourceName"},
|
1257
|
-
"awsRegion":{"shape":"AwsRegion"},
|
1258
|
-
"availabilityZone":{"shape":"AvailabilityZone"},
|
1259
|
-
"resourceCreationTime":{"shape":"ResourceCreationTime"},
|
1260
|
-
"configuration":{"shape":"Configuration"},
|
1261
|
-
"supplementaryConfiguration":{"shape":"SupplementaryConfiguration"}
|
1262
|
-
}
|
1263
|
-
},
|
1264
|
-
"BaseConfigurationItems":{
|
1265
|
-
"type":"list",
|
1266
|
-
"member":{"shape":"BaseConfigurationItem"}
|
1267
|
-
},
|
1268
|
-
"BaseResourceId":{
|
1269
|
-
"type":"string",
|
1270
|
-
"max":768,
|
1271
|
-
"min":1
|
1272
|
-
},
|
1273
|
-
"BatchGetAggregateResourceConfigRequest":{
|
1274
|
-
"type":"structure",
|
1275
|
-
"required":[
|
1276
|
-
"ConfigurationAggregatorName",
|
1277
|
-
"ResourceIdentifiers"
|
1278
|
-
],
|
1279
|
-
"members":{
|
1280
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
1281
|
-
"ResourceIdentifiers":{"shape":"ResourceIdentifiersList"}
|
1282
|
-
}
|
1283
|
-
},
|
1284
|
-
"BatchGetAggregateResourceConfigResponse":{
|
1285
|
-
"type":"structure",
|
1286
|
-
"members":{
|
1287
|
-
"BaseConfigurationItems":{"shape":"BaseConfigurationItems"},
|
1288
|
-
"UnprocessedResourceIdentifiers":{"shape":"UnprocessedResourceIdentifierList"}
|
1289
|
-
}
|
1290
|
-
},
|
1291
|
-
"BatchGetResourceConfigRequest":{
|
1292
|
-
"type":"structure",
|
1293
|
-
"required":["resourceKeys"],
|
1294
|
-
"members":{
|
1295
|
-
"resourceKeys":{"shape":"ResourceKeys"}
|
1296
|
-
}
|
1297
|
-
},
|
1298
|
-
"BatchGetResourceConfigResponse":{
|
1299
|
-
"type":"structure",
|
1300
|
-
"members":{
|
1301
|
-
"baseConfigurationItems":{"shape":"BaseConfigurationItems"},
|
1302
|
-
"unprocessedResourceKeys":{"shape":"ResourceKeys"}
|
1303
|
-
}
|
1304
|
-
},
|
1305
|
-
"Boolean":{"type":"boolean"},
|
1306
|
-
"ChannelName":{
|
1307
|
-
"type":"string",
|
1308
|
-
"max":256,
|
1309
|
-
"min":1
|
1310
|
-
},
|
1311
|
-
"ChronologicalOrder":{
|
1312
|
-
"type":"string",
|
1313
|
-
"enum":[
|
1314
|
-
"Reverse",
|
1315
|
-
"Forward"
|
1316
|
-
]
|
1317
|
-
},
|
1318
|
-
"Compliance":{
|
1319
|
-
"type":"structure",
|
1320
|
-
"members":{
|
1321
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
1322
|
-
"ComplianceContributorCount":{"shape":"ComplianceContributorCount"}
|
1323
|
-
}
|
1324
|
-
},
|
1325
|
-
"ComplianceByConfigRule":{
|
1326
|
-
"type":"structure",
|
1327
|
-
"members":{
|
1328
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
1329
|
-
"Compliance":{"shape":"Compliance"}
|
1330
|
-
}
|
1331
|
-
},
|
1332
|
-
"ComplianceByConfigRules":{
|
1333
|
-
"type":"list",
|
1334
|
-
"member":{"shape":"ComplianceByConfigRule"}
|
1335
|
-
},
|
1336
|
-
"ComplianceByResource":{
|
1337
|
-
"type":"structure",
|
1338
|
-
"members":{
|
1339
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
1340
|
-
"ResourceId":{"shape":"BaseResourceId"},
|
1341
|
-
"Compliance":{"shape":"Compliance"}
|
1342
|
-
}
|
1343
|
-
},
|
1344
|
-
"ComplianceByResources":{
|
1345
|
-
"type":"list",
|
1346
|
-
"member":{"shape":"ComplianceByResource"}
|
1347
|
-
},
|
1348
|
-
"ComplianceContributorCount":{
|
1349
|
-
"type":"structure",
|
1350
|
-
"members":{
|
1351
|
-
"CappedCount":{"shape":"Integer"},
|
1352
|
-
"CapExceeded":{"shape":"Boolean"}
|
1353
|
-
}
|
1354
|
-
},
|
1355
|
-
"ComplianceResourceTypes":{
|
1356
|
-
"type":"list",
|
1357
|
-
"member":{"shape":"StringWithCharLimit256"},
|
1358
|
-
"max":100,
|
1359
|
-
"min":0
|
1360
|
-
},
|
1361
|
-
"ComplianceSummariesByResourceType":{
|
1362
|
-
"type":"list",
|
1363
|
-
"member":{"shape":"ComplianceSummaryByResourceType"}
|
1364
|
-
},
|
1365
|
-
"ComplianceSummary":{
|
1366
|
-
"type":"structure",
|
1367
|
-
"members":{
|
1368
|
-
"CompliantResourceCount":{"shape":"ComplianceContributorCount"},
|
1369
|
-
"NonCompliantResourceCount":{"shape":"ComplianceContributorCount"},
|
1370
|
-
"ComplianceSummaryTimestamp":{"shape":"Date"}
|
1371
|
-
}
|
1372
|
-
},
|
1373
|
-
"ComplianceSummaryByResourceType":{
|
1374
|
-
"type":"structure",
|
1375
|
-
"members":{
|
1376
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
1377
|
-
"ComplianceSummary":{"shape":"ComplianceSummary"}
|
1378
|
-
}
|
1379
|
-
},
|
1380
|
-
"ComplianceType":{
|
1381
|
-
"type":"string",
|
1382
|
-
"enum":[
|
1383
|
-
"COMPLIANT",
|
1384
|
-
"NON_COMPLIANT",
|
1385
|
-
"NOT_APPLICABLE",
|
1386
|
-
"INSUFFICIENT_DATA"
|
1387
|
-
]
|
1388
|
-
},
|
1389
|
-
"ComplianceTypes":{
|
1390
|
-
"type":"list",
|
1391
|
-
"member":{"shape":"ComplianceType"},
|
1392
|
-
"max":3,
|
1393
|
-
"min":0
|
1394
|
-
},
|
1395
|
-
"ConfigExportDeliveryInfo":{
|
1396
|
-
"type":"structure",
|
1397
|
-
"members":{
|
1398
|
-
"lastStatus":{"shape":"DeliveryStatus"},
|
1399
|
-
"lastErrorCode":{"shape":"String"},
|
1400
|
-
"lastErrorMessage":{"shape":"String"},
|
1401
|
-
"lastAttemptTime":{"shape":"Date"},
|
1402
|
-
"lastSuccessfulTime":{"shape":"Date"},
|
1403
|
-
"nextDeliveryTime":{"shape":"Date"}
|
1404
|
-
}
|
1405
|
-
},
|
1406
|
-
"ConfigRule":{
|
1407
|
-
"type":"structure",
|
1408
|
-
"required":["Source"],
|
1409
|
-
"members":{
|
1410
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
1411
|
-
"ConfigRuleArn":{"shape":"String"},
|
1412
|
-
"ConfigRuleId":{"shape":"String"},
|
1413
|
-
"Description":{"shape":"EmptiableStringWithCharLimit256"},
|
1414
|
-
"Scope":{"shape":"Scope"},
|
1415
|
-
"Source":{"shape":"Source"},
|
1416
|
-
"InputParameters":{"shape":"StringWithCharLimit1024"},
|
1417
|
-
"MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
|
1418
|
-
"ConfigRuleState":{"shape":"ConfigRuleState"},
|
1419
|
-
"CreatedBy":{"shape":"StringWithCharLimit256"}
|
1420
|
-
}
|
1421
|
-
},
|
1422
|
-
"ConfigRuleComplianceFilters":{
|
1423
|
-
"type":"structure",
|
1424
|
-
"members":{
|
1425
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
1426
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
1427
|
-
"AccountId":{"shape":"AccountId"},
|
1428
|
-
"AwsRegion":{"shape":"AwsRegion"}
|
1429
|
-
}
|
1430
|
-
},
|
1431
|
-
"ConfigRuleComplianceSummaryFilters":{
|
1432
|
-
"type":"structure",
|
1433
|
-
"members":{
|
1434
|
-
"AccountId":{"shape":"AccountId"},
|
1435
|
-
"AwsRegion":{"shape":"AwsRegion"}
|
1436
|
-
}
|
1437
|
-
},
|
1438
|
-
"ConfigRuleComplianceSummaryGroupKey":{
|
1439
|
-
"type":"string",
|
1440
|
-
"enum":[
|
1441
|
-
"ACCOUNT_ID",
|
1442
|
-
"AWS_REGION"
|
1443
|
-
]
|
1444
|
-
},
|
1445
|
-
"ConfigRuleEvaluationStatus":{
|
1446
|
-
"type":"structure",
|
1447
|
-
"members":{
|
1448
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
1449
|
-
"ConfigRuleArn":{"shape":"String"},
|
1450
|
-
"ConfigRuleId":{"shape":"String"},
|
1451
|
-
"LastSuccessfulInvocationTime":{"shape":"Date"},
|
1452
|
-
"LastFailedInvocationTime":{"shape":"Date"},
|
1453
|
-
"LastSuccessfulEvaluationTime":{"shape":"Date"},
|
1454
|
-
"LastFailedEvaluationTime":{"shape":"Date"},
|
1455
|
-
"FirstActivatedTime":{"shape":"Date"},
|
1456
|
-
"LastErrorCode":{"shape":"String"},
|
1457
|
-
"LastErrorMessage":{"shape":"String"},
|
1458
|
-
"FirstEvaluationStarted":{"shape":"Boolean"}
|
1459
|
-
}
|
1460
|
-
},
|
1461
|
-
"ConfigRuleEvaluationStatusList":{
|
1462
|
-
"type":"list",
|
1463
|
-
"member":{"shape":"ConfigRuleEvaluationStatus"}
|
1464
|
-
},
|
1465
|
-
"ConfigRuleName":{
|
1466
|
-
"type":"string",
|
1467
|
-
"max":128,
|
1468
|
-
"min":1,
|
1469
|
-
"pattern":".*\\S.*"
|
1470
|
-
},
|
1471
|
-
"ConfigRuleNames":{
|
1472
|
-
"type":"list",
|
1473
|
-
"member":{"shape":"ConfigRuleName"},
|
1474
|
-
"max":25,
|
1475
|
-
"min":0
|
1476
|
-
},
|
1477
|
-
"ConfigRuleState":{
|
1478
|
-
"type":"string",
|
1479
|
-
"enum":[
|
1480
|
-
"ACTIVE",
|
1481
|
-
"DELETING",
|
1482
|
-
"DELETING_RESULTS",
|
1483
|
-
"EVALUATING"
|
1484
|
-
]
|
1485
|
-
},
|
1486
|
-
"ConfigRules":{
|
1487
|
-
"type":"list",
|
1488
|
-
"member":{"shape":"ConfigRule"}
|
1489
|
-
},
|
1490
|
-
"ConfigSnapshotDeliveryProperties":{
|
1491
|
-
"type":"structure",
|
1492
|
-
"members":{
|
1493
|
-
"deliveryFrequency":{"shape":"MaximumExecutionFrequency"}
|
1494
|
-
}
|
1495
|
-
},
|
1496
|
-
"ConfigStreamDeliveryInfo":{
|
1497
|
-
"type":"structure",
|
1498
|
-
"members":{
|
1499
|
-
"lastStatus":{"shape":"DeliveryStatus"},
|
1500
|
-
"lastErrorCode":{"shape":"String"},
|
1501
|
-
"lastErrorMessage":{"shape":"String"},
|
1502
|
-
"lastStatusChangeTime":{"shape":"Date"}
|
1503
|
-
}
|
1504
|
-
},
|
1505
|
-
"Configuration":{"type":"string"},
|
1506
|
-
"ConfigurationAggregator":{
|
1507
|
-
"type":"structure",
|
1508
|
-
"members":{
|
1509
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
1510
|
-
"ConfigurationAggregatorArn":{"shape":"ConfigurationAggregatorArn"},
|
1511
|
-
"AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
|
1512
|
-
"OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
|
1513
|
-
"CreationTime":{"shape":"Date"},
|
1514
|
-
"LastUpdatedTime":{"shape":"Date"}
|
1515
|
-
}
|
1516
|
-
},
|
1517
|
-
"ConfigurationAggregatorArn":{
|
1518
|
-
"type":"string",
|
1519
|
-
"pattern":"arn:aws[a-z\\-]*:config:[a-z\\-\\d]+:\\d+:config-aggregator/config-aggregator-[a-z\\d]+"
|
1520
|
-
},
|
1521
|
-
"ConfigurationAggregatorList":{
|
1522
|
-
"type":"list",
|
1523
|
-
"member":{"shape":"ConfigurationAggregator"}
|
1524
|
-
},
|
1525
|
-
"ConfigurationAggregatorName":{
|
1526
|
-
"type":"string",
|
1527
|
-
"max":256,
|
1528
|
-
"min":1,
|
1529
|
-
"pattern":"[\\w\\-]+"
|
1530
|
-
},
|
1531
|
-
"ConfigurationAggregatorNameList":{
|
1532
|
-
"type":"list",
|
1533
|
-
"member":{"shape":"ConfigurationAggregatorName"},
|
1534
|
-
"max":10,
|
1535
|
-
"min":0
|
1536
|
-
},
|
1537
|
-
"ConfigurationItem":{
|
1538
|
-
"type":"structure",
|
1539
|
-
"members":{
|
1540
|
-
"version":{"shape":"Version"},
|
1541
|
-
"accountId":{"shape":"AccountId"},
|
1542
|
-
"configurationItemCaptureTime":{"shape":"ConfigurationItemCaptureTime"},
|
1543
|
-
"configurationItemStatus":{"shape":"ConfigurationItemStatus"},
|
1544
|
-
"configurationStateId":{"shape":"ConfigurationStateId"},
|
1545
|
-
"configurationItemMD5Hash":{"shape":"ConfigurationItemMD5Hash"},
|
1546
|
-
"arn":{"shape":"ARN"},
|
1547
|
-
"resourceType":{"shape":"ResourceType"},
|
1548
|
-
"resourceId":{"shape":"ResourceId"},
|
1549
|
-
"resourceName":{"shape":"ResourceName"},
|
1550
|
-
"awsRegion":{"shape":"AwsRegion"},
|
1551
|
-
"availabilityZone":{"shape":"AvailabilityZone"},
|
1552
|
-
"resourceCreationTime":{"shape":"ResourceCreationTime"},
|
1553
|
-
"tags":{"shape":"Tags"},
|
1554
|
-
"relatedEvents":{"shape":"RelatedEventList"},
|
1555
|
-
"relationships":{"shape":"RelationshipList"},
|
1556
|
-
"configuration":{"shape":"Configuration"},
|
1557
|
-
"supplementaryConfiguration":{"shape":"SupplementaryConfiguration"}
|
1558
|
-
}
|
1559
|
-
},
|
1560
|
-
"ConfigurationItemCaptureTime":{"type":"timestamp"},
|
1561
|
-
"ConfigurationItemList":{
|
1562
|
-
"type":"list",
|
1563
|
-
"member":{"shape":"ConfigurationItem"}
|
1564
|
-
},
|
1565
|
-
"ConfigurationItemMD5Hash":{"type":"string"},
|
1566
|
-
"ConfigurationItemStatus":{
|
1567
|
-
"type":"string",
|
1568
|
-
"enum":[
|
1569
|
-
"OK",
|
1570
|
-
"ResourceDiscovered",
|
1571
|
-
"ResourceNotRecorded",
|
1572
|
-
"ResourceDeleted",
|
1573
|
-
"ResourceDeletedNotRecorded"
|
1574
|
-
]
|
1575
|
-
},
|
1576
|
-
"ConfigurationRecorder":{
|
1577
|
-
"type":"structure",
|
1578
|
-
"members":{
|
1579
|
-
"name":{"shape":"RecorderName"},
|
1580
|
-
"roleARN":{"shape":"String"},
|
1581
|
-
"recordingGroup":{"shape":"RecordingGroup"}
|
1582
|
-
}
|
1583
|
-
},
|
1584
|
-
"ConfigurationRecorderList":{
|
1585
|
-
"type":"list",
|
1586
|
-
"member":{"shape":"ConfigurationRecorder"}
|
1587
|
-
},
|
1588
|
-
"ConfigurationRecorderNameList":{
|
1589
|
-
"type":"list",
|
1590
|
-
"member":{"shape":"RecorderName"}
|
1591
|
-
},
|
1592
|
-
"ConfigurationRecorderStatus":{
|
1593
|
-
"type":"structure",
|
1594
|
-
"members":{
|
1595
|
-
"name":{"shape":"String"},
|
1596
|
-
"lastStartTime":{"shape":"Date"},
|
1597
|
-
"lastStopTime":{"shape":"Date"},
|
1598
|
-
"recording":{"shape":"Boolean"},
|
1599
|
-
"lastStatus":{"shape":"RecorderStatus"},
|
1600
|
-
"lastErrorCode":{"shape":"String"},
|
1601
|
-
"lastErrorMessage":{"shape":"String"},
|
1602
|
-
"lastStatusChangeTime":{"shape":"Date"}
|
1603
|
-
}
|
1604
|
-
},
|
1605
|
-
"ConfigurationRecorderStatusList":{
|
1606
|
-
"type":"list",
|
1607
|
-
"member":{"shape":"ConfigurationRecorderStatus"}
|
1608
|
-
},
|
1609
|
-
"ConfigurationStateId":{"type":"string"},
|
1610
|
-
"ConformancePackArn":{
|
1611
|
-
"type":"string",
|
1612
|
-
"max":2048,
|
1613
|
-
"min":1
|
1614
|
-
},
|
1615
|
-
"ConformancePackComplianceFilters":{
|
1616
|
-
"type":"structure",
|
1617
|
-
"members":{
|
1618
|
-
"ConfigRuleNames":{"shape":"ConformancePackConfigRuleNames"},
|
1619
|
-
"ComplianceType":{"shape":"ConformancePackComplianceType"}
|
1620
|
-
}
|
1621
|
-
},
|
1622
|
-
"ConformancePackComplianceResourceIds":{
|
1623
|
-
"type":"list",
|
1624
|
-
"member":{"shape":"StringWithCharLimit256"},
|
1625
|
-
"max":5,
|
1626
|
-
"min":0
|
1627
|
-
},
|
1628
|
-
"ConformancePackComplianceSummary":{
|
1629
|
-
"type":"structure",
|
1630
|
-
"required":[
|
1631
|
-
"ConformancePackName",
|
1632
|
-
"ConformancePackComplianceStatus"
|
1633
|
-
],
|
1634
|
-
"members":{
|
1635
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
1636
|
-
"ConformancePackComplianceStatus":{"shape":"ConformancePackComplianceType"}
|
1637
|
-
}
|
1638
|
-
},
|
1639
|
-
"ConformancePackComplianceSummaryList":{
|
1640
|
-
"type":"list",
|
1641
|
-
"member":{"shape":"ConformancePackComplianceSummary"},
|
1642
|
-
"max":5,
|
1643
|
-
"min":1
|
1644
|
-
},
|
1645
|
-
"ConformancePackComplianceType":{
|
1646
|
-
"type":"string",
|
1647
|
-
"enum":[
|
1648
|
-
"COMPLIANT",
|
1649
|
-
"NON_COMPLIANT"
|
1650
|
-
]
|
1651
|
-
},
|
1652
|
-
"ConformancePackConfigRuleNames":{
|
1653
|
-
"type":"list",
|
1654
|
-
"member":{"shape":"StringWithCharLimit64"},
|
1655
|
-
"max":10,
|
1656
|
-
"min":0
|
1657
|
-
},
|
1658
|
-
"ConformancePackDetail":{
|
1659
|
-
"type":"structure",
|
1660
|
-
"required":[
|
1661
|
-
"ConformancePackName",
|
1662
|
-
"ConformancePackArn",
|
1663
|
-
"ConformancePackId",
|
1664
|
-
"DeliveryS3Bucket"
|
1665
|
-
],
|
1666
|
-
"members":{
|
1667
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
1668
|
-
"ConformancePackArn":{"shape":"ConformancePackArn"},
|
1669
|
-
"ConformancePackId":{"shape":"ConformancePackId"},
|
1670
|
-
"DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
|
1671
|
-
"DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
|
1672
|
-
"ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
|
1673
|
-
"LastUpdateRequestedTime":{"shape":"Date"},
|
1674
|
-
"CreatedBy":{"shape":"StringWithCharLimit256"}
|
1675
|
-
}
|
1676
|
-
},
|
1677
|
-
"ConformancePackDetailList":{
|
1678
|
-
"type":"list",
|
1679
|
-
"member":{"shape":"ConformancePackDetail"},
|
1680
|
-
"max":25,
|
1681
|
-
"min":0
|
1682
|
-
},
|
1683
|
-
"ConformancePackEvaluationFilters":{
|
1684
|
-
"type":"structure",
|
1685
|
-
"members":{
|
1686
|
-
"ConfigRuleNames":{"shape":"ConformancePackConfigRuleNames"},
|
1687
|
-
"ComplianceType":{"shape":"ConformancePackComplianceType"},
|
1688
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
1689
|
-
"ResourceIds":{"shape":"ConformancePackComplianceResourceIds"}
|
1690
|
-
}
|
1691
|
-
},
|
1692
|
-
"ConformancePackEvaluationResult":{
|
1693
|
-
"type":"structure",
|
1694
|
-
"required":[
|
1695
|
-
"ComplianceType",
|
1696
|
-
"EvaluationResultIdentifier",
|
1697
|
-
"ConfigRuleInvokedTime",
|
1698
|
-
"ResultRecordedTime"
|
1699
|
-
],
|
1700
|
-
"members":{
|
1701
|
-
"ComplianceType":{"shape":"ConformancePackComplianceType"},
|
1702
|
-
"EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
|
1703
|
-
"ConfigRuleInvokedTime":{"shape":"Date"},
|
1704
|
-
"ResultRecordedTime":{"shape":"Date"},
|
1705
|
-
"Annotation":{"shape":"Annotation"}
|
1706
|
-
}
|
1707
|
-
},
|
1708
|
-
"ConformancePackId":{
|
1709
|
-
"type":"string",
|
1710
|
-
"max":1024,
|
1711
|
-
"min":1
|
1712
|
-
},
|
1713
|
-
"ConformancePackInputParameter":{
|
1714
|
-
"type":"structure",
|
1715
|
-
"required":[
|
1716
|
-
"ParameterName",
|
1717
|
-
"ParameterValue"
|
1718
|
-
],
|
1719
|
-
"members":{
|
1720
|
-
"ParameterName":{"shape":"ParameterName"},
|
1721
|
-
"ParameterValue":{"shape":"ParameterValue"}
|
1722
|
-
}
|
1723
|
-
},
|
1724
|
-
"ConformancePackInputParameters":{
|
1725
|
-
"type":"list",
|
1726
|
-
"member":{"shape":"ConformancePackInputParameter"},
|
1727
|
-
"max":60,
|
1728
|
-
"min":0
|
1729
|
-
},
|
1730
|
-
"ConformancePackName":{
|
1731
|
-
"type":"string",
|
1732
|
-
"max":256,
|
1733
|
-
"min":1,
|
1734
|
-
"pattern":"[a-zA-Z][-a-zA-Z0-9]*"
|
1735
|
-
},
|
1736
|
-
"ConformancePackNamesList":{
|
1737
|
-
"type":"list",
|
1738
|
-
"member":{"shape":"ConformancePackName"},
|
1739
|
-
"max":25,
|
1740
|
-
"min":0
|
1741
|
-
},
|
1742
|
-
"ConformancePackNamesToSummarizeList":{
|
1743
|
-
"type":"list",
|
1744
|
-
"member":{"shape":"ConformancePackName"},
|
1745
|
-
"max":5,
|
1746
|
-
"min":1
|
1747
|
-
},
|
1748
|
-
"ConformancePackRuleCompliance":{
|
1749
|
-
"type":"structure",
|
1750
|
-
"members":{
|
1751
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
1752
|
-
"ComplianceType":{"shape":"ConformancePackComplianceType"}
|
1753
|
-
}
|
1754
|
-
},
|
1755
|
-
"ConformancePackRuleComplianceList":{
|
1756
|
-
"type":"list",
|
1757
|
-
"member":{"shape":"ConformancePackRuleCompliance"},
|
1758
|
-
"max":1000,
|
1759
|
-
"min":0
|
1760
|
-
},
|
1761
|
-
"ConformancePackRuleEvaluationResultsList":{
|
1762
|
-
"type":"list",
|
1763
|
-
"member":{"shape":"ConformancePackEvaluationResult"},
|
1764
|
-
"max":100,
|
1765
|
-
"min":0
|
1766
|
-
},
|
1767
|
-
"ConformancePackState":{
|
1768
|
-
"type":"string",
|
1769
|
-
"enum":[
|
1770
|
-
"CREATE_IN_PROGRESS",
|
1771
|
-
"CREATE_COMPLETE",
|
1772
|
-
"CREATE_FAILED",
|
1773
|
-
"DELETE_IN_PROGRESS",
|
1774
|
-
"DELETE_FAILED"
|
1775
|
-
]
|
1776
|
-
},
|
1777
|
-
"ConformancePackStatusDetail":{
|
1778
|
-
"type":"structure",
|
1779
|
-
"required":[
|
1780
|
-
"ConformancePackName",
|
1781
|
-
"ConformancePackId",
|
1782
|
-
"ConformancePackArn",
|
1783
|
-
"ConformancePackState",
|
1784
|
-
"StackArn",
|
1785
|
-
"LastUpdateRequestedTime"
|
1786
|
-
],
|
1787
|
-
"members":{
|
1788
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
1789
|
-
"ConformancePackId":{"shape":"ConformancePackId"},
|
1790
|
-
"ConformancePackArn":{"shape":"ConformancePackArn"},
|
1791
|
-
"ConformancePackState":{"shape":"ConformancePackState"},
|
1792
|
-
"StackArn":{"shape":"StackArn"},
|
1793
|
-
"ConformancePackStatusReason":{"shape":"ConformancePackStatusReason"},
|
1794
|
-
"LastUpdateRequestedTime":{"shape":"Date"},
|
1795
|
-
"LastUpdateCompletedTime":{"shape":"Date"}
|
1796
|
-
}
|
1797
|
-
},
|
1798
|
-
"ConformancePackStatusDetailsList":{
|
1799
|
-
"type":"list",
|
1800
|
-
"member":{"shape":"ConformancePackStatusDetail"},
|
1801
|
-
"max":25,
|
1802
|
-
"min":0
|
1803
|
-
},
|
1804
|
-
"ConformancePackStatusReason":{
|
1805
|
-
"type":"string",
|
1806
|
-
"max":2000,
|
1807
|
-
"min":0
|
1808
|
-
},
|
1809
|
-
"ConformancePackTemplateValidationException":{
|
1810
|
-
"type":"structure",
|
1811
|
-
"members":{
|
1812
|
-
},
|
1813
|
-
"exception":true
|
1814
|
-
},
|
1815
|
-
"CosmosPageLimit":{
|
1816
|
-
"type":"integer",
|
1817
|
-
"max":100,
|
1818
|
-
"min":0
|
1819
|
-
},
|
1820
|
-
"Date":{"type":"timestamp"},
|
1821
|
-
"DeleteAggregationAuthorizationRequest":{
|
1822
|
-
"type":"structure",
|
1823
|
-
"required":[
|
1824
|
-
"AuthorizedAccountId",
|
1825
|
-
"AuthorizedAwsRegion"
|
1826
|
-
],
|
1827
|
-
"members":{
|
1828
|
-
"AuthorizedAccountId":{"shape":"AccountId"},
|
1829
|
-
"AuthorizedAwsRegion":{"shape":"AwsRegion"}
|
1830
|
-
}
|
1831
|
-
},
|
1832
|
-
"DeleteConfigRuleRequest":{
|
1833
|
-
"type":"structure",
|
1834
|
-
"required":["ConfigRuleName"],
|
1835
|
-
"members":{
|
1836
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"}
|
1837
|
-
}
|
1838
|
-
},
|
1839
|
-
"DeleteConfigurationAggregatorRequest":{
|
1840
|
-
"type":"structure",
|
1841
|
-
"required":["ConfigurationAggregatorName"],
|
1842
|
-
"members":{
|
1843
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"}
|
1844
|
-
}
|
1845
|
-
},
|
1846
|
-
"DeleteConfigurationRecorderRequest":{
|
1847
|
-
"type":"structure",
|
1848
|
-
"required":["ConfigurationRecorderName"],
|
1849
|
-
"members":{
|
1850
|
-
"ConfigurationRecorderName":{"shape":"RecorderName"}
|
1851
|
-
}
|
1852
|
-
},
|
1853
|
-
"DeleteConformancePackRequest":{
|
1854
|
-
"type":"structure",
|
1855
|
-
"required":["ConformancePackName"],
|
1856
|
-
"members":{
|
1857
|
-
"ConformancePackName":{"shape":"ConformancePackName"}
|
1858
|
-
}
|
1859
|
-
},
|
1860
|
-
"DeleteDeliveryChannelRequest":{
|
1861
|
-
"type":"structure",
|
1862
|
-
"required":["DeliveryChannelName"],
|
1863
|
-
"members":{
|
1864
|
-
"DeliveryChannelName":{"shape":"ChannelName"}
|
1865
|
-
}
|
1866
|
-
},
|
1867
|
-
"DeleteEvaluationResultsRequest":{
|
1868
|
-
"type":"structure",
|
1869
|
-
"required":["ConfigRuleName"],
|
1870
|
-
"members":{
|
1871
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"}
|
1872
|
-
}
|
1873
|
-
},
|
1874
|
-
"DeleteEvaluationResultsResponse":{
|
1875
|
-
"type":"structure",
|
1876
|
-
"members":{
|
1877
|
-
}
|
1878
|
-
},
|
1879
|
-
"DeleteOrganizationConfigRuleRequest":{
|
1880
|
-
"type":"structure",
|
1881
|
-
"required":["OrganizationConfigRuleName"],
|
1882
|
-
"members":{
|
1883
|
-
"OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"}
|
1884
|
-
}
|
1885
|
-
},
|
1886
|
-
"DeleteOrganizationConformancePackRequest":{
|
1887
|
-
"type":"structure",
|
1888
|
-
"required":["OrganizationConformancePackName"],
|
1889
|
-
"members":{
|
1890
|
-
"OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"}
|
1891
|
-
}
|
1892
|
-
},
|
1893
|
-
"DeletePendingAggregationRequestRequest":{
|
1894
|
-
"type":"structure",
|
1895
|
-
"required":[
|
1896
|
-
"RequesterAccountId",
|
1897
|
-
"RequesterAwsRegion"
|
1898
|
-
],
|
1899
|
-
"members":{
|
1900
|
-
"RequesterAccountId":{"shape":"AccountId"},
|
1901
|
-
"RequesterAwsRegion":{"shape":"AwsRegion"}
|
1902
|
-
}
|
1903
|
-
},
|
1904
|
-
"DeleteRemediationConfigurationRequest":{
|
1905
|
-
"type":"structure",
|
1906
|
-
"required":["ConfigRuleName"],
|
1907
|
-
"members":{
|
1908
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
1909
|
-
"ResourceType":{"shape":"String"}
|
1910
|
-
}
|
1911
|
-
},
|
1912
|
-
"DeleteRemediationConfigurationResponse":{
|
1913
|
-
"type":"structure",
|
1914
|
-
"members":{
|
1915
|
-
}
|
1916
|
-
},
|
1917
|
-
"DeleteRemediationExceptionsRequest":{
|
1918
|
-
"type":"structure",
|
1919
|
-
"required":[
|
1920
|
-
"ConfigRuleName",
|
1921
|
-
"ResourceKeys"
|
1922
|
-
],
|
1923
|
-
"members":{
|
1924
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
1925
|
-
"ResourceKeys":{"shape":"RemediationExceptionResourceKeys"}
|
1926
|
-
}
|
1927
|
-
},
|
1928
|
-
"DeleteRemediationExceptionsResponse":{
|
1929
|
-
"type":"structure",
|
1930
|
-
"members":{
|
1931
|
-
"FailedBatches":{"shape":"FailedDeleteRemediationExceptionsBatches"}
|
1932
|
-
}
|
1933
|
-
},
|
1934
|
-
"DeleteResourceConfigRequest":{
|
1935
|
-
"type":"structure",
|
1936
|
-
"required":[
|
1937
|
-
"ResourceType",
|
1938
|
-
"ResourceId"
|
1939
|
-
],
|
1940
|
-
"members":{
|
1941
|
-
"ResourceType":{"shape":"ResourceTypeString"},
|
1942
|
-
"ResourceId":{"shape":"ResourceId"}
|
1943
|
-
}
|
1944
|
-
},
|
1945
|
-
"DeleteRetentionConfigurationRequest":{
|
1946
|
-
"type":"structure",
|
1947
|
-
"required":["RetentionConfigurationName"],
|
1948
|
-
"members":{
|
1949
|
-
"RetentionConfigurationName":{"shape":"RetentionConfigurationName"}
|
1950
|
-
}
|
1951
|
-
},
|
1952
|
-
"DeliverConfigSnapshotRequest":{
|
1953
|
-
"type":"structure",
|
1954
|
-
"required":["deliveryChannelName"],
|
1955
|
-
"members":{
|
1956
|
-
"deliveryChannelName":{"shape":"ChannelName"}
|
1957
|
-
}
|
1958
|
-
},
|
1959
|
-
"DeliverConfigSnapshotResponse":{
|
1960
|
-
"type":"structure",
|
1961
|
-
"members":{
|
1962
|
-
"configSnapshotId":{"shape":"String"}
|
1963
|
-
}
|
1964
|
-
},
|
1965
|
-
"DeliveryChannel":{
|
1966
|
-
"type":"structure",
|
1967
|
-
"members":{
|
1968
|
-
"name":{"shape":"ChannelName"},
|
1969
|
-
"s3BucketName":{"shape":"String"},
|
1970
|
-
"s3KeyPrefix":{"shape":"String"},
|
1971
|
-
"snsTopicARN":{"shape":"String"},
|
1972
|
-
"configSnapshotDeliveryProperties":{"shape":"ConfigSnapshotDeliveryProperties"}
|
1973
|
-
}
|
1974
|
-
},
|
1975
|
-
"DeliveryChannelList":{
|
1976
|
-
"type":"list",
|
1977
|
-
"member":{"shape":"DeliveryChannel"}
|
1978
|
-
},
|
1979
|
-
"DeliveryChannelNameList":{
|
1980
|
-
"type":"list",
|
1981
|
-
"member":{"shape":"ChannelName"}
|
1982
|
-
},
|
1983
|
-
"DeliveryChannelStatus":{
|
1984
|
-
"type":"structure",
|
1985
|
-
"members":{
|
1986
|
-
"name":{"shape":"String"},
|
1987
|
-
"configSnapshotDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
|
1988
|
-
"configHistoryDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
|
1989
|
-
"configStreamDeliveryInfo":{"shape":"ConfigStreamDeliveryInfo"}
|
1990
|
-
}
|
1991
|
-
},
|
1992
|
-
"DeliveryChannelStatusList":{
|
1993
|
-
"type":"list",
|
1994
|
-
"member":{"shape":"DeliveryChannelStatus"}
|
1995
|
-
},
|
1996
|
-
"DeliveryS3Bucket":{
|
1997
|
-
"type":"string",
|
1998
|
-
"max":63,
|
1999
|
-
"min":3
|
2000
|
-
},
|
2001
|
-
"DeliveryS3KeyPrefix":{
|
2002
|
-
"type":"string",
|
2003
|
-
"max":1024,
|
2004
|
-
"min":1
|
2005
|
-
},
|
2006
|
-
"DeliveryStatus":{
|
2007
|
-
"type":"string",
|
2008
|
-
"enum":[
|
2009
|
-
"Success",
|
2010
|
-
"Failure",
|
2011
|
-
"Not_Applicable"
|
2012
|
-
]
|
2013
|
-
},
|
2014
|
-
"DescribeAggregateComplianceByConfigRulesRequest":{
|
2015
|
-
"type":"structure",
|
2016
|
-
"required":["ConfigurationAggregatorName"],
|
2017
|
-
"members":{
|
2018
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2019
|
-
"Filters":{"shape":"ConfigRuleComplianceFilters"},
|
2020
|
-
"Limit":{"shape":"GroupByAPILimit"},
|
2021
|
-
"NextToken":{"shape":"NextToken"}
|
2022
|
-
}
|
2023
|
-
},
|
2024
|
-
"DescribeAggregateComplianceByConfigRulesResponse":{
|
2025
|
-
"type":"structure",
|
2026
|
-
"members":{
|
2027
|
-
"AggregateComplianceByConfigRules":{"shape":"AggregateComplianceByConfigRuleList"},
|
2028
|
-
"NextToken":{"shape":"NextToken"}
|
2029
|
-
}
|
2030
|
-
},
|
2031
|
-
"DescribeAggregationAuthorizationsRequest":{
|
2032
|
-
"type":"structure",
|
2033
|
-
"members":{
|
2034
|
-
"Limit":{"shape":"Limit"},
|
2035
|
-
"NextToken":{"shape":"String"}
|
2036
|
-
}
|
2037
|
-
},
|
2038
|
-
"DescribeAggregationAuthorizationsResponse":{
|
2039
|
-
"type":"structure",
|
2040
|
-
"members":{
|
2041
|
-
"AggregationAuthorizations":{"shape":"AggregationAuthorizationList"},
|
2042
|
-
"NextToken":{"shape":"String"}
|
2043
|
-
}
|
2044
|
-
},
|
2045
|
-
"DescribeComplianceByConfigRuleRequest":{
|
2046
|
-
"type":"structure",
|
2047
|
-
"members":{
|
2048
|
-
"ConfigRuleNames":{"shape":"ConfigRuleNames"},
|
2049
|
-
"ComplianceTypes":{"shape":"ComplianceTypes"},
|
2050
|
-
"NextToken":{"shape":"String"}
|
2051
|
-
}
|
2052
|
-
},
|
2053
|
-
"DescribeComplianceByConfigRuleResponse":{
|
2054
|
-
"type":"structure",
|
2055
|
-
"members":{
|
2056
|
-
"ComplianceByConfigRules":{"shape":"ComplianceByConfigRules"},
|
2057
|
-
"NextToken":{"shape":"String"}
|
2058
|
-
}
|
2059
|
-
},
|
2060
|
-
"DescribeComplianceByResourceRequest":{
|
2061
|
-
"type":"structure",
|
2062
|
-
"members":{
|
2063
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
2064
|
-
"ResourceId":{"shape":"BaseResourceId"},
|
2065
|
-
"ComplianceTypes":{"shape":"ComplianceTypes"},
|
2066
|
-
"Limit":{"shape":"Limit"},
|
2067
|
-
"NextToken":{"shape":"NextToken"}
|
2068
|
-
}
|
2069
|
-
},
|
2070
|
-
"DescribeComplianceByResourceResponse":{
|
2071
|
-
"type":"structure",
|
2072
|
-
"members":{
|
2073
|
-
"ComplianceByResources":{"shape":"ComplianceByResources"},
|
2074
|
-
"NextToken":{"shape":"NextToken"}
|
2075
|
-
}
|
2076
|
-
},
|
2077
|
-
"DescribeConfigRuleEvaluationStatusRequest":{
|
2078
|
-
"type":"structure",
|
2079
|
-
"members":{
|
2080
|
-
"ConfigRuleNames":{"shape":"ConfigRuleNames"},
|
2081
|
-
"NextToken":{"shape":"String"},
|
2082
|
-
"Limit":{"shape":"RuleLimit"}
|
2083
|
-
}
|
2084
|
-
},
|
2085
|
-
"DescribeConfigRuleEvaluationStatusResponse":{
|
2086
|
-
"type":"structure",
|
2087
|
-
"members":{
|
2088
|
-
"ConfigRulesEvaluationStatus":{"shape":"ConfigRuleEvaluationStatusList"},
|
2089
|
-
"NextToken":{"shape":"String"}
|
2090
|
-
}
|
2091
|
-
},
|
2092
|
-
"DescribeConfigRulesRequest":{
|
2093
|
-
"type":"structure",
|
2094
|
-
"members":{
|
2095
|
-
"ConfigRuleNames":{"shape":"ConfigRuleNames"},
|
2096
|
-
"NextToken":{"shape":"String"}
|
2097
|
-
}
|
2098
|
-
},
|
2099
|
-
"DescribeConfigRulesResponse":{
|
2100
|
-
"type":"structure",
|
2101
|
-
"members":{
|
2102
|
-
"ConfigRules":{"shape":"ConfigRules"},
|
2103
|
-
"NextToken":{"shape":"String"}
|
2104
|
-
}
|
2105
|
-
},
|
2106
|
-
"DescribeConfigurationAggregatorSourcesStatusRequest":{
|
2107
|
-
"type":"structure",
|
2108
|
-
"required":["ConfigurationAggregatorName"],
|
2109
|
-
"members":{
|
2110
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2111
|
-
"UpdateStatus":{"shape":"AggregatedSourceStatusTypeList"},
|
2112
|
-
"NextToken":{"shape":"String"},
|
2113
|
-
"Limit":{"shape":"Limit"}
|
2114
|
-
}
|
2115
|
-
},
|
2116
|
-
"DescribeConfigurationAggregatorSourcesStatusResponse":{
|
2117
|
-
"type":"structure",
|
2118
|
-
"members":{
|
2119
|
-
"AggregatedSourceStatusList":{"shape":"AggregatedSourceStatusList"},
|
2120
|
-
"NextToken":{"shape":"String"}
|
2121
|
-
}
|
2122
|
-
},
|
2123
|
-
"DescribeConfigurationAggregatorsRequest":{
|
2124
|
-
"type":"structure",
|
2125
|
-
"members":{
|
2126
|
-
"ConfigurationAggregatorNames":{"shape":"ConfigurationAggregatorNameList"},
|
2127
|
-
"NextToken":{"shape":"String"},
|
2128
|
-
"Limit":{"shape":"Limit"}
|
2129
|
-
}
|
2130
|
-
},
|
2131
|
-
"DescribeConfigurationAggregatorsResponse":{
|
2132
|
-
"type":"structure",
|
2133
|
-
"members":{
|
2134
|
-
"ConfigurationAggregators":{"shape":"ConfigurationAggregatorList"},
|
2135
|
-
"NextToken":{"shape":"String"}
|
2136
|
-
}
|
2137
|
-
},
|
2138
|
-
"DescribeConfigurationRecorderStatusRequest":{
|
2139
|
-
"type":"structure",
|
2140
|
-
"members":{
|
2141
|
-
"ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
|
2142
|
-
}
|
2143
|
-
},
|
2144
|
-
"DescribeConfigurationRecorderStatusResponse":{
|
2145
|
-
"type":"structure",
|
2146
|
-
"members":{
|
2147
|
-
"ConfigurationRecordersStatus":{"shape":"ConfigurationRecorderStatusList"}
|
2148
|
-
}
|
2149
|
-
},
|
2150
|
-
"DescribeConfigurationRecordersRequest":{
|
2151
|
-
"type":"structure",
|
2152
|
-
"members":{
|
2153
|
-
"ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
|
2154
|
-
}
|
2155
|
-
},
|
2156
|
-
"DescribeConfigurationRecordersResponse":{
|
2157
|
-
"type":"structure",
|
2158
|
-
"members":{
|
2159
|
-
"ConfigurationRecorders":{"shape":"ConfigurationRecorderList"}
|
2160
|
-
}
|
2161
|
-
},
|
2162
|
-
"DescribeConformancePackComplianceLimit":{
|
2163
|
-
"type":"integer",
|
2164
|
-
"max":1000,
|
2165
|
-
"min":0
|
2166
|
-
},
|
2167
|
-
"DescribeConformancePackComplianceRequest":{
|
2168
|
-
"type":"structure",
|
2169
|
-
"required":["ConformancePackName"],
|
2170
|
-
"members":{
|
2171
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
2172
|
-
"Filters":{"shape":"ConformancePackComplianceFilters"},
|
2173
|
-
"Limit":{"shape":"DescribeConformancePackComplianceLimit"},
|
2174
|
-
"NextToken":{"shape":"NextToken"}
|
2175
|
-
}
|
2176
|
-
},
|
2177
|
-
"DescribeConformancePackComplianceResponse":{
|
2178
|
-
"type":"structure",
|
2179
|
-
"required":[
|
2180
|
-
"ConformancePackName",
|
2181
|
-
"ConformancePackRuleComplianceList"
|
2182
|
-
],
|
2183
|
-
"members":{
|
2184
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
2185
|
-
"ConformancePackRuleComplianceList":{"shape":"ConformancePackRuleComplianceList"},
|
2186
|
-
"NextToken":{"shape":"NextToken"}
|
2187
|
-
}
|
2188
|
-
},
|
2189
|
-
"DescribeConformancePackStatusRequest":{
|
2190
|
-
"type":"structure",
|
2191
|
-
"members":{
|
2192
|
-
"ConformancePackNames":{"shape":"ConformancePackNamesList"},
|
2193
|
-
"Limit":{"shape":"PageSizeLimit"},
|
2194
|
-
"NextToken":{"shape":"NextToken"}
|
2195
|
-
}
|
2196
|
-
},
|
2197
|
-
"DescribeConformancePackStatusResponse":{
|
2198
|
-
"type":"structure",
|
2199
|
-
"members":{
|
2200
|
-
"ConformancePackStatusDetails":{"shape":"ConformancePackStatusDetailsList"},
|
2201
|
-
"NextToken":{"shape":"NextToken"}
|
2202
|
-
}
|
2203
|
-
},
|
2204
|
-
"DescribeConformancePacksRequest":{
|
2205
|
-
"type":"structure",
|
2206
|
-
"members":{
|
2207
|
-
"ConformancePackNames":{"shape":"ConformancePackNamesList"},
|
2208
|
-
"Limit":{"shape":"PageSizeLimit"},
|
2209
|
-
"NextToken":{"shape":"NextToken"}
|
2210
|
-
}
|
2211
|
-
},
|
2212
|
-
"DescribeConformancePacksResponse":{
|
2213
|
-
"type":"structure",
|
2214
|
-
"members":{
|
2215
|
-
"ConformancePackDetails":{"shape":"ConformancePackDetailList"},
|
2216
|
-
"NextToken":{"shape":"NextToken"}
|
2217
|
-
}
|
2218
|
-
},
|
2219
|
-
"DescribeDeliveryChannelStatusRequest":{
|
2220
|
-
"type":"structure",
|
2221
|
-
"members":{
|
2222
|
-
"DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
|
2223
|
-
}
|
2224
|
-
},
|
2225
|
-
"DescribeDeliveryChannelStatusResponse":{
|
2226
|
-
"type":"structure",
|
2227
|
-
"members":{
|
2228
|
-
"DeliveryChannelsStatus":{"shape":"DeliveryChannelStatusList"}
|
2229
|
-
}
|
2230
|
-
},
|
2231
|
-
"DescribeDeliveryChannelsRequest":{
|
2232
|
-
"type":"structure",
|
2233
|
-
"members":{
|
2234
|
-
"DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
|
2235
|
-
}
|
2236
|
-
},
|
2237
|
-
"DescribeDeliveryChannelsResponse":{
|
2238
|
-
"type":"structure",
|
2239
|
-
"members":{
|
2240
|
-
"DeliveryChannels":{"shape":"DeliveryChannelList"}
|
2241
|
-
}
|
2242
|
-
},
|
2243
|
-
"DescribeOrganizationConfigRuleStatusesRequest":{
|
2244
|
-
"type":"structure",
|
2245
|
-
"members":{
|
2246
|
-
"OrganizationConfigRuleNames":{"shape":"OrganizationConfigRuleNames"},
|
2247
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2248
|
-
"NextToken":{"shape":"String"}
|
2249
|
-
}
|
2250
|
-
},
|
2251
|
-
"DescribeOrganizationConfigRuleStatusesResponse":{
|
2252
|
-
"type":"structure",
|
2253
|
-
"members":{
|
2254
|
-
"OrganizationConfigRuleStatuses":{"shape":"OrganizationConfigRuleStatuses"},
|
2255
|
-
"NextToken":{"shape":"String"}
|
2256
|
-
}
|
2257
|
-
},
|
2258
|
-
"DescribeOrganizationConfigRulesRequest":{
|
2259
|
-
"type":"structure",
|
2260
|
-
"members":{
|
2261
|
-
"OrganizationConfigRuleNames":{"shape":"OrganizationConfigRuleNames"},
|
2262
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2263
|
-
"NextToken":{"shape":"String"}
|
2264
|
-
}
|
2265
|
-
},
|
2266
|
-
"DescribeOrganizationConfigRulesResponse":{
|
2267
|
-
"type":"structure",
|
2268
|
-
"members":{
|
2269
|
-
"OrganizationConfigRules":{"shape":"OrganizationConfigRules"},
|
2270
|
-
"NextToken":{"shape":"String"}
|
2271
|
-
}
|
2272
|
-
},
|
2273
|
-
"DescribeOrganizationConformancePackStatusesRequest":{
|
2274
|
-
"type":"structure",
|
2275
|
-
"members":{
|
2276
|
-
"OrganizationConformancePackNames":{"shape":"OrganizationConformancePackNames"},
|
2277
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2278
|
-
"NextToken":{"shape":"String"}
|
2279
|
-
}
|
2280
|
-
},
|
2281
|
-
"DescribeOrganizationConformancePackStatusesResponse":{
|
2282
|
-
"type":"structure",
|
2283
|
-
"members":{
|
2284
|
-
"OrganizationConformancePackStatuses":{"shape":"OrganizationConformancePackStatuses"},
|
2285
|
-
"NextToken":{"shape":"String"}
|
2286
|
-
}
|
2287
|
-
},
|
2288
|
-
"DescribeOrganizationConformancePacksRequest":{
|
2289
|
-
"type":"structure",
|
2290
|
-
"members":{
|
2291
|
-
"OrganizationConformancePackNames":{"shape":"OrganizationConformancePackNames"},
|
2292
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2293
|
-
"NextToken":{"shape":"String"}
|
2294
|
-
}
|
2295
|
-
},
|
2296
|
-
"DescribeOrganizationConformancePacksResponse":{
|
2297
|
-
"type":"structure",
|
2298
|
-
"members":{
|
2299
|
-
"OrganizationConformancePacks":{"shape":"OrganizationConformancePacks"},
|
2300
|
-
"NextToken":{"shape":"String"}
|
2301
|
-
}
|
2302
|
-
},
|
2303
|
-
"DescribePendingAggregationRequestsLimit":{
|
2304
|
-
"type":"integer",
|
2305
|
-
"max":20,
|
2306
|
-
"min":0
|
2307
|
-
},
|
2308
|
-
"DescribePendingAggregationRequestsRequest":{
|
2309
|
-
"type":"structure",
|
2310
|
-
"members":{
|
2311
|
-
"Limit":{"shape":"DescribePendingAggregationRequestsLimit"},
|
2312
|
-
"NextToken":{"shape":"String"}
|
2313
|
-
}
|
2314
|
-
},
|
2315
|
-
"DescribePendingAggregationRequestsResponse":{
|
2316
|
-
"type":"structure",
|
2317
|
-
"members":{
|
2318
|
-
"PendingAggregationRequests":{"shape":"PendingAggregationRequestList"},
|
2319
|
-
"NextToken":{"shape":"String"}
|
2320
|
-
}
|
2321
|
-
},
|
2322
|
-
"DescribeRemediationConfigurationsRequest":{
|
2323
|
-
"type":"structure",
|
2324
|
-
"required":["ConfigRuleNames"],
|
2325
|
-
"members":{
|
2326
|
-
"ConfigRuleNames":{"shape":"ConfigRuleNames"}
|
2327
|
-
}
|
2328
|
-
},
|
2329
|
-
"DescribeRemediationConfigurationsResponse":{
|
2330
|
-
"type":"structure",
|
2331
|
-
"members":{
|
2332
|
-
"RemediationConfigurations":{"shape":"RemediationConfigurations"}
|
2333
|
-
}
|
2334
|
-
},
|
2335
|
-
"DescribeRemediationExceptionsRequest":{
|
2336
|
-
"type":"structure",
|
2337
|
-
"required":["ConfigRuleName"],
|
2338
|
-
"members":{
|
2339
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
2340
|
-
"ResourceKeys":{"shape":"RemediationExceptionResourceKeys"},
|
2341
|
-
"Limit":{"shape":"Limit"},
|
2342
|
-
"NextToken":{"shape":"String"}
|
2343
|
-
}
|
2344
|
-
},
|
2345
|
-
"DescribeRemediationExceptionsResponse":{
|
2346
|
-
"type":"structure",
|
2347
|
-
"members":{
|
2348
|
-
"RemediationExceptions":{"shape":"RemediationExceptions"},
|
2349
|
-
"NextToken":{"shape":"String"}
|
2350
|
-
}
|
2351
|
-
},
|
2352
|
-
"DescribeRemediationExecutionStatusRequest":{
|
2353
|
-
"type":"structure",
|
2354
|
-
"required":["ConfigRuleName"],
|
2355
|
-
"members":{
|
2356
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
2357
|
-
"ResourceKeys":{"shape":"ResourceKeys"},
|
2358
|
-
"Limit":{"shape":"Limit"},
|
2359
|
-
"NextToken":{"shape":"String"}
|
2360
|
-
}
|
2361
|
-
},
|
2362
|
-
"DescribeRemediationExecutionStatusResponse":{
|
2363
|
-
"type":"structure",
|
2364
|
-
"members":{
|
2365
|
-
"RemediationExecutionStatuses":{"shape":"RemediationExecutionStatuses"},
|
2366
|
-
"NextToken":{"shape":"String"}
|
2367
|
-
}
|
2368
|
-
},
|
2369
|
-
"DescribeRetentionConfigurationsRequest":{
|
2370
|
-
"type":"structure",
|
2371
|
-
"members":{
|
2372
|
-
"RetentionConfigurationNames":{"shape":"RetentionConfigurationNameList"},
|
2373
|
-
"NextToken":{"shape":"NextToken"}
|
2374
|
-
}
|
2375
|
-
},
|
2376
|
-
"DescribeRetentionConfigurationsResponse":{
|
2377
|
-
"type":"structure",
|
2378
|
-
"members":{
|
2379
|
-
"RetentionConfigurations":{"shape":"RetentionConfigurationList"},
|
2380
|
-
"NextToken":{"shape":"NextToken"}
|
2381
|
-
}
|
2382
|
-
},
|
2383
|
-
"DiscoveredResourceIdentifierList":{
|
2384
|
-
"type":"list",
|
2385
|
-
"member":{"shape":"AggregateResourceIdentifier"}
|
2386
|
-
},
|
2387
|
-
"EarlierTime":{"type":"timestamp"},
|
2388
|
-
"EmptiableStringWithCharLimit256":{
|
2389
|
-
"type":"string",
|
2390
|
-
"max":256,
|
2391
|
-
"min":0
|
2392
|
-
},
|
2393
|
-
"Evaluation":{
|
2394
|
-
"type":"structure",
|
2395
|
-
"required":[
|
2396
|
-
"ComplianceResourceType",
|
2397
|
-
"ComplianceResourceId",
|
2398
|
-
"ComplianceType",
|
2399
|
-
"OrderingTimestamp"
|
2400
|
-
],
|
2401
|
-
"members":{
|
2402
|
-
"ComplianceResourceType":{"shape":"StringWithCharLimit256"},
|
2403
|
-
"ComplianceResourceId":{"shape":"BaseResourceId"},
|
2404
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
2405
|
-
"Annotation":{"shape":"StringWithCharLimit256"},
|
2406
|
-
"OrderingTimestamp":{"shape":"OrderingTimestamp"}
|
2407
|
-
}
|
2408
|
-
},
|
2409
|
-
"EvaluationResult":{
|
2410
|
-
"type":"structure",
|
2411
|
-
"members":{
|
2412
|
-
"EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
|
2413
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
2414
|
-
"ResultRecordedTime":{"shape":"Date"},
|
2415
|
-
"ConfigRuleInvokedTime":{"shape":"Date"},
|
2416
|
-
"Annotation":{"shape":"StringWithCharLimit256"},
|
2417
|
-
"ResultToken":{"shape":"String"}
|
2418
|
-
}
|
2419
|
-
},
|
2420
|
-
"EvaluationResultIdentifier":{
|
2421
|
-
"type":"structure",
|
2422
|
-
"members":{
|
2423
|
-
"EvaluationResultQualifier":{"shape":"EvaluationResultQualifier"},
|
2424
|
-
"OrderingTimestamp":{"shape":"Date"}
|
2425
|
-
}
|
2426
|
-
},
|
2427
|
-
"EvaluationResultQualifier":{
|
2428
|
-
"type":"structure",
|
2429
|
-
"members":{
|
2430
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
2431
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
2432
|
-
"ResourceId":{"shape":"BaseResourceId"}
|
2433
|
-
}
|
2434
|
-
},
|
2435
|
-
"EvaluationResults":{
|
2436
|
-
"type":"list",
|
2437
|
-
"member":{"shape":"EvaluationResult"}
|
2438
|
-
},
|
2439
|
-
"Evaluations":{
|
2440
|
-
"type":"list",
|
2441
|
-
"member":{"shape":"Evaluation"},
|
2442
|
-
"max":100,
|
2443
|
-
"min":0
|
2444
|
-
},
|
2445
|
-
"EventSource":{
|
2446
|
-
"type":"string",
|
2447
|
-
"enum":["aws.config"]
|
2448
|
-
},
|
2449
|
-
"ExcludedAccounts":{
|
2450
|
-
"type":"list",
|
2451
|
-
"member":{"shape":"AccountId"},
|
2452
|
-
"max":1000,
|
2453
|
-
"min":0
|
2454
|
-
},
|
2455
|
-
"ExecutionControls":{
|
2456
|
-
"type":"structure",
|
2457
|
-
"members":{
|
2458
|
-
"SsmControls":{"shape":"SsmControls"}
|
2459
|
-
}
|
2460
|
-
},
|
2461
|
-
"Expression":{
|
2462
|
-
"type":"string",
|
2463
|
-
"max":4096,
|
2464
|
-
"min":1
|
2465
|
-
},
|
2466
|
-
"FailedDeleteRemediationExceptionsBatch":{
|
2467
|
-
"type":"structure",
|
2468
|
-
"members":{
|
2469
|
-
"FailureMessage":{"shape":"String"},
|
2470
|
-
"FailedItems":{"shape":"RemediationExceptionResourceKeys"}
|
2471
|
-
}
|
2472
|
-
},
|
2473
|
-
"FailedDeleteRemediationExceptionsBatches":{
|
2474
|
-
"type":"list",
|
2475
|
-
"member":{"shape":"FailedDeleteRemediationExceptionsBatch"}
|
2476
|
-
},
|
2477
|
-
"FailedRemediationBatch":{
|
2478
|
-
"type":"structure",
|
2479
|
-
"members":{
|
2480
|
-
"FailureMessage":{"shape":"String"},
|
2481
|
-
"FailedItems":{"shape":"RemediationConfigurations"}
|
2482
|
-
}
|
2483
|
-
},
|
2484
|
-
"FailedRemediationBatches":{
|
2485
|
-
"type":"list",
|
2486
|
-
"member":{"shape":"FailedRemediationBatch"}
|
2487
|
-
},
|
2488
|
-
"FailedRemediationExceptionBatch":{
|
2489
|
-
"type":"structure",
|
2490
|
-
"members":{
|
2491
|
-
"FailureMessage":{"shape":"String"},
|
2492
|
-
"FailedItems":{"shape":"RemediationExceptions"}
|
2493
|
-
}
|
2494
|
-
},
|
2495
|
-
"FailedRemediationExceptionBatches":{
|
2496
|
-
"type":"list",
|
2497
|
-
"member":{"shape":"FailedRemediationExceptionBatch"}
|
2498
|
-
},
|
2499
|
-
"FieldInfo":{
|
2500
|
-
"type":"structure",
|
2501
|
-
"members":{
|
2502
|
-
"Name":{"shape":"FieldName"}
|
2503
|
-
}
|
2504
|
-
},
|
2505
|
-
"FieldInfoList":{
|
2506
|
-
"type":"list",
|
2507
|
-
"member":{"shape":"FieldInfo"}
|
2508
|
-
},
|
2509
|
-
"FieldName":{"type":"string"},
|
2510
|
-
"GetAggregateComplianceDetailsByConfigRuleRequest":{
|
2511
|
-
"type":"structure",
|
2512
|
-
"required":[
|
2513
|
-
"ConfigurationAggregatorName",
|
2514
|
-
"ConfigRuleName",
|
2515
|
-
"AccountId",
|
2516
|
-
"AwsRegion"
|
2517
|
-
],
|
2518
|
-
"members":{
|
2519
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2520
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
2521
|
-
"AccountId":{"shape":"AccountId"},
|
2522
|
-
"AwsRegion":{"shape":"AwsRegion"},
|
2523
|
-
"ComplianceType":{"shape":"ComplianceType"},
|
2524
|
-
"Limit":{"shape":"Limit"},
|
2525
|
-
"NextToken":{"shape":"NextToken"}
|
2526
|
-
}
|
2527
|
-
},
|
2528
|
-
"GetAggregateComplianceDetailsByConfigRuleResponse":{
|
2529
|
-
"type":"structure",
|
2530
|
-
"members":{
|
2531
|
-
"AggregateEvaluationResults":{"shape":"AggregateEvaluationResultList"},
|
2532
|
-
"NextToken":{"shape":"NextToken"}
|
2533
|
-
}
|
2534
|
-
},
|
2535
|
-
"GetAggregateConfigRuleComplianceSummaryRequest":{
|
2536
|
-
"type":"structure",
|
2537
|
-
"required":["ConfigurationAggregatorName"],
|
2538
|
-
"members":{
|
2539
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2540
|
-
"Filters":{"shape":"ConfigRuleComplianceSummaryFilters"},
|
2541
|
-
"GroupByKey":{"shape":"ConfigRuleComplianceSummaryGroupKey"},
|
2542
|
-
"Limit":{"shape":"GroupByAPILimit"},
|
2543
|
-
"NextToken":{"shape":"NextToken"}
|
2544
|
-
}
|
2545
|
-
},
|
2546
|
-
"GetAggregateConfigRuleComplianceSummaryResponse":{
|
2547
|
-
"type":"structure",
|
2548
|
-
"members":{
|
2549
|
-
"GroupByKey":{"shape":"StringWithCharLimit256"},
|
2550
|
-
"AggregateComplianceCounts":{"shape":"AggregateComplianceCountList"},
|
2551
|
-
"NextToken":{"shape":"NextToken"}
|
2552
|
-
}
|
2553
|
-
},
|
2554
|
-
"GetAggregateDiscoveredResourceCountsRequest":{
|
2555
|
-
"type":"structure",
|
2556
|
-
"required":["ConfigurationAggregatorName"],
|
2557
|
-
"members":{
|
2558
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2559
|
-
"Filters":{"shape":"ResourceCountFilters"},
|
2560
|
-
"GroupByKey":{"shape":"ResourceCountGroupKey"},
|
2561
|
-
"Limit":{"shape":"GroupByAPILimit"},
|
2562
|
-
"NextToken":{"shape":"NextToken"}
|
2563
|
-
}
|
2564
|
-
},
|
2565
|
-
"GetAggregateDiscoveredResourceCountsResponse":{
|
2566
|
-
"type":"structure",
|
2567
|
-
"required":["TotalDiscoveredResources"],
|
2568
|
-
"members":{
|
2569
|
-
"TotalDiscoveredResources":{"shape":"Long"},
|
2570
|
-
"GroupByKey":{"shape":"StringWithCharLimit256"},
|
2571
|
-
"GroupedResourceCounts":{"shape":"GroupedResourceCountList"},
|
2572
|
-
"NextToken":{"shape":"NextToken"}
|
2573
|
-
}
|
2574
|
-
},
|
2575
|
-
"GetAggregateResourceConfigRequest":{
|
2576
|
-
"type":"structure",
|
2577
|
-
"required":[
|
2578
|
-
"ConfigurationAggregatorName",
|
2579
|
-
"ResourceIdentifier"
|
2580
|
-
],
|
2581
|
-
"members":{
|
2582
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2583
|
-
"ResourceIdentifier":{"shape":"AggregateResourceIdentifier"}
|
2584
|
-
}
|
2585
|
-
},
|
2586
|
-
"GetAggregateResourceConfigResponse":{
|
2587
|
-
"type":"structure",
|
2588
|
-
"members":{
|
2589
|
-
"ConfigurationItem":{"shape":"ConfigurationItem"}
|
2590
|
-
}
|
2591
|
-
},
|
2592
|
-
"GetComplianceDetailsByConfigRuleRequest":{
|
2593
|
-
"type":"structure",
|
2594
|
-
"required":["ConfigRuleName"],
|
2595
|
-
"members":{
|
2596
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
2597
|
-
"ComplianceTypes":{"shape":"ComplianceTypes"},
|
2598
|
-
"Limit":{"shape":"Limit"},
|
2599
|
-
"NextToken":{"shape":"NextToken"}
|
2600
|
-
}
|
2601
|
-
},
|
2602
|
-
"GetComplianceDetailsByConfigRuleResponse":{
|
2603
|
-
"type":"structure",
|
2604
|
-
"members":{
|
2605
|
-
"EvaluationResults":{"shape":"EvaluationResults"},
|
2606
|
-
"NextToken":{"shape":"NextToken"}
|
2607
|
-
}
|
2608
|
-
},
|
2609
|
-
"GetComplianceDetailsByResourceRequest":{
|
2610
|
-
"type":"structure",
|
2611
|
-
"required":[
|
2612
|
-
"ResourceType",
|
2613
|
-
"ResourceId"
|
2614
|
-
],
|
2615
|
-
"members":{
|
2616
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
2617
|
-
"ResourceId":{"shape":"BaseResourceId"},
|
2618
|
-
"ComplianceTypes":{"shape":"ComplianceTypes"},
|
2619
|
-
"NextToken":{"shape":"String"}
|
2620
|
-
}
|
2621
|
-
},
|
2622
|
-
"GetComplianceDetailsByResourceResponse":{
|
2623
|
-
"type":"structure",
|
2624
|
-
"members":{
|
2625
|
-
"EvaluationResults":{"shape":"EvaluationResults"},
|
2626
|
-
"NextToken":{"shape":"String"}
|
2627
|
-
}
|
2628
|
-
},
|
2629
|
-
"GetComplianceSummaryByConfigRuleResponse":{
|
2630
|
-
"type":"structure",
|
2631
|
-
"members":{
|
2632
|
-
"ComplianceSummary":{"shape":"ComplianceSummary"}
|
2633
|
-
}
|
2634
|
-
},
|
2635
|
-
"GetComplianceSummaryByResourceTypeRequest":{
|
2636
|
-
"type":"structure",
|
2637
|
-
"members":{
|
2638
|
-
"ResourceTypes":{"shape":"ResourceTypes"}
|
2639
|
-
}
|
2640
|
-
},
|
2641
|
-
"GetComplianceSummaryByResourceTypeResponse":{
|
2642
|
-
"type":"structure",
|
2643
|
-
"members":{
|
2644
|
-
"ComplianceSummariesByResourceType":{"shape":"ComplianceSummariesByResourceType"}
|
2645
|
-
}
|
2646
|
-
},
|
2647
|
-
"GetConformancePackComplianceDetailsLimit":{
|
2648
|
-
"type":"integer",
|
2649
|
-
"max":100,
|
2650
|
-
"min":0
|
2651
|
-
},
|
2652
|
-
"GetConformancePackComplianceDetailsRequest":{
|
2653
|
-
"type":"structure",
|
2654
|
-
"required":["ConformancePackName"],
|
2655
|
-
"members":{
|
2656
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
2657
|
-
"Filters":{"shape":"ConformancePackEvaluationFilters"},
|
2658
|
-
"Limit":{"shape":"GetConformancePackComplianceDetailsLimit"},
|
2659
|
-
"NextToken":{"shape":"NextToken"}
|
2660
|
-
}
|
2661
|
-
},
|
2662
|
-
"GetConformancePackComplianceDetailsResponse":{
|
2663
|
-
"type":"structure",
|
2664
|
-
"required":["ConformancePackName"],
|
2665
|
-
"members":{
|
2666
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
2667
|
-
"ConformancePackRuleEvaluationResults":{"shape":"ConformancePackRuleEvaluationResultsList"},
|
2668
|
-
"NextToken":{"shape":"NextToken"}
|
2669
|
-
}
|
2670
|
-
},
|
2671
|
-
"GetConformancePackComplianceSummaryRequest":{
|
2672
|
-
"type":"structure",
|
2673
|
-
"required":["ConformancePackNames"],
|
2674
|
-
"members":{
|
2675
|
-
"ConformancePackNames":{"shape":"ConformancePackNamesToSummarizeList"},
|
2676
|
-
"Limit":{"shape":"PageSizeLimit"},
|
2677
|
-
"NextToken":{"shape":"NextToken"}
|
2678
|
-
}
|
2679
|
-
},
|
2680
|
-
"GetConformancePackComplianceSummaryResponse":{
|
2681
|
-
"type":"structure",
|
2682
|
-
"members":{
|
2683
|
-
"ConformancePackComplianceSummaryList":{"shape":"ConformancePackComplianceSummaryList"},
|
2684
|
-
"NextToken":{"shape":"NextToken"}
|
2685
|
-
}
|
2686
|
-
},
|
2687
|
-
"GetDiscoveredResourceCountsRequest":{
|
2688
|
-
"type":"structure",
|
2689
|
-
"members":{
|
2690
|
-
"resourceTypes":{"shape":"ResourceTypes"},
|
2691
|
-
"limit":{"shape":"Limit"},
|
2692
|
-
"nextToken":{"shape":"NextToken"}
|
2693
|
-
}
|
2694
|
-
},
|
2695
|
-
"GetDiscoveredResourceCountsResponse":{
|
2696
|
-
"type":"structure",
|
2697
|
-
"members":{
|
2698
|
-
"totalDiscoveredResources":{"shape":"Long"},
|
2699
|
-
"resourceCounts":{"shape":"ResourceCounts"},
|
2700
|
-
"nextToken":{"shape":"NextToken"}
|
2701
|
-
}
|
2702
|
-
},
|
2703
|
-
"GetOrganizationConfigRuleDetailedStatusRequest":{
|
2704
|
-
"type":"structure",
|
2705
|
-
"required":["OrganizationConfigRuleName"],
|
2706
|
-
"members":{
|
2707
|
-
"OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
|
2708
|
-
"Filters":{"shape":"StatusDetailFilters"},
|
2709
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2710
|
-
"NextToken":{"shape":"String"}
|
2711
|
-
}
|
2712
|
-
},
|
2713
|
-
"GetOrganizationConfigRuleDetailedStatusResponse":{
|
2714
|
-
"type":"structure",
|
2715
|
-
"members":{
|
2716
|
-
"OrganizationConfigRuleDetailedStatus":{"shape":"OrganizationConfigRuleDetailedStatus"},
|
2717
|
-
"NextToken":{"shape":"String"}
|
2718
|
-
}
|
2719
|
-
},
|
2720
|
-
"GetOrganizationConformancePackDetailedStatusRequest":{
|
2721
|
-
"type":"structure",
|
2722
|
-
"required":["OrganizationConformancePackName"],
|
2723
|
-
"members":{
|
2724
|
-
"OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
|
2725
|
-
"Filters":{"shape":"OrganizationResourceDetailedStatusFilters"},
|
2726
|
-
"Limit":{"shape":"CosmosPageLimit"},
|
2727
|
-
"NextToken":{"shape":"String"}
|
2728
|
-
}
|
2729
|
-
},
|
2730
|
-
"GetOrganizationConformancePackDetailedStatusResponse":{
|
2731
|
-
"type":"structure",
|
2732
|
-
"members":{
|
2733
|
-
"OrganizationConformancePackDetailedStatuses":{"shape":"OrganizationConformancePackDetailedStatuses"},
|
2734
|
-
"NextToken":{"shape":"String"}
|
2735
|
-
}
|
2736
|
-
},
|
2737
|
-
"GetResourceConfigHistoryRequest":{
|
2738
|
-
"type":"structure",
|
2739
|
-
"required":[
|
2740
|
-
"resourceType",
|
2741
|
-
"resourceId"
|
2742
|
-
],
|
2743
|
-
"members":{
|
2744
|
-
"resourceType":{"shape":"ResourceType"},
|
2745
|
-
"resourceId":{"shape":"ResourceId"},
|
2746
|
-
"laterTime":{"shape":"LaterTime"},
|
2747
|
-
"earlierTime":{"shape":"EarlierTime"},
|
2748
|
-
"chronologicalOrder":{"shape":"ChronologicalOrder"},
|
2749
|
-
"limit":{"shape":"Limit"},
|
2750
|
-
"nextToken":{"shape":"NextToken"}
|
2751
|
-
}
|
2752
|
-
},
|
2753
|
-
"GetResourceConfigHistoryResponse":{
|
2754
|
-
"type":"structure",
|
2755
|
-
"members":{
|
2756
|
-
"configurationItems":{"shape":"ConfigurationItemList"},
|
2757
|
-
"nextToken":{"shape":"NextToken"}
|
2758
|
-
}
|
2759
|
-
},
|
2760
|
-
"GroupByAPILimit":{
|
2761
|
-
"type":"integer",
|
2762
|
-
"max":1000,
|
2763
|
-
"min":0
|
2764
|
-
},
|
2765
|
-
"GroupedResourceCount":{
|
2766
|
-
"type":"structure",
|
2767
|
-
"required":[
|
2768
|
-
"GroupName",
|
2769
|
-
"ResourceCount"
|
2770
|
-
],
|
2771
|
-
"members":{
|
2772
|
-
"GroupName":{"shape":"StringWithCharLimit256"},
|
2773
|
-
"ResourceCount":{"shape":"Long"}
|
2774
|
-
}
|
2775
|
-
},
|
2776
|
-
"GroupedResourceCountList":{
|
2777
|
-
"type":"list",
|
2778
|
-
"member":{"shape":"GroupedResourceCount"}
|
2779
|
-
},
|
2780
|
-
"IncludeGlobalResourceTypes":{"type":"boolean"},
|
2781
|
-
"InsufficientDeliveryPolicyException":{
|
2782
|
-
"type":"structure",
|
2783
|
-
"members":{
|
2784
|
-
},
|
2785
|
-
"exception":true
|
2786
|
-
},
|
2787
|
-
"InsufficientPermissionsException":{
|
2788
|
-
"type":"structure",
|
2789
|
-
"members":{
|
2790
|
-
},
|
2791
|
-
"exception":true
|
2792
|
-
},
|
2793
|
-
"Integer":{"type":"integer"},
|
2794
|
-
"InvalidConfigurationRecorderNameException":{
|
2795
|
-
"type":"structure",
|
2796
|
-
"members":{
|
2797
|
-
},
|
2798
|
-
"exception":true
|
2799
|
-
},
|
2800
|
-
"InvalidDeliveryChannelNameException":{
|
2801
|
-
"type":"structure",
|
2802
|
-
"members":{
|
2803
|
-
},
|
2804
|
-
"exception":true
|
2805
|
-
},
|
2806
|
-
"InvalidExpressionException":{
|
2807
|
-
"type":"structure",
|
2808
|
-
"members":{
|
2809
|
-
},
|
2810
|
-
"exception":true
|
2811
|
-
},
|
2812
|
-
"InvalidLimitException":{
|
2813
|
-
"type":"structure",
|
2814
|
-
"members":{
|
2815
|
-
},
|
2816
|
-
"exception":true
|
2817
|
-
},
|
2818
|
-
"InvalidNextTokenException":{
|
2819
|
-
"type":"structure",
|
2820
|
-
"members":{
|
2821
|
-
},
|
2822
|
-
"exception":true
|
2823
|
-
},
|
2824
|
-
"InvalidParameterValueException":{
|
2825
|
-
"type":"structure",
|
2826
|
-
"members":{
|
2827
|
-
},
|
2828
|
-
"exception":true
|
2829
|
-
},
|
2830
|
-
"InvalidRecordingGroupException":{
|
2831
|
-
"type":"structure",
|
2832
|
-
"members":{
|
2833
|
-
},
|
2834
|
-
"exception":true
|
2835
|
-
},
|
2836
|
-
"InvalidResultTokenException":{
|
2837
|
-
"type":"structure",
|
2838
|
-
"members":{
|
2839
|
-
},
|
2840
|
-
"exception":true
|
2841
|
-
},
|
2842
|
-
"InvalidRoleException":{
|
2843
|
-
"type":"structure",
|
2844
|
-
"members":{
|
2845
|
-
},
|
2846
|
-
"exception":true
|
2847
|
-
},
|
2848
|
-
"InvalidS3KeyPrefixException":{
|
2849
|
-
"type":"structure",
|
2850
|
-
"members":{
|
2851
|
-
},
|
2852
|
-
"exception":true
|
2853
|
-
},
|
2854
|
-
"InvalidSNSTopicARNException":{
|
2855
|
-
"type":"structure",
|
2856
|
-
"members":{
|
2857
|
-
},
|
2858
|
-
"exception":true
|
2859
|
-
},
|
2860
|
-
"InvalidTimeRangeException":{
|
2861
|
-
"type":"structure",
|
2862
|
-
"members":{
|
2863
|
-
},
|
2864
|
-
"exception":true
|
2865
|
-
},
|
2866
|
-
"LastDeliveryChannelDeleteFailedException":{
|
2867
|
-
"type":"structure",
|
2868
|
-
"members":{
|
2869
|
-
},
|
2870
|
-
"exception":true
|
2871
|
-
},
|
2872
|
-
"LaterTime":{"type":"timestamp"},
|
2873
|
-
"Limit":{
|
2874
|
-
"type":"integer",
|
2875
|
-
"max":100,
|
2876
|
-
"min":0
|
2877
|
-
},
|
2878
|
-
"LimitExceededException":{
|
2879
|
-
"type":"structure",
|
2880
|
-
"members":{
|
2881
|
-
},
|
2882
|
-
"exception":true
|
2883
|
-
},
|
2884
|
-
"ListAggregateDiscoveredResourcesRequest":{
|
2885
|
-
"type":"structure",
|
2886
|
-
"required":[
|
2887
|
-
"ConfigurationAggregatorName",
|
2888
|
-
"ResourceType"
|
2889
|
-
],
|
2890
|
-
"members":{
|
2891
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
2892
|
-
"ResourceType":{"shape":"ResourceType"},
|
2893
|
-
"Filters":{"shape":"ResourceFilters"},
|
2894
|
-
"Limit":{"shape":"Limit"},
|
2895
|
-
"NextToken":{"shape":"NextToken"}
|
2896
|
-
}
|
2897
|
-
},
|
2898
|
-
"ListAggregateDiscoveredResourcesResponse":{
|
2899
|
-
"type":"structure",
|
2900
|
-
"members":{
|
2901
|
-
"ResourceIdentifiers":{"shape":"DiscoveredResourceIdentifierList"},
|
2902
|
-
"NextToken":{"shape":"NextToken"}
|
2903
|
-
}
|
2904
|
-
},
|
2905
|
-
"ListDiscoveredResourcesRequest":{
|
2906
|
-
"type":"structure",
|
2907
|
-
"required":["resourceType"],
|
2908
|
-
"members":{
|
2909
|
-
"resourceType":{"shape":"ResourceType"},
|
2910
|
-
"resourceIds":{"shape":"ResourceIdList"},
|
2911
|
-
"resourceName":{"shape":"ResourceName"},
|
2912
|
-
"limit":{"shape":"Limit"},
|
2913
|
-
"includeDeletedResources":{"shape":"Boolean"},
|
2914
|
-
"nextToken":{"shape":"NextToken"}
|
2915
|
-
}
|
2916
|
-
},
|
2917
|
-
"ListDiscoveredResourcesResponse":{
|
2918
|
-
"type":"structure",
|
2919
|
-
"members":{
|
2920
|
-
"resourceIdentifiers":{"shape":"ResourceIdentifierList"},
|
2921
|
-
"nextToken":{"shape":"NextToken"}
|
2922
|
-
}
|
2923
|
-
},
|
2924
|
-
"ListTagsForResourceRequest":{
|
2925
|
-
"type":"structure",
|
2926
|
-
"required":["ResourceArn"],
|
2927
|
-
"members":{
|
2928
|
-
"ResourceArn":{"shape":"AmazonResourceName"},
|
2929
|
-
"Limit":{"shape":"Limit"},
|
2930
|
-
"NextToken":{"shape":"NextToken"}
|
2931
|
-
}
|
2932
|
-
},
|
2933
|
-
"ListTagsForResourceResponse":{
|
2934
|
-
"type":"structure",
|
2935
|
-
"members":{
|
2936
|
-
"Tags":{"shape":"TagList"},
|
2937
|
-
"NextToken":{"shape":"NextToken"}
|
2938
|
-
}
|
2939
|
-
},
|
2940
|
-
"Long":{"type":"long"},
|
2941
|
-
"MaxActiveResourcesExceededException":{
|
2942
|
-
"type":"structure",
|
2943
|
-
"members":{
|
2944
|
-
},
|
2945
|
-
"exception":true
|
2946
|
-
},
|
2947
|
-
"MaxNumberOfConfigRulesExceededException":{
|
2948
|
-
"type":"structure",
|
2949
|
-
"members":{
|
2950
|
-
},
|
2951
|
-
"exception":true
|
2952
|
-
},
|
2953
|
-
"MaxNumberOfConfigurationRecordersExceededException":{
|
2954
|
-
"type":"structure",
|
2955
|
-
"members":{
|
2956
|
-
},
|
2957
|
-
"exception":true
|
2958
|
-
},
|
2959
|
-
"MaxNumberOfConformancePacksExceededException":{
|
2960
|
-
"type":"structure",
|
2961
|
-
"members":{
|
2962
|
-
},
|
2963
|
-
"exception":true
|
2964
|
-
},
|
2965
|
-
"MaxNumberOfDeliveryChannelsExceededException":{
|
2966
|
-
"type":"structure",
|
2967
|
-
"members":{
|
2968
|
-
},
|
2969
|
-
"exception":true
|
2970
|
-
},
|
2971
|
-
"MaxNumberOfOrganizationConfigRulesExceededException":{
|
2972
|
-
"type":"structure",
|
2973
|
-
"members":{
|
2974
|
-
},
|
2975
|
-
"exception":true
|
2976
|
-
},
|
2977
|
-
"MaxNumberOfOrganizationConformancePacksExceededException":{
|
2978
|
-
"type":"structure",
|
2979
|
-
"members":{
|
2980
|
-
},
|
2981
|
-
"exception":true
|
2982
|
-
},
|
2983
|
-
"MaxNumberOfRetentionConfigurationsExceededException":{
|
2984
|
-
"type":"structure",
|
2985
|
-
"members":{
|
2986
|
-
},
|
2987
|
-
"exception":true
|
2988
|
-
},
|
2989
|
-
"MaximumExecutionFrequency":{
|
2990
|
-
"type":"string",
|
2991
|
-
"enum":[
|
2992
|
-
"One_Hour",
|
2993
|
-
"Three_Hours",
|
2994
|
-
"Six_Hours",
|
2995
|
-
"Twelve_Hours",
|
2996
|
-
"TwentyFour_Hours"
|
2997
|
-
]
|
2998
|
-
},
|
2999
|
-
"MemberAccountRuleStatus":{
|
3000
|
-
"type":"string",
|
3001
|
-
"enum":[
|
3002
|
-
"CREATE_SUCCESSFUL",
|
3003
|
-
"CREATE_IN_PROGRESS",
|
3004
|
-
"CREATE_FAILED",
|
3005
|
-
"DELETE_SUCCESSFUL",
|
3006
|
-
"DELETE_FAILED",
|
3007
|
-
"DELETE_IN_PROGRESS",
|
3008
|
-
"UPDATE_SUCCESSFUL",
|
3009
|
-
"UPDATE_IN_PROGRESS",
|
3010
|
-
"UPDATE_FAILED"
|
3011
|
-
]
|
3012
|
-
},
|
3013
|
-
"MemberAccountStatus":{
|
3014
|
-
"type":"structure",
|
3015
|
-
"required":[
|
3016
|
-
"AccountId",
|
3017
|
-
"ConfigRuleName",
|
3018
|
-
"MemberAccountRuleStatus"
|
3019
|
-
],
|
3020
|
-
"members":{
|
3021
|
-
"AccountId":{"shape":"AccountId"},
|
3022
|
-
"ConfigRuleName":{"shape":"StringWithCharLimit64"},
|
3023
|
-
"MemberAccountRuleStatus":{"shape":"MemberAccountRuleStatus"},
|
3024
|
-
"ErrorCode":{"shape":"String"},
|
3025
|
-
"ErrorMessage":{"shape":"String"},
|
3026
|
-
"LastUpdateTime":{"shape":"Date"}
|
3027
|
-
}
|
3028
|
-
},
|
3029
|
-
"MessageType":{
|
3030
|
-
"type":"string",
|
3031
|
-
"enum":[
|
3032
|
-
"ConfigurationItemChangeNotification",
|
3033
|
-
"ConfigurationSnapshotDeliveryCompleted",
|
3034
|
-
"ScheduledNotification",
|
3035
|
-
"OversizedConfigurationItemChangeNotification"
|
3036
|
-
]
|
3037
|
-
},
|
3038
|
-
"Name":{"type":"string"},
|
3039
|
-
"NextToken":{"type":"string"},
|
3040
|
-
"NoAvailableConfigurationRecorderException":{
|
3041
|
-
"type":"structure",
|
3042
|
-
"members":{
|
3043
|
-
},
|
3044
|
-
"exception":true
|
3045
|
-
},
|
3046
|
-
"NoAvailableDeliveryChannelException":{
|
3047
|
-
"type":"structure",
|
3048
|
-
"members":{
|
3049
|
-
},
|
3050
|
-
"exception":true
|
3051
|
-
},
|
3052
|
-
"NoAvailableOrganizationException":{
|
3053
|
-
"type":"structure",
|
3054
|
-
"members":{
|
3055
|
-
},
|
3056
|
-
"exception":true
|
3057
|
-
},
|
3058
|
-
"NoRunningConfigurationRecorderException":{
|
3059
|
-
"type":"structure",
|
3060
|
-
"members":{
|
3061
|
-
},
|
3062
|
-
"exception":true
|
3063
|
-
},
|
3064
|
-
"NoSuchBucketException":{
|
3065
|
-
"type":"structure",
|
3066
|
-
"members":{
|
3067
|
-
},
|
3068
|
-
"exception":true
|
3069
|
-
},
|
3070
|
-
"NoSuchConfigRuleException":{
|
3071
|
-
"type":"structure",
|
3072
|
-
"members":{
|
3073
|
-
},
|
3074
|
-
"exception":true
|
3075
|
-
},
|
3076
|
-
"NoSuchConfigRuleInConformancePackException":{
|
3077
|
-
"type":"structure",
|
3078
|
-
"members":{
|
3079
|
-
},
|
3080
|
-
"exception":true
|
3081
|
-
},
|
3082
|
-
"NoSuchConfigurationAggregatorException":{
|
3083
|
-
"type":"structure",
|
3084
|
-
"members":{
|
3085
|
-
},
|
3086
|
-
"exception":true
|
3087
|
-
},
|
3088
|
-
"NoSuchConfigurationRecorderException":{
|
3089
|
-
"type":"structure",
|
3090
|
-
"members":{
|
3091
|
-
},
|
3092
|
-
"exception":true
|
3093
|
-
},
|
3094
|
-
"NoSuchConformancePackException":{
|
3095
|
-
"type":"structure",
|
3096
|
-
"members":{
|
3097
|
-
},
|
3098
|
-
"exception":true
|
3099
|
-
},
|
3100
|
-
"NoSuchDeliveryChannelException":{
|
3101
|
-
"type":"structure",
|
3102
|
-
"members":{
|
3103
|
-
},
|
3104
|
-
"exception":true
|
3105
|
-
},
|
3106
|
-
"NoSuchOrganizationConfigRuleException":{
|
3107
|
-
"type":"structure",
|
3108
|
-
"members":{
|
3109
|
-
},
|
3110
|
-
"exception":true
|
3111
|
-
},
|
3112
|
-
"NoSuchOrganizationConformancePackException":{
|
3113
|
-
"type":"structure",
|
3114
|
-
"members":{
|
3115
|
-
},
|
3116
|
-
"exception":true
|
3117
|
-
},
|
3118
|
-
"NoSuchRemediationConfigurationException":{
|
3119
|
-
"type":"structure",
|
3120
|
-
"members":{
|
3121
|
-
},
|
3122
|
-
"exception":true
|
3123
|
-
},
|
3124
|
-
"NoSuchRemediationExceptionException":{
|
3125
|
-
"type":"structure",
|
3126
|
-
"members":{
|
3127
|
-
},
|
3128
|
-
"exception":true
|
3129
|
-
},
|
3130
|
-
"NoSuchRetentionConfigurationException":{
|
3131
|
-
"type":"structure",
|
3132
|
-
"members":{
|
3133
|
-
},
|
3134
|
-
"exception":true
|
3135
|
-
},
|
3136
|
-
"OrderingTimestamp":{"type":"timestamp"},
|
3137
|
-
"OrganizationAccessDeniedException":{
|
3138
|
-
"type":"structure",
|
3139
|
-
"members":{
|
3140
|
-
},
|
3141
|
-
"exception":true
|
3142
|
-
},
|
3143
|
-
"OrganizationAggregationSource":{
|
3144
|
-
"type":"structure",
|
3145
|
-
"required":["RoleArn"],
|
3146
|
-
"members":{
|
3147
|
-
"RoleArn":{"shape":"String"},
|
3148
|
-
"AwsRegions":{"shape":"AggregatorRegionList"},
|
3149
|
-
"AllAwsRegions":{"shape":"Boolean"}
|
3150
|
-
}
|
3151
|
-
},
|
3152
|
-
"OrganizationAllFeaturesNotEnabledException":{
|
3153
|
-
"type":"structure",
|
3154
|
-
"members":{
|
3155
|
-
},
|
3156
|
-
"exception":true
|
3157
|
-
},
|
3158
|
-
"OrganizationConfigRule":{
|
3159
|
-
"type":"structure",
|
3160
|
-
"required":[
|
3161
|
-
"OrganizationConfigRuleName",
|
3162
|
-
"OrganizationConfigRuleArn"
|
3163
|
-
],
|
3164
|
-
"members":{
|
3165
|
-
"OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
|
3166
|
-
"OrganizationConfigRuleArn":{"shape":"StringWithCharLimit256"},
|
3167
|
-
"OrganizationManagedRuleMetadata":{"shape":"OrganizationManagedRuleMetadata"},
|
3168
|
-
"OrganizationCustomRuleMetadata":{"shape":"OrganizationCustomRuleMetadata"},
|
3169
|
-
"ExcludedAccounts":{"shape":"ExcludedAccounts"},
|
3170
|
-
"LastUpdateTime":{"shape":"Date"}
|
3171
|
-
}
|
3172
|
-
},
|
3173
|
-
"OrganizationConfigRuleDetailedStatus":{
|
3174
|
-
"type":"list",
|
3175
|
-
"member":{"shape":"MemberAccountStatus"}
|
3176
|
-
},
|
3177
|
-
"OrganizationConfigRuleName":{
|
3178
|
-
"type":"string",
|
3179
|
-
"max":64,
|
3180
|
-
"min":1,
|
3181
|
-
"pattern":".*\\S.*"
|
3182
|
-
},
|
3183
|
-
"OrganizationConfigRuleNames":{
|
3184
|
-
"type":"list",
|
3185
|
-
"member":{"shape":"StringWithCharLimit64"},
|
3186
|
-
"max":25,
|
3187
|
-
"min":0
|
3188
|
-
},
|
3189
|
-
"OrganizationConfigRuleStatus":{
|
3190
|
-
"type":"structure",
|
3191
|
-
"required":[
|
3192
|
-
"OrganizationConfigRuleName",
|
3193
|
-
"OrganizationRuleStatus"
|
3194
|
-
],
|
3195
|
-
"members":{
|
3196
|
-
"OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
|
3197
|
-
"OrganizationRuleStatus":{"shape":"OrganizationRuleStatus"},
|
3198
|
-
"ErrorCode":{"shape":"String"},
|
3199
|
-
"ErrorMessage":{"shape":"String"},
|
3200
|
-
"LastUpdateTime":{"shape":"Date"}
|
3201
|
-
}
|
3202
|
-
},
|
3203
|
-
"OrganizationConfigRuleStatuses":{
|
3204
|
-
"type":"list",
|
3205
|
-
"member":{"shape":"OrganizationConfigRuleStatus"}
|
3206
|
-
},
|
3207
|
-
"OrganizationConfigRuleTriggerType":{
|
3208
|
-
"type":"string",
|
3209
|
-
"enum":[
|
3210
|
-
"ConfigurationItemChangeNotification",
|
3211
|
-
"OversizedConfigurationItemChangeNotification",
|
3212
|
-
"ScheduledNotification"
|
3213
|
-
]
|
3214
|
-
},
|
3215
|
-
"OrganizationConfigRuleTriggerTypes":{
|
3216
|
-
"type":"list",
|
3217
|
-
"member":{"shape":"OrganizationConfigRuleTriggerType"}
|
3218
|
-
},
|
3219
|
-
"OrganizationConfigRules":{
|
3220
|
-
"type":"list",
|
3221
|
-
"member":{"shape":"OrganizationConfigRule"}
|
3222
|
-
},
|
3223
|
-
"OrganizationConformancePack":{
|
3224
|
-
"type":"structure",
|
3225
|
-
"required":[
|
3226
|
-
"OrganizationConformancePackName",
|
3227
|
-
"OrganizationConformancePackArn",
|
3228
|
-
"DeliveryS3Bucket",
|
3229
|
-
"LastUpdateTime"
|
3230
|
-
],
|
3231
|
-
"members":{
|
3232
|
-
"OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
|
3233
|
-
"OrganizationConformancePackArn":{"shape":"StringWithCharLimit256"},
|
3234
|
-
"DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
|
3235
|
-
"DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
|
3236
|
-
"ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
|
3237
|
-
"ExcludedAccounts":{"shape":"ExcludedAccounts"},
|
3238
|
-
"LastUpdateTime":{"shape":"Date"}
|
3239
|
-
}
|
3240
|
-
},
|
3241
|
-
"OrganizationConformancePackDetailedStatus":{
|
3242
|
-
"type":"structure",
|
3243
|
-
"required":[
|
3244
|
-
"AccountId",
|
3245
|
-
"ConformancePackName",
|
3246
|
-
"Status"
|
3247
|
-
],
|
3248
|
-
"members":{
|
3249
|
-
"AccountId":{"shape":"AccountId"},
|
3250
|
-
"ConformancePackName":{"shape":"StringWithCharLimit256"},
|
3251
|
-
"Status":{"shape":"OrganizationResourceDetailedStatus"},
|
3252
|
-
"ErrorCode":{"shape":"String"},
|
3253
|
-
"ErrorMessage":{"shape":"String"},
|
3254
|
-
"LastUpdateTime":{"shape":"Date"}
|
3255
|
-
}
|
3256
|
-
},
|
3257
|
-
"OrganizationConformancePackDetailedStatuses":{
|
3258
|
-
"type":"list",
|
3259
|
-
"member":{"shape":"OrganizationConformancePackDetailedStatus"}
|
3260
|
-
},
|
3261
|
-
"OrganizationConformancePackName":{
|
3262
|
-
"type":"string",
|
3263
|
-
"max":128,
|
3264
|
-
"min":1,
|
3265
|
-
"pattern":"[a-zA-Z][-a-zA-Z0-9]*"
|
3266
|
-
},
|
3267
|
-
"OrganizationConformancePackNames":{
|
3268
|
-
"type":"list",
|
3269
|
-
"member":{"shape":"OrganizationConformancePackName"},
|
3270
|
-
"max":25,
|
3271
|
-
"min":0
|
3272
|
-
},
|
3273
|
-
"OrganizationConformancePackStatus":{
|
3274
|
-
"type":"structure",
|
3275
|
-
"required":[
|
3276
|
-
"OrganizationConformancePackName",
|
3277
|
-
"Status"
|
3278
|
-
],
|
3279
|
-
"members":{
|
3280
|
-
"OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
|
3281
|
-
"Status":{"shape":"OrganizationResourceStatus"},
|
3282
|
-
"ErrorCode":{"shape":"String"},
|
3283
|
-
"ErrorMessage":{"shape":"String"},
|
3284
|
-
"LastUpdateTime":{"shape":"Date"}
|
3285
|
-
}
|
3286
|
-
},
|
3287
|
-
"OrganizationConformancePackStatuses":{
|
3288
|
-
"type":"list",
|
3289
|
-
"member":{"shape":"OrganizationConformancePackStatus"}
|
3290
|
-
},
|
3291
|
-
"OrganizationConformancePackTemplateValidationException":{
|
3292
|
-
"type":"structure",
|
3293
|
-
"members":{
|
3294
|
-
},
|
3295
|
-
"exception":true
|
3296
|
-
},
|
3297
|
-
"OrganizationConformancePacks":{
|
3298
|
-
"type":"list",
|
3299
|
-
"member":{"shape":"OrganizationConformancePack"}
|
3300
|
-
},
|
3301
|
-
"OrganizationCustomRuleMetadata":{
|
3302
|
-
"type":"structure",
|
3303
|
-
"required":[
|
3304
|
-
"LambdaFunctionArn",
|
3305
|
-
"OrganizationConfigRuleTriggerTypes"
|
3306
|
-
],
|
3307
|
-
"members":{
|
3308
|
-
"Description":{"shape":"StringWithCharLimit256Min0"},
|
3309
|
-
"LambdaFunctionArn":{"shape":"StringWithCharLimit256"},
|
3310
|
-
"OrganizationConfigRuleTriggerTypes":{"shape":"OrganizationConfigRuleTriggerTypes"},
|
3311
|
-
"InputParameters":{"shape":"StringWithCharLimit2048"},
|
3312
|
-
"MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
|
3313
|
-
"ResourceTypesScope":{"shape":"ResourceTypesScope"},
|
3314
|
-
"ResourceIdScope":{"shape":"StringWithCharLimit768"},
|
3315
|
-
"TagKeyScope":{"shape":"StringWithCharLimit128"},
|
3316
|
-
"TagValueScope":{"shape":"StringWithCharLimit256"}
|
3317
|
-
}
|
3318
|
-
},
|
3319
|
-
"OrganizationManagedRuleMetadata":{
|
3320
|
-
"type":"structure",
|
3321
|
-
"required":["RuleIdentifier"],
|
3322
|
-
"members":{
|
3323
|
-
"Description":{"shape":"StringWithCharLimit256Min0"},
|
3324
|
-
"RuleIdentifier":{"shape":"StringWithCharLimit256"},
|
3325
|
-
"InputParameters":{"shape":"StringWithCharLimit2048"},
|
3326
|
-
"MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
|
3327
|
-
"ResourceTypesScope":{"shape":"ResourceTypesScope"},
|
3328
|
-
"ResourceIdScope":{"shape":"StringWithCharLimit768"},
|
3329
|
-
"TagKeyScope":{"shape":"StringWithCharLimit128"},
|
3330
|
-
"TagValueScope":{"shape":"StringWithCharLimit256"}
|
3331
|
-
}
|
3332
|
-
},
|
3333
|
-
"OrganizationResourceDetailedStatus":{
|
3334
|
-
"type":"string",
|
3335
|
-
"enum":[
|
3336
|
-
"CREATE_SUCCESSFUL",
|
3337
|
-
"CREATE_IN_PROGRESS",
|
3338
|
-
"CREATE_FAILED",
|
3339
|
-
"DELETE_SUCCESSFUL",
|
3340
|
-
"DELETE_FAILED",
|
3341
|
-
"DELETE_IN_PROGRESS",
|
3342
|
-
"UPDATE_SUCCESSFUL",
|
3343
|
-
"UPDATE_IN_PROGRESS",
|
3344
|
-
"UPDATE_FAILED"
|
3345
|
-
]
|
3346
|
-
},
|
3347
|
-
"OrganizationResourceDetailedStatusFilters":{
|
3348
|
-
"type":"structure",
|
3349
|
-
"members":{
|
3350
|
-
"AccountId":{"shape":"AccountId"},
|
3351
|
-
"Status":{"shape":"OrganizationResourceDetailedStatus"}
|
3352
|
-
}
|
3353
|
-
},
|
3354
|
-
"OrganizationResourceStatus":{
|
3355
|
-
"type":"string",
|
3356
|
-
"enum":[
|
3357
|
-
"CREATE_SUCCESSFUL",
|
3358
|
-
"CREATE_IN_PROGRESS",
|
3359
|
-
"CREATE_FAILED",
|
3360
|
-
"DELETE_SUCCESSFUL",
|
3361
|
-
"DELETE_FAILED",
|
3362
|
-
"DELETE_IN_PROGRESS",
|
3363
|
-
"UPDATE_SUCCESSFUL",
|
3364
|
-
"UPDATE_IN_PROGRESS",
|
3365
|
-
"UPDATE_FAILED"
|
3366
|
-
]
|
3367
|
-
},
|
3368
|
-
"OrganizationRuleStatus":{
|
3369
|
-
"type":"string",
|
3370
|
-
"enum":[
|
3371
|
-
"CREATE_SUCCESSFUL",
|
3372
|
-
"CREATE_IN_PROGRESS",
|
3373
|
-
"CREATE_FAILED",
|
3374
|
-
"DELETE_SUCCESSFUL",
|
3375
|
-
"DELETE_FAILED",
|
3376
|
-
"DELETE_IN_PROGRESS",
|
3377
|
-
"UPDATE_SUCCESSFUL",
|
3378
|
-
"UPDATE_IN_PROGRESS",
|
3379
|
-
"UPDATE_FAILED"
|
3380
|
-
]
|
3381
|
-
},
|
3382
|
-
"OversizedConfigurationItemException":{
|
3383
|
-
"type":"structure",
|
3384
|
-
"members":{
|
3385
|
-
},
|
3386
|
-
"exception":true
|
3387
|
-
},
|
3388
|
-
"Owner":{
|
3389
|
-
"type":"string",
|
3390
|
-
"enum":[
|
3391
|
-
"CUSTOM_LAMBDA",
|
3392
|
-
"AWS"
|
3393
|
-
]
|
3394
|
-
},
|
3395
|
-
"PageSizeLimit":{
|
3396
|
-
"type":"integer",
|
3397
|
-
"max":20,
|
3398
|
-
"min":0
|
3399
|
-
},
|
3400
|
-
"ParameterName":{
|
3401
|
-
"type":"string",
|
3402
|
-
"max":255,
|
3403
|
-
"min":0
|
3404
|
-
},
|
3405
|
-
"ParameterValue":{
|
3406
|
-
"type":"string",
|
3407
|
-
"max":4096,
|
3408
|
-
"min":0
|
3409
|
-
},
|
3410
|
-
"PendingAggregationRequest":{
|
3411
|
-
"type":"structure",
|
3412
|
-
"members":{
|
3413
|
-
"RequesterAccountId":{"shape":"AccountId"},
|
3414
|
-
"RequesterAwsRegion":{"shape":"AwsRegion"}
|
3415
|
-
}
|
3416
|
-
},
|
3417
|
-
"PendingAggregationRequestList":{
|
3418
|
-
"type":"list",
|
3419
|
-
"member":{"shape":"PendingAggregationRequest"}
|
3420
|
-
},
|
3421
|
-
"Percentage":{
|
3422
|
-
"type":"integer",
|
3423
|
-
"box":true,
|
3424
|
-
"max":100,
|
3425
|
-
"min":1
|
3426
|
-
},
|
3427
|
-
"PutAggregationAuthorizationRequest":{
|
3428
|
-
"type":"structure",
|
3429
|
-
"required":[
|
3430
|
-
"AuthorizedAccountId",
|
3431
|
-
"AuthorizedAwsRegion"
|
3432
|
-
],
|
3433
|
-
"members":{
|
3434
|
-
"AuthorizedAccountId":{"shape":"AccountId"},
|
3435
|
-
"AuthorizedAwsRegion":{"shape":"AwsRegion"},
|
3436
|
-
"Tags":{"shape":"TagsList"}
|
3437
|
-
}
|
3438
|
-
},
|
3439
|
-
"PutAggregationAuthorizationResponse":{
|
3440
|
-
"type":"structure",
|
3441
|
-
"members":{
|
3442
|
-
"AggregationAuthorization":{"shape":"AggregationAuthorization"}
|
3443
|
-
}
|
3444
|
-
},
|
3445
|
-
"PutConfigRuleRequest":{
|
3446
|
-
"type":"structure",
|
3447
|
-
"required":["ConfigRule"],
|
3448
|
-
"members":{
|
3449
|
-
"ConfigRule":{"shape":"ConfigRule"},
|
3450
|
-
"Tags":{"shape":"TagsList"}
|
3451
|
-
}
|
3452
|
-
},
|
3453
|
-
"PutConfigurationAggregatorRequest":{
|
3454
|
-
"type":"structure",
|
3455
|
-
"required":["ConfigurationAggregatorName"],
|
3456
|
-
"members":{
|
3457
|
-
"ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
|
3458
|
-
"AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
|
3459
|
-
"OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
|
3460
|
-
"Tags":{"shape":"TagsList"}
|
3461
|
-
}
|
3462
|
-
},
|
3463
|
-
"PutConfigurationAggregatorResponse":{
|
3464
|
-
"type":"structure",
|
3465
|
-
"members":{
|
3466
|
-
"ConfigurationAggregator":{"shape":"ConfigurationAggregator"}
|
3467
|
-
}
|
3468
|
-
},
|
3469
|
-
"PutConfigurationRecorderRequest":{
|
3470
|
-
"type":"structure",
|
3471
|
-
"required":["ConfigurationRecorder"],
|
3472
|
-
"members":{
|
3473
|
-
"ConfigurationRecorder":{"shape":"ConfigurationRecorder"}
|
3474
|
-
}
|
3475
|
-
},
|
3476
|
-
"PutConformancePackRequest":{
|
3477
|
-
"type":"structure",
|
3478
|
-
"required":[
|
3479
|
-
"ConformancePackName",
|
3480
|
-
"DeliveryS3Bucket"
|
3481
|
-
],
|
3482
|
-
"members":{
|
3483
|
-
"ConformancePackName":{"shape":"ConformancePackName"},
|
3484
|
-
"TemplateS3Uri":{"shape":"TemplateS3Uri"},
|
3485
|
-
"TemplateBody":{"shape":"TemplateBody"},
|
3486
|
-
"DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
|
3487
|
-
"DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
|
3488
|
-
"ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"}
|
3489
|
-
}
|
3490
|
-
},
|
3491
|
-
"PutConformancePackResponse":{
|
3492
|
-
"type":"structure",
|
3493
|
-
"members":{
|
3494
|
-
"ConformancePackArn":{"shape":"ConformancePackArn"}
|
3495
|
-
}
|
3496
|
-
},
|
3497
|
-
"PutDeliveryChannelRequest":{
|
3498
|
-
"type":"structure",
|
3499
|
-
"required":["DeliveryChannel"],
|
3500
|
-
"members":{
|
3501
|
-
"DeliveryChannel":{"shape":"DeliveryChannel"}
|
3502
|
-
}
|
3503
|
-
},
|
3504
|
-
"PutEvaluationsRequest":{
|
3505
|
-
"type":"structure",
|
3506
|
-
"required":["ResultToken"],
|
3507
|
-
"members":{
|
3508
|
-
"Evaluations":{"shape":"Evaluations"},
|
3509
|
-
"ResultToken":{"shape":"String"},
|
3510
|
-
"TestMode":{"shape":"Boolean"}
|
3511
|
-
}
|
3512
|
-
},
|
3513
|
-
"PutEvaluationsResponse":{
|
3514
|
-
"type":"structure",
|
3515
|
-
"members":{
|
3516
|
-
"FailedEvaluations":{"shape":"Evaluations"}
|
3517
|
-
}
|
3518
|
-
},
|
3519
|
-
"PutOrganizationConfigRuleRequest":{
|
3520
|
-
"type":"structure",
|
3521
|
-
"required":["OrganizationConfigRuleName"],
|
3522
|
-
"members":{
|
3523
|
-
"OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
|
3524
|
-
"OrganizationManagedRuleMetadata":{"shape":"OrganizationManagedRuleMetadata"},
|
3525
|
-
"OrganizationCustomRuleMetadata":{"shape":"OrganizationCustomRuleMetadata"},
|
3526
|
-
"ExcludedAccounts":{"shape":"ExcludedAccounts"}
|
3527
|
-
}
|
3528
|
-
},
|
3529
|
-
"PutOrganizationConfigRuleResponse":{
|
3530
|
-
"type":"structure",
|
3531
|
-
"members":{
|
3532
|
-
"OrganizationConfigRuleArn":{"shape":"StringWithCharLimit256"}
|
3533
|
-
}
|
3534
|
-
},
|
3535
|
-
"PutOrganizationConformancePackRequest":{
|
3536
|
-
"type":"structure",
|
3537
|
-
"required":[
|
3538
|
-
"OrganizationConformancePackName",
|
3539
|
-
"DeliveryS3Bucket"
|
3540
|
-
],
|
3541
|
-
"members":{
|
3542
|
-
"OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
|
3543
|
-
"TemplateS3Uri":{"shape":"TemplateS3Uri"},
|
3544
|
-
"TemplateBody":{"shape":"TemplateBody"},
|
3545
|
-
"DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
|
3546
|
-
"DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
|
3547
|
-
"ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
|
3548
|
-
"ExcludedAccounts":{"shape":"ExcludedAccounts"}
|
3549
|
-
}
|
3550
|
-
},
|
3551
|
-
"PutOrganizationConformancePackResponse":{
|
3552
|
-
"type":"structure",
|
3553
|
-
"members":{
|
3554
|
-
"OrganizationConformancePackArn":{"shape":"StringWithCharLimit256"}
|
3555
|
-
}
|
3556
|
-
},
|
3557
|
-
"PutRemediationConfigurationsRequest":{
|
3558
|
-
"type":"structure",
|
3559
|
-
"required":["RemediationConfigurations"],
|
3560
|
-
"members":{
|
3561
|
-
"RemediationConfigurations":{"shape":"RemediationConfigurations"}
|
3562
|
-
}
|
3563
|
-
},
|
3564
|
-
"PutRemediationConfigurationsResponse":{
|
3565
|
-
"type":"structure",
|
3566
|
-
"members":{
|
3567
|
-
"FailedBatches":{"shape":"FailedRemediationBatches"}
|
3568
|
-
}
|
3569
|
-
},
|
3570
|
-
"PutRemediationExceptionsRequest":{
|
3571
|
-
"type":"structure",
|
3572
|
-
"required":[
|
3573
|
-
"ConfigRuleName",
|
3574
|
-
"ResourceKeys"
|
3575
|
-
],
|
3576
|
-
"members":{
|
3577
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
3578
|
-
"ResourceKeys":{"shape":"RemediationExceptionResourceKeys"},
|
3579
|
-
"Message":{"shape":"StringWithCharLimit1024"},
|
3580
|
-
"ExpirationTime":{"shape":"Date"}
|
3581
|
-
}
|
3582
|
-
},
|
3583
|
-
"PutRemediationExceptionsResponse":{
|
3584
|
-
"type":"structure",
|
3585
|
-
"members":{
|
3586
|
-
"FailedBatches":{"shape":"FailedRemediationExceptionBatches"}
|
3587
|
-
}
|
3588
|
-
},
|
3589
|
-
"PutResourceConfigRequest":{
|
3590
|
-
"type":"structure",
|
3591
|
-
"required":[
|
3592
|
-
"ResourceType",
|
3593
|
-
"SchemaVersionId",
|
3594
|
-
"ResourceId",
|
3595
|
-
"Configuration"
|
3596
|
-
],
|
3597
|
-
"members":{
|
3598
|
-
"ResourceType":{"shape":"ResourceTypeString"},
|
3599
|
-
"SchemaVersionId":{"shape":"SchemaVersionId"},
|
3600
|
-
"ResourceId":{"shape":"ResourceId"},
|
3601
|
-
"ResourceName":{"shape":"ResourceName"},
|
3602
|
-
"Configuration":{"shape":"Configuration"},
|
3603
|
-
"Tags":{"shape":"Tags"}
|
3604
|
-
}
|
3605
|
-
},
|
3606
|
-
"PutRetentionConfigurationRequest":{
|
3607
|
-
"type":"structure",
|
3608
|
-
"required":["RetentionPeriodInDays"],
|
3609
|
-
"members":{
|
3610
|
-
"RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
|
3611
|
-
}
|
3612
|
-
},
|
3613
|
-
"PutRetentionConfigurationResponse":{
|
3614
|
-
"type":"structure",
|
3615
|
-
"members":{
|
3616
|
-
"RetentionConfiguration":{"shape":"RetentionConfiguration"}
|
3617
|
-
}
|
3618
|
-
},
|
3619
|
-
"QueryInfo":{
|
3620
|
-
"type":"structure",
|
3621
|
-
"members":{
|
3622
|
-
"SelectFields":{"shape":"FieldInfoList"}
|
3623
|
-
}
|
3624
|
-
},
|
3625
|
-
"RecorderName":{
|
3626
|
-
"type":"string",
|
3627
|
-
"max":256,
|
3628
|
-
"min":1
|
3629
|
-
},
|
3630
|
-
"RecorderStatus":{
|
3631
|
-
"type":"string",
|
3632
|
-
"enum":[
|
3633
|
-
"Pending",
|
3634
|
-
"Success",
|
3635
|
-
"Failure"
|
3636
|
-
]
|
3637
|
-
},
|
3638
|
-
"RecordingGroup":{
|
3639
|
-
"type":"structure",
|
3640
|
-
"members":{
|
3641
|
-
"allSupported":{"shape":"AllSupported"},
|
3642
|
-
"includeGlobalResourceTypes":{"shape":"IncludeGlobalResourceTypes"},
|
3643
|
-
"resourceTypes":{"shape":"ResourceTypeList"}
|
3644
|
-
}
|
3645
|
-
},
|
3646
|
-
"ReevaluateConfigRuleNames":{
|
3647
|
-
"type":"list",
|
3648
|
-
"member":{"shape":"StringWithCharLimit64"},
|
3649
|
-
"max":25,
|
3650
|
-
"min":1
|
3651
|
-
},
|
3652
|
-
"RelatedEvent":{"type":"string"},
|
3653
|
-
"RelatedEventList":{
|
3654
|
-
"type":"list",
|
3655
|
-
"member":{"shape":"RelatedEvent"}
|
3656
|
-
},
|
3657
|
-
"Relationship":{
|
3658
|
-
"type":"structure",
|
3659
|
-
"members":{
|
3660
|
-
"resourceType":{"shape":"ResourceType"},
|
3661
|
-
"resourceId":{"shape":"ResourceId"},
|
3662
|
-
"resourceName":{"shape":"ResourceName"},
|
3663
|
-
"relationshipName":{"shape":"RelationshipName"}
|
3664
|
-
}
|
3665
|
-
},
|
3666
|
-
"RelationshipList":{
|
3667
|
-
"type":"list",
|
3668
|
-
"member":{"shape":"Relationship"}
|
3669
|
-
},
|
3670
|
-
"RelationshipName":{"type":"string"},
|
3671
|
-
"RemediationConfiguration":{
|
3672
|
-
"type":"structure",
|
3673
|
-
"required":[
|
3674
|
-
"ConfigRuleName",
|
3675
|
-
"TargetType",
|
3676
|
-
"TargetId"
|
3677
|
-
],
|
3678
|
-
"members":{
|
3679
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
3680
|
-
"TargetType":{"shape":"RemediationTargetType"},
|
3681
|
-
"TargetId":{"shape":"StringWithCharLimit256"},
|
3682
|
-
"TargetVersion":{"shape":"String"},
|
3683
|
-
"Parameters":{"shape":"RemediationParameters"},
|
3684
|
-
"ResourceType":{"shape":"String"},
|
3685
|
-
"Automatic":{"shape":"Boolean"},
|
3686
|
-
"ExecutionControls":{"shape":"ExecutionControls"},
|
3687
|
-
"MaximumAutomaticAttempts":{"shape":"AutoRemediationAttempts"},
|
3688
|
-
"RetryAttemptSeconds":{"shape":"AutoRemediationAttemptSeconds"},
|
3689
|
-
"Arn":{"shape":"StringWithCharLimit1024"},
|
3690
|
-
"CreatedByService":{"shape":"StringWithCharLimit1024"}
|
3691
|
-
}
|
3692
|
-
},
|
3693
|
-
"RemediationConfigurations":{
|
3694
|
-
"type":"list",
|
3695
|
-
"member":{"shape":"RemediationConfiguration"},
|
3696
|
-
"max":25,
|
3697
|
-
"min":0
|
3698
|
-
},
|
3699
|
-
"RemediationException":{
|
3700
|
-
"type":"structure",
|
3701
|
-
"required":[
|
3702
|
-
"ConfigRuleName",
|
3703
|
-
"ResourceType",
|
3704
|
-
"ResourceId"
|
3705
|
-
],
|
3706
|
-
"members":{
|
3707
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
3708
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
3709
|
-
"ResourceId":{"shape":"StringWithCharLimit1024"},
|
3710
|
-
"Message":{"shape":"StringWithCharLimit1024"},
|
3711
|
-
"ExpirationTime":{"shape":"Date"}
|
3712
|
-
}
|
3713
|
-
},
|
3714
|
-
"RemediationExceptionResourceKey":{
|
3715
|
-
"type":"structure",
|
3716
|
-
"members":{
|
3717
|
-
"ResourceType":{"shape":"StringWithCharLimit256"},
|
3718
|
-
"ResourceId":{"shape":"StringWithCharLimit1024"}
|
3719
|
-
}
|
3720
|
-
},
|
3721
|
-
"RemediationExceptionResourceKeys":{
|
3722
|
-
"type":"list",
|
3723
|
-
"member":{"shape":"RemediationExceptionResourceKey"},
|
3724
|
-
"max":100,
|
3725
|
-
"min":1
|
3726
|
-
},
|
3727
|
-
"RemediationExceptions":{
|
3728
|
-
"type":"list",
|
3729
|
-
"member":{"shape":"RemediationException"},
|
3730
|
-
"max":25,
|
3731
|
-
"min":0
|
3732
|
-
},
|
3733
|
-
"RemediationExecutionState":{
|
3734
|
-
"type":"string",
|
3735
|
-
"enum":[
|
3736
|
-
"QUEUED",
|
3737
|
-
"IN_PROGRESS",
|
3738
|
-
"SUCCEEDED",
|
3739
|
-
"FAILED"
|
3740
|
-
]
|
3741
|
-
},
|
3742
|
-
"RemediationExecutionStatus":{
|
3743
|
-
"type":"structure",
|
3744
|
-
"members":{
|
3745
|
-
"ResourceKey":{"shape":"ResourceKey"},
|
3746
|
-
"State":{"shape":"RemediationExecutionState"},
|
3747
|
-
"StepDetails":{"shape":"RemediationExecutionSteps"},
|
3748
|
-
"InvocationTime":{"shape":"Date"},
|
3749
|
-
"LastUpdatedTime":{"shape":"Date"}
|
3750
|
-
}
|
3751
|
-
},
|
3752
|
-
"RemediationExecutionStatuses":{
|
3753
|
-
"type":"list",
|
3754
|
-
"member":{"shape":"RemediationExecutionStatus"}
|
3755
|
-
},
|
3756
|
-
"RemediationExecutionStep":{
|
3757
|
-
"type":"structure",
|
3758
|
-
"members":{
|
3759
|
-
"Name":{"shape":"String"},
|
3760
|
-
"State":{"shape":"RemediationExecutionStepState"},
|
3761
|
-
"ErrorMessage":{"shape":"String"},
|
3762
|
-
"StartTime":{"shape":"Date"},
|
3763
|
-
"StopTime":{"shape":"Date"}
|
3764
|
-
}
|
3765
|
-
},
|
3766
|
-
"RemediationExecutionStepState":{
|
3767
|
-
"type":"string",
|
3768
|
-
"enum":[
|
3769
|
-
"SUCCEEDED",
|
3770
|
-
"PENDING",
|
3771
|
-
"FAILED"
|
3772
|
-
]
|
3773
|
-
},
|
3774
|
-
"RemediationExecutionSteps":{
|
3775
|
-
"type":"list",
|
3776
|
-
"member":{"shape":"RemediationExecutionStep"}
|
3777
|
-
},
|
3778
|
-
"RemediationInProgressException":{
|
3779
|
-
"type":"structure",
|
3780
|
-
"members":{
|
3781
|
-
},
|
3782
|
-
"exception":true
|
3783
|
-
},
|
3784
|
-
"RemediationParameterValue":{
|
3785
|
-
"type":"structure",
|
3786
|
-
"members":{
|
3787
|
-
"ResourceValue":{"shape":"ResourceValue"},
|
3788
|
-
"StaticValue":{"shape":"StaticValue"}
|
3789
|
-
}
|
3790
|
-
},
|
3791
|
-
"RemediationParameters":{
|
3792
|
-
"type":"map",
|
3793
|
-
"key":{"shape":"StringWithCharLimit256"},
|
3794
|
-
"value":{"shape":"RemediationParameterValue"},
|
3795
|
-
"max":25,
|
3796
|
-
"min":0
|
3797
|
-
},
|
3798
|
-
"RemediationTargetType":{
|
3799
|
-
"type":"string",
|
3800
|
-
"enum":["SSM_DOCUMENT"]
|
3801
|
-
},
|
3802
|
-
"ResourceCount":{
|
3803
|
-
"type":"structure",
|
3804
|
-
"members":{
|
3805
|
-
"resourceType":{"shape":"ResourceType"},
|
3806
|
-
"count":{"shape":"Long"}
|
3807
|
-
}
|
3808
|
-
},
|
3809
|
-
"ResourceCountFilters":{
|
3810
|
-
"type":"structure",
|
3811
|
-
"members":{
|
3812
|
-
"ResourceType":{"shape":"ResourceType"},
|
3813
|
-
"AccountId":{"shape":"AccountId"},
|
3814
|
-
"Region":{"shape":"AwsRegion"}
|
3815
|
-
}
|
3816
|
-
},
|
3817
|
-
"ResourceCountGroupKey":{
|
3818
|
-
"type":"string",
|
3819
|
-
"enum":[
|
3820
|
-
"RESOURCE_TYPE",
|
3821
|
-
"ACCOUNT_ID",
|
3822
|
-
"AWS_REGION"
|
3823
|
-
]
|
3824
|
-
},
|
3825
|
-
"ResourceCounts":{
|
3826
|
-
"type":"list",
|
3827
|
-
"member":{"shape":"ResourceCount"}
|
3828
|
-
},
|
3829
|
-
"ResourceCreationTime":{"type":"timestamp"},
|
3830
|
-
"ResourceDeletionTime":{"type":"timestamp"},
|
3831
|
-
"ResourceFilters":{
|
3832
|
-
"type":"structure",
|
3833
|
-
"members":{
|
3834
|
-
"AccountId":{"shape":"AccountId"},
|
3835
|
-
"ResourceId":{"shape":"ResourceId"},
|
3836
|
-
"ResourceName":{"shape":"ResourceName"},
|
3837
|
-
"Region":{"shape":"AwsRegion"}
|
3838
|
-
}
|
3839
|
-
},
|
3840
|
-
"ResourceId":{
|
3841
|
-
"type":"string",
|
3842
|
-
"max":768,
|
3843
|
-
"min":1
|
3844
|
-
},
|
3845
|
-
"ResourceIdList":{
|
3846
|
-
"type":"list",
|
3847
|
-
"member":{"shape":"ResourceId"}
|
3848
|
-
},
|
3849
|
-
"ResourceIdentifier":{
|
3850
|
-
"type":"structure",
|
3851
|
-
"members":{
|
3852
|
-
"resourceType":{"shape":"ResourceType"},
|
3853
|
-
"resourceId":{"shape":"ResourceId"},
|
3854
|
-
"resourceName":{"shape":"ResourceName"},
|
3855
|
-
"resourceDeletionTime":{"shape":"ResourceDeletionTime"}
|
3856
|
-
}
|
3857
|
-
},
|
3858
|
-
"ResourceIdentifierList":{
|
3859
|
-
"type":"list",
|
3860
|
-
"member":{"shape":"ResourceIdentifier"}
|
3861
|
-
},
|
3862
|
-
"ResourceIdentifiersList":{
|
3863
|
-
"type":"list",
|
3864
|
-
"member":{"shape":"AggregateResourceIdentifier"},
|
3865
|
-
"max":100,
|
3866
|
-
"min":1
|
3867
|
-
},
|
3868
|
-
"ResourceInUseException":{
|
3869
|
-
"type":"structure",
|
3870
|
-
"members":{
|
3871
|
-
},
|
3872
|
-
"exception":true
|
3873
|
-
},
|
3874
|
-
"ResourceKey":{
|
3875
|
-
"type":"structure",
|
3876
|
-
"required":[
|
3877
|
-
"resourceType",
|
3878
|
-
"resourceId"
|
3879
|
-
],
|
3880
|
-
"members":{
|
3881
|
-
"resourceType":{"shape":"ResourceType"},
|
3882
|
-
"resourceId":{"shape":"ResourceId"}
|
3883
|
-
}
|
3884
|
-
},
|
3885
|
-
"ResourceKeys":{
|
3886
|
-
"type":"list",
|
3887
|
-
"member":{"shape":"ResourceKey"},
|
3888
|
-
"max":100,
|
3889
|
-
"min":1
|
3890
|
-
},
|
3891
|
-
"ResourceName":{"type":"string"},
|
3892
|
-
"ResourceNotDiscoveredException":{
|
3893
|
-
"type":"structure",
|
3894
|
-
"members":{
|
3895
|
-
},
|
3896
|
-
"exception":true
|
3897
|
-
},
|
3898
|
-
"ResourceNotFoundException":{
|
3899
|
-
"type":"structure",
|
3900
|
-
"members":{
|
3901
|
-
},
|
3902
|
-
"exception":true
|
3903
|
-
},
|
3904
|
-
"ResourceType":{
|
3905
|
-
"type":"string",
|
3906
|
-
"enum":[
|
3907
|
-
"AWS::EC2::CustomerGateway",
|
3908
|
-
"AWS::EC2::EIP",
|
3909
|
-
"AWS::EC2::Host",
|
3910
|
-
"AWS::EC2::Instance",
|
3911
|
-
"AWS::EC2::InternetGateway",
|
3912
|
-
"AWS::EC2::NetworkAcl",
|
3913
|
-
"AWS::EC2::NetworkInterface",
|
3914
|
-
"AWS::EC2::RouteTable",
|
3915
|
-
"AWS::EC2::SecurityGroup",
|
3916
|
-
"AWS::EC2::Subnet",
|
3917
|
-
"AWS::CloudTrail::Trail",
|
3918
|
-
"AWS::EC2::Volume",
|
3919
|
-
"AWS::EC2::VPC",
|
3920
|
-
"AWS::EC2::VPNConnection",
|
3921
|
-
"AWS::EC2::VPNGateway",
|
3922
|
-
"AWS::EC2::RegisteredHAInstance",
|
3923
|
-
"AWS::EC2::NatGateway",
|
3924
|
-
"AWS::EC2::EgressOnlyInternetGateway",
|
3925
|
-
"AWS::EC2::VPCEndpoint",
|
3926
|
-
"AWS::EC2::VPCEndpointService",
|
3927
|
-
"AWS::EC2::FlowLog",
|
3928
|
-
"AWS::EC2::VPCPeeringConnection",
|
3929
|
-
"AWS::IAM::Group",
|
3930
|
-
"AWS::IAM::Policy",
|
3931
|
-
"AWS::IAM::Role",
|
3932
|
-
"AWS::IAM::User",
|
3933
|
-
"AWS::ElasticLoadBalancingV2::LoadBalancer",
|
3934
|
-
"AWS::ACM::Certificate",
|
3935
|
-
"AWS::RDS::DBInstance",
|
3936
|
-
"AWS::RDS::DBParameterGroup",
|
3937
|
-
"AWS::RDS::DBOptionGroup",
|
3938
|
-
"AWS::RDS::DBSubnetGroup",
|
3939
|
-
"AWS::RDS::DBSecurityGroup",
|
3940
|
-
"AWS::RDS::DBSnapshot",
|
3941
|
-
"AWS::RDS::DBCluster",
|
3942
|
-
"AWS::RDS::DBClusterParameterGroup",
|
3943
|
-
"AWS::RDS::DBClusterSnapshot",
|
3944
|
-
"AWS::RDS::EventSubscription",
|
3945
|
-
"AWS::S3::Bucket",
|
3946
|
-
"AWS::S3::AccountPublicAccessBlock",
|
3947
|
-
"AWS::Redshift::Cluster",
|
3948
|
-
"AWS::Redshift::ClusterSnapshot",
|
3949
|
-
"AWS::Redshift::ClusterParameterGroup",
|
3950
|
-
"AWS::Redshift::ClusterSecurityGroup",
|
3951
|
-
"AWS::Redshift::ClusterSubnetGroup",
|
3952
|
-
"AWS::Redshift::EventSubscription",
|
3953
|
-
"AWS::SSM::ManagedInstanceInventory",
|
3954
|
-
"AWS::CloudWatch::Alarm",
|
3955
|
-
"AWS::CloudFormation::Stack",
|
3956
|
-
"AWS::ElasticLoadBalancing::LoadBalancer",
|
3957
|
-
"AWS::AutoScaling::AutoScalingGroup",
|
3958
|
-
"AWS::AutoScaling::LaunchConfiguration",
|
3959
|
-
"AWS::AutoScaling::ScalingPolicy",
|
3960
|
-
"AWS::AutoScaling::ScheduledAction",
|
3961
|
-
"AWS::DynamoDB::Table",
|
3962
|
-
"AWS::CodeBuild::Project",
|
3963
|
-
"AWS::WAF::RateBasedRule",
|
3964
|
-
"AWS::WAF::Rule",
|
3965
|
-
"AWS::WAF::RuleGroup",
|
3966
|
-
"AWS::WAF::WebACL",
|
3967
|
-
"AWS::WAFRegional::RateBasedRule",
|
3968
|
-
"AWS::WAFRegional::Rule",
|
3969
|
-
"AWS::WAFRegional::RuleGroup",
|
3970
|
-
"AWS::WAFRegional::WebACL",
|
3971
|
-
"AWS::CloudFront::Distribution",
|
3972
|
-
"AWS::CloudFront::StreamingDistribution",
|
3973
|
-
"AWS::Lambda::Alias",
|
3974
|
-
"AWS::Lambda::Function",
|
3975
|
-
"AWS::ElasticBeanstalk::Application",
|
3976
|
-
"AWS::ElasticBeanstalk::ApplicationVersion",
|
3977
|
-
"AWS::ElasticBeanstalk::Environment",
|
3978
|
-
"AWS::MobileHub::Project",
|
3979
|
-
"AWS::XRay::EncryptionConfig",
|
3980
|
-
"AWS::SSM::AssociationCompliance",
|
3981
|
-
"AWS::SSM::PatchCompliance",
|
3982
|
-
"AWS::Shield::Protection",
|
3983
|
-
"AWS::ShieldRegional::Protection",
|
3984
|
-
"AWS::Config::ResourceCompliance",
|
3985
|
-
"AWS::LicenseManager::LicenseConfiguration",
|
3986
|
-
"AWS::ApiGateway::DomainName",
|
3987
|
-
"AWS::ApiGateway::Method",
|
3988
|
-
"AWS::ApiGateway::Stage",
|
3989
|
-
"AWS::ApiGateway::RestApi",
|
3990
|
-
"AWS::ApiGatewayV2::DomainName",
|
3991
|
-
"AWS::ApiGatewayV2::Stage",
|
3992
|
-
"AWS::ApiGatewayV2::Api",
|
3993
|
-
"AWS::CodePipeline::Pipeline",
|
3994
|
-
"AWS::ServiceCatalog::CloudFormationProvisionedProduct",
|
3995
|
-
"AWS::ServiceCatalog::CloudFormationProduct",
|
3996
|
-
"AWS::ServiceCatalog::Portfolio"
|
3997
|
-
]
|
3998
|
-
},
|
3999
|
-
"ResourceTypeList":{
|
4000
|
-
"type":"list",
|
4001
|
-
"member":{"shape":"ResourceType"}
|
4002
|
-
},
|
4003
|
-
"ResourceTypeString":{
|
4004
|
-
"type":"string",
|
4005
|
-
"max":196,
|
4006
|
-
"min":1
|
4007
|
-
},
|
4008
|
-
"ResourceTypes":{
|
4009
|
-
"type":"list",
|
4010
|
-
"member":{"shape":"StringWithCharLimit256"},
|
4011
|
-
"max":20,
|
4012
|
-
"min":0
|
4013
|
-
},
|
4014
|
-
"ResourceTypesScope":{
|
4015
|
-
"type":"list",
|
4016
|
-
"member":{"shape":"StringWithCharLimit256"},
|
4017
|
-
"max":100,
|
4018
|
-
"min":0
|
4019
|
-
},
|
4020
|
-
"ResourceValue":{
|
4021
|
-
"type":"structure",
|
4022
|
-
"required":["Value"],
|
4023
|
-
"members":{
|
4024
|
-
"Value":{"shape":"ResourceValueType"}
|
4025
|
-
}
|
4026
|
-
},
|
4027
|
-
"ResourceValueType":{
|
4028
|
-
"type":"string",
|
4029
|
-
"enum":["RESOURCE_ID"]
|
4030
|
-
},
|
4031
|
-
"Results":{
|
4032
|
-
"type":"list",
|
4033
|
-
"member":{"shape":"String"}
|
4034
|
-
},
|
4035
|
-
"RetentionConfiguration":{
|
4036
|
-
"type":"structure",
|
4037
|
-
"required":[
|
4038
|
-
"Name",
|
4039
|
-
"RetentionPeriodInDays"
|
4040
|
-
],
|
4041
|
-
"members":{
|
4042
|
-
"Name":{"shape":"RetentionConfigurationName"},
|
4043
|
-
"RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
|
4044
|
-
}
|
4045
|
-
},
|
4046
|
-
"RetentionConfigurationList":{
|
4047
|
-
"type":"list",
|
4048
|
-
"member":{"shape":"RetentionConfiguration"}
|
4049
|
-
},
|
4050
|
-
"RetentionConfigurationName":{
|
4051
|
-
"type":"string",
|
4052
|
-
"max":256,
|
4053
|
-
"min":1,
|
4054
|
-
"pattern":"[\\w\\-]+"
|
4055
|
-
},
|
4056
|
-
"RetentionConfigurationNameList":{
|
4057
|
-
"type":"list",
|
4058
|
-
"member":{"shape":"RetentionConfigurationName"},
|
4059
|
-
"max":1,
|
4060
|
-
"min":0
|
4061
|
-
},
|
4062
|
-
"RetentionPeriodInDays":{
|
4063
|
-
"type":"integer",
|
4064
|
-
"max":2557,
|
4065
|
-
"min":30
|
4066
|
-
},
|
4067
|
-
"RuleLimit":{
|
4068
|
-
"type":"integer",
|
4069
|
-
"max":50,
|
4070
|
-
"min":0
|
4071
|
-
},
|
4072
|
-
"SchemaVersionId":{
|
4073
|
-
"type":"string",
|
4074
|
-
"max":128,
|
4075
|
-
"min":1,
|
4076
|
-
"pattern":"[A-Za-z0-9-]+"
|
4077
|
-
},
|
4078
|
-
"Scope":{
|
4079
|
-
"type":"structure",
|
4080
|
-
"members":{
|
4081
|
-
"ComplianceResourceTypes":{"shape":"ComplianceResourceTypes"},
|
4082
|
-
"TagKey":{"shape":"StringWithCharLimit128"},
|
4083
|
-
"TagValue":{"shape":"StringWithCharLimit256"},
|
4084
|
-
"ComplianceResourceId":{"shape":"BaseResourceId"}
|
4085
|
-
}
|
4086
|
-
},
|
4087
|
-
"SelectResourceConfigRequest":{
|
4088
|
-
"type":"structure",
|
4089
|
-
"required":["Expression"],
|
4090
|
-
"members":{
|
4091
|
-
"Expression":{"shape":"Expression"},
|
4092
|
-
"Limit":{"shape":"Limit"},
|
4093
|
-
"NextToken":{"shape":"NextToken"}
|
4094
|
-
}
|
4095
|
-
},
|
4096
|
-
"SelectResourceConfigResponse":{
|
4097
|
-
"type":"structure",
|
4098
|
-
"members":{
|
4099
|
-
"Results":{"shape":"Results"},
|
4100
|
-
"QueryInfo":{"shape":"QueryInfo"},
|
4101
|
-
"NextToken":{"shape":"NextToken"}
|
4102
|
-
}
|
4103
|
-
},
|
4104
|
-
"Source":{
|
4105
|
-
"type":"structure",
|
4106
|
-
"required":[
|
4107
|
-
"Owner",
|
4108
|
-
"SourceIdentifier"
|
4109
|
-
],
|
4110
|
-
"members":{
|
4111
|
-
"Owner":{"shape":"Owner"},
|
4112
|
-
"SourceIdentifier":{"shape":"StringWithCharLimit256"},
|
4113
|
-
"SourceDetails":{"shape":"SourceDetails"}
|
4114
|
-
}
|
4115
|
-
},
|
4116
|
-
"SourceDetail":{
|
4117
|
-
"type":"structure",
|
4118
|
-
"members":{
|
4119
|
-
"EventSource":{"shape":"EventSource"},
|
4120
|
-
"MessageType":{"shape":"MessageType"},
|
4121
|
-
"MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"}
|
4122
|
-
}
|
4123
|
-
},
|
4124
|
-
"SourceDetails":{
|
4125
|
-
"type":"list",
|
4126
|
-
"member":{"shape":"SourceDetail"},
|
4127
|
-
"max":25,
|
4128
|
-
"min":0
|
4129
|
-
},
|
4130
|
-
"SsmControls":{
|
4131
|
-
"type":"structure",
|
4132
|
-
"members":{
|
4133
|
-
"ConcurrentExecutionRatePercentage":{"shape":"Percentage"},
|
4134
|
-
"ErrorPercentage":{"shape":"Percentage"}
|
4135
|
-
}
|
4136
|
-
},
|
4137
|
-
"StackArn":{
|
4138
|
-
"type":"string",
|
4139
|
-
"max":2048,
|
4140
|
-
"min":1
|
4141
|
-
},
|
4142
|
-
"StartConfigRulesEvaluationRequest":{
|
4143
|
-
"type":"structure",
|
4144
|
-
"members":{
|
4145
|
-
"ConfigRuleNames":{"shape":"ReevaluateConfigRuleNames"}
|
4146
|
-
}
|
4147
|
-
},
|
4148
|
-
"StartConfigRulesEvaluationResponse":{
|
4149
|
-
"type":"structure",
|
4150
|
-
"members":{
|
4151
|
-
}
|
4152
|
-
},
|
4153
|
-
"StartConfigurationRecorderRequest":{
|
4154
|
-
"type":"structure",
|
4155
|
-
"required":["ConfigurationRecorderName"],
|
4156
|
-
"members":{
|
4157
|
-
"ConfigurationRecorderName":{"shape":"RecorderName"}
|
4158
|
-
}
|
4159
|
-
},
|
4160
|
-
"StartRemediationExecutionRequest":{
|
4161
|
-
"type":"structure",
|
4162
|
-
"required":[
|
4163
|
-
"ConfigRuleName",
|
4164
|
-
"ResourceKeys"
|
4165
|
-
],
|
4166
|
-
"members":{
|
4167
|
-
"ConfigRuleName":{"shape":"ConfigRuleName"},
|
4168
|
-
"ResourceKeys":{"shape":"ResourceKeys"}
|
4169
|
-
}
|
4170
|
-
},
|
4171
|
-
"StartRemediationExecutionResponse":{
|
4172
|
-
"type":"structure",
|
4173
|
-
"members":{
|
4174
|
-
"FailureMessage":{"shape":"String"},
|
4175
|
-
"FailedItems":{"shape":"ResourceKeys"}
|
4176
|
-
}
|
4177
|
-
},
|
4178
|
-
"StaticParameterValues":{
|
4179
|
-
"type":"list",
|
4180
|
-
"member":{"shape":"StringWithCharLimit256"},
|
4181
|
-
"max":25,
|
4182
|
-
"min":0
|
4183
|
-
},
|
4184
|
-
"StaticValue":{
|
4185
|
-
"type":"structure",
|
4186
|
-
"required":["Values"],
|
4187
|
-
"members":{
|
4188
|
-
"Values":{"shape":"StaticParameterValues"}
|
4189
|
-
}
|
4190
|
-
},
|
4191
|
-
"StatusDetailFilters":{
|
4192
|
-
"type":"structure",
|
4193
|
-
"members":{
|
4194
|
-
"AccountId":{"shape":"AccountId"},
|
4195
|
-
"MemberAccountRuleStatus":{"shape":"MemberAccountRuleStatus"}
|
4196
|
-
}
|
4197
|
-
},
|
4198
|
-
"StopConfigurationRecorderRequest":{
|
4199
|
-
"type":"structure",
|
4200
|
-
"required":["ConfigurationRecorderName"],
|
4201
|
-
"members":{
|
4202
|
-
"ConfigurationRecorderName":{"shape":"RecorderName"}
|
4203
|
-
}
|
4204
|
-
},
|
4205
|
-
"String":{"type":"string"},
|
4206
|
-
"StringWithCharLimit1024":{
|
4207
|
-
"type":"string",
|
4208
|
-
"max":1024,
|
4209
|
-
"min":1
|
4210
|
-
},
|
4211
|
-
"StringWithCharLimit128":{
|
4212
|
-
"type":"string",
|
4213
|
-
"max":128,
|
4214
|
-
"min":1
|
4215
|
-
},
|
4216
|
-
"StringWithCharLimit2048":{
|
4217
|
-
"type":"string",
|
4218
|
-
"max":2048,
|
4219
|
-
"min":1
|
4220
|
-
},
|
4221
|
-
"StringWithCharLimit256":{
|
4222
|
-
"type":"string",
|
4223
|
-
"max":256,
|
4224
|
-
"min":1
|
4225
|
-
},
|
4226
|
-
"StringWithCharLimit256Min0":{
|
4227
|
-
"type":"string",
|
4228
|
-
"max":256,
|
4229
|
-
"min":0
|
4230
|
-
},
|
4231
|
-
"StringWithCharLimit64":{
|
4232
|
-
"type":"string",
|
4233
|
-
"max":64,
|
4234
|
-
"min":1
|
4235
|
-
},
|
4236
|
-
"StringWithCharLimit768":{
|
4237
|
-
"type":"string",
|
4238
|
-
"max":768,
|
4239
|
-
"min":1
|
4240
|
-
},
|
4241
|
-
"SupplementaryConfiguration":{
|
4242
|
-
"type":"map",
|
4243
|
-
"key":{"shape":"SupplementaryConfigurationName"},
|
4244
|
-
"value":{"shape":"SupplementaryConfigurationValue"}
|
4245
|
-
},
|
4246
|
-
"SupplementaryConfigurationName":{"type":"string"},
|
4247
|
-
"SupplementaryConfigurationValue":{"type":"string"},
|
4248
|
-
"Tag":{
|
4249
|
-
"type":"structure",
|
4250
|
-
"members":{
|
4251
|
-
"Key":{"shape":"TagKey"},
|
4252
|
-
"Value":{"shape":"TagValue"}
|
4253
|
-
}
|
4254
|
-
},
|
4255
|
-
"TagKey":{
|
4256
|
-
"type":"string",
|
4257
|
-
"max":128,
|
4258
|
-
"min":1
|
4259
|
-
},
|
4260
|
-
"TagKeyList":{
|
4261
|
-
"type":"list",
|
4262
|
-
"member":{"shape":"TagKey"},
|
4263
|
-
"max":50,
|
4264
|
-
"min":1
|
4265
|
-
},
|
4266
|
-
"TagList":{
|
4267
|
-
"type":"list",
|
4268
|
-
"member":{"shape":"Tag"},
|
4269
|
-
"max":50,
|
4270
|
-
"min":1
|
4271
|
-
},
|
4272
|
-
"TagResourceRequest":{
|
4273
|
-
"type":"structure",
|
4274
|
-
"required":[
|
4275
|
-
"ResourceArn",
|
4276
|
-
"Tags"
|
4277
|
-
],
|
4278
|
-
"members":{
|
4279
|
-
"ResourceArn":{"shape":"AmazonResourceName"},
|
4280
|
-
"Tags":{"shape":"TagList"}
|
4281
|
-
}
|
4282
|
-
},
|
4283
|
-
"TagValue":{
|
4284
|
-
"type":"string",
|
4285
|
-
"max":256,
|
4286
|
-
"min":0
|
4287
|
-
},
|
4288
|
-
"Tags":{
|
4289
|
-
"type":"map",
|
4290
|
-
"key":{"shape":"Name"},
|
4291
|
-
"value":{"shape":"Value"}
|
4292
|
-
},
|
4293
|
-
"TagsList":{
|
4294
|
-
"type":"list",
|
4295
|
-
"member":{"shape":"Tag"},
|
4296
|
-
"max":50,
|
4297
|
-
"min":0
|
4298
|
-
},
|
4299
|
-
"TemplateBody":{
|
4300
|
-
"type":"string",
|
4301
|
-
"max":51200,
|
4302
|
-
"min":1
|
4303
|
-
},
|
4304
|
-
"TemplateS3Uri":{
|
4305
|
-
"type":"string",
|
4306
|
-
"max":1024,
|
4307
|
-
"min":1,
|
4308
|
-
"pattern":"s3://.*"
|
4309
|
-
},
|
4310
|
-
"TooManyTagsException":{
|
4311
|
-
"type":"structure",
|
4312
|
-
"members":{
|
4313
|
-
},
|
4314
|
-
"exception":true
|
4315
|
-
},
|
4316
|
-
"UnprocessedResourceIdentifierList":{
|
4317
|
-
"type":"list",
|
4318
|
-
"member":{"shape":"AggregateResourceIdentifier"}
|
4319
|
-
},
|
4320
|
-
"UntagResourceRequest":{
|
4321
|
-
"type":"structure",
|
4322
|
-
"required":[
|
4323
|
-
"ResourceArn",
|
4324
|
-
"TagKeys"
|
4325
|
-
],
|
4326
|
-
"members":{
|
4327
|
-
"ResourceArn":{"shape":"AmazonResourceName"},
|
4328
|
-
"TagKeys":{"shape":"TagKeyList"}
|
4329
|
-
}
|
4330
|
-
},
|
4331
|
-
"ValidationException":{
|
4332
|
-
"type":"structure",
|
4333
|
-
"members":{
|
4334
|
-
},
|
4335
|
-
"exception":true
|
4336
|
-
},
|
4337
|
-
"Value":{"type":"string"},
|
4338
|
-
"Version":{"type":"string"}
|
4339
|
-
}
|
4340
|
-
}
|