aws-sdk-core 2.11.335 → 3.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -547
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +147 -10
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1021
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3994
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3202
- 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 -2304
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3270
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -16
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -247
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1204
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -24837
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2809
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -597
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -4
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3131
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3447
- 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 -798
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2345
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -8711
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2490
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6575
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2093
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2095
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1078
- 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 -8913
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1372
- 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 -3160
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -504
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -851
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -4601
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/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 -749
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListServers": {
|
4
|
-
"input_token": "NextToken",
|
5
|
-
"output_token": "NextToken",
|
6
|
-
"limit_key": "MaxResults"
|
7
|
-
},
|
8
|
-
"ListTagsForResource": {
|
9
|
-
"input_token": "NextToken",
|
10
|
-
"output_token": "NextToken",
|
11
|
-
"limit_key": "MaxResults"
|
12
|
-
},
|
13
|
-
"ListUsers": {
|
14
|
-
"input_token": "NextToken",
|
15
|
-
"output_token": "NextToken",
|
16
|
-
"limit_key": "MaxResults"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|
@@ -1,408 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2017-07-01",
|
5
|
-
"endpointPrefix":"translate",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceFullName":"Amazon Translate",
|
9
|
-
"serviceId":"Translate",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"signingName":"translate",
|
12
|
-
"targetPrefix":"AWSShineFrontendService_20170701",
|
13
|
-
"uid":"translate-2017-07-01"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"DeleteTerminology":{
|
17
|
-
"name":"DeleteTerminology",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/"
|
21
|
-
},
|
22
|
-
"input":{"shape":"DeleteTerminologyRequest"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"ResourceNotFoundException"},
|
25
|
-
{"shape":"TooManyRequestsException"},
|
26
|
-
{"shape":"InternalServerException"}
|
27
|
-
]
|
28
|
-
},
|
29
|
-
"GetTerminology":{
|
30
|
-
"name":"GetTerminology",
|
31
|
-
"http":{
|
32
|
-
"method":"POST",
|
33
|
-
"requestUri":"/"
|
34
|
-
},
|
35
|
-
"input":{"shape":"GetTerminologyRequest"},
|
36
|
-
"output":{"shape":"GetTerminologyResponse"},
|
37
|
-
"errors":[
|
38
|
-
{"shape":"ResourceNotFoundException"},
|
39
|
-
{"shape":"InvalidParameterValueException"},
|
40
|
-
{"shape":"TooManyRequestsException"},
|
41
|
-
{"shape":"InternalServerException"}
|
42
|
-
]
|
43
|
-
},
|
44
|
-
"ImportTerminology":{
|
45
|
-
"name":"ImportTerminology",
|
46
|
-
"http":{
|
47
|
-
"method":"POST",
|
48
|
-
"requestUri":"/"
|
49
|
-
},
|
50
|
-
"input":{"shape":"ImportTerminologyRequest"},
|
51
|
-
"output":{"shape":"ImportTerminologyResponse"},
|
52
|
-
"errors":[
|
53
|
-
{"shape":"InvalidParameterValueException"},
|
54
|
-
{"shape":"LimitExceededException"},
|
55
|
-
{"shape":"TooManyRequestsException"},
|
56
|
-
{"shape":"InternalServerException"}
|
57
|
-
]
|
58
|
-
},
|
59
|
-
"ListTerminologies":{
|
60
|
-
"name":"ListTerminologies",
|
61
|
-
"http":{
|
62
|
-
"method":"POST",
|
63
|
-
"requestUri":"/"
|
64
|
-
},
|
65
|
-
"input":{"shape":"ListTerminologiesRequest"},
|
66
|
-
"output":{"shape":"ListTerminologiesResponse"},
|
67
|
-
"errors":[
|
68
|
-
{"shape":"InvalidParameterValueException"},
|
69
|
-
{"shape":"TooManyRequestsException"},
|
70
|
-
{"shape":"InternalServerException"}
|
71
|
-
]
|
72
|
-
},
|
73
|
-
"TranslateText":{
|
74
|
-
"name":"TranslateText",
|
75
|
-
"http":{
|
76
|
-
"method":"POST",
|
77
|
-
"requestUri":"/"
|
78
|
-
},
|
79
|
-
"input":{"shape":"TranslateTextRequest"},
|
80
|
-
"output":{"shape":"TranslateTextResponse"},
|
81
|
-
"errors":[
|
82
|
-
{"shape":"InvalidRequestException"},
|
83
|
-
{"shape":"TextSizeLimitExceededException"},
|
84
|
-
{"shape":"TooManyRequestsException"},
|
85
|
-
{"shape":"UnsupportedLanguagePairException"},
|
86
|
-
{"shape":"DetectedLanguageLowConfidenceException"},
|
87
|
-
{"shape":"ResourceNotFoundException"},
|
88
|
-
{"shape":"InternalServerException"},
|
89
|
-
{"shape":"ServiceUnavailableException"}
|
90
|
-
]
|
91
|
-
}
|
92
|
-
},
|
93
|
-
"shapes":{
|
94
|
-
"AppliedTerminology":{
|
95
|
-
"type":"structure",
|
96
|
-
"members":{
|
97
|
-
"Name":{"shape":"ResourceName"},
|
98
|
-
"Terms":{"shape":"TermList"}
|
99
|
-
}
|
100
|
-
},
|
101
|
-
"AppliedTerminologyList":{
|
102
|
-
"type":"list",
|
103
|
-
"member":{"shape":"AppliedTerminology"}
|
104
|
-
},
|
105
|
-
"BoundedLengthString":{
|
106
|
-
"type":"string",
|
107
|
-
"max":5000,
|
108
|
-
"min":1,
|
109
|
-
"pattern":"[\\P{M}\\p{M}]{1,5000}"
|
110
|
-
},
|
111
|
-
"DeleteTerminologyRequest":{
|
112
|
-
"type":"structure",
|
113
|
-
"required":["Name"],
|
114
|
-
"members":{
|
115
|
-
"Name":{"shape":"ResourceName"}
|
116
|
-
}
|
117
|
-
},
|
118
|
-
"Description":{
|
119
|
-
"type":"string",
|
120
|
-
"max":256,
|
121
|
-
"pattern":"[\\P{M}\\p{M}]{0,256}"
|
122
|
-
},
|
123
|
-
"DetectedLanguageLowConfidenceException":{
|
124
|
-
"type":"structure",
|
125
|
-
"members":{
|
126
|
-
"Message":{"shape":"String"},
|
127
|
-
"DetectedLanguageCode":{"shape":"LanguageCodeString"}
|
128
|
-
},
|
129
|
-
"exception":true
|
130
|
-
},
|
131
|
-
"EncryptionKey":{
|
132
|
-
"type":"structure",
|
133
|
-
"required":[
|
134
|
-
"Type",
|
135
|
-
"Id"
|
136
|
-
],
|
137
|
-
"members":{
|
138
|
-
"Type":{"shape":"EncryptionKeyType"},
|
139
|
-
"Id":{"shape":"EncryptionKeyID"}
|
140
|
-
}
|
141
|
-
},
|
142
|
-
"EncryptionKeyID":{
|
143
|
-
"type":"string",
|
144
|
-
"max":400,
|
145
|
-
"min":1,
|
146
|
-
"pattern":"(arn:aws((-us-gov)|(-cn))?:kms:)?([a-z]{2}-[a-z]+-\\d:)?(\\d{12}:)?(((key/)?[a-zA-Z0-9-_]+)|(alias/[a-zA-Z0-9:/_-]+))"
|
147
|
-
},
|
148
|
-
"EncryptionKeyType":{
|
149
|
-
"type":"string",
|
150
|
-
"enum":["KMS"]
|
151
|
-
},
|
152
|
-
"GetTerminologyRequest":{
|
153
|
-
"type":"structure",
|
154
|
-
"required":[
|
155
|
-
"Name",
|
156
|
-
"TerminologyDataFormat"
|
157
|
-
],
|
158
|
-
"members":{
|
159
|
-
"Name":{"shape":"ResourceName"},
|
160
|
-
"TerminologyDataFormat":{"shape":"TerminologyDataFormat"}
|
161
|
-
}
|
162
|
-
},
|
163
|
-
"GetTerminologyResponse":{
|
164
|
-
"type":"structure",
|
165
|
-
"members":{
|
166
|
-
"TerminologyProperties":{"shape":"TerminologyProperties"},
|
167
|
-
"TerminologyDataLocation":{"shape":"TerminologyDataLocation"}
|
168
|
-
}
|
169
|
-
},
|
170
|
-
"ImportTerminologyRequest":{
|
171
|
-
"type":"structure",
|
172
|
-
"required":[
|
173
|
-
"Name",
|
174
|
-
"MergeStrategy",
|
175
|
-
"TerminologyData"
|
176
|
-
],
|
177
|
-
"members":{
|
178
|
-
"Name":{"shape":"ResourceName"},
|
179
|
-
"MergeStrategy":{"shape":"MergeStrategy"},
|
180
|
-
"Description":{"shape":"Description"},
|
181
|
-
"TerminologyData":{"shape":"TerminologyData"},
|
182
|
-
"EncryptionKey":{"shape":"EncryptionKey"}
|
183
|
-
}
|
184
|
-
},
|
185
|
-
"ImportTerminologyResponse":{
|
186
|
-
"type":"structure",
|
187
|
-
"members":{
|
188
|
-
"TerminologyProperties":{"shape":"TerminologyProperties"}
|
189
|
-
}
|
190
|
-
},
|
191
|
-
"Integer":{"type":"integer"},
|
192
|
-
"InternalServerException":{
|
193
|
-
"type":"structure",
|
194
|
-
"members":{
|
195
|
-
"Message":{"shape":"String"}
|
196
|
-
},
|
197
|
-
"exception":true,
|
198
|
-
"fault":true
|
199
|
-
},
|
200
|
-
"InvalidParameterValueException":{
|
201
|
-
"type":"structure",
|
202
|
-
"members":{
|
203
|
-
"Message":{"shape":"String"}
|
204
|
-
},
|
205
|
-
"exception":true
|
206
|
-
},
|
207
|
-
"InvalidRequestException":{
|
208
|
-
"type":"structure",
|
209
|
-
"members":{
|
210
|
-
"Message":{"shape":"String"}
|
211
|
-
},
|
212
|
-
"exception":true
|
213
|
-
},
|
214
|
-
"LanguageCodeString":{
|
215
|
-
"type":"string",
|
216
|
-
"max":5,
|
217
|
-
"min":2
|
218
|
-
},
|
219
|
-
"LanguageCodeStringList":{
|
220
|
-
"type":"list",
|
221
|
-
"member":{"shape":"LanguageCodeString"}
|
222
|
-
},
|
223
|
-
"LimitExceededException":{
|
224
|
-
"type":"structure",
|
225
|
-
"members":{
|
226
|
-
"Message":{"shape":"String"}
|
227
|
-
},
|
228
|
-
"exception":true
|
229
|
-
},
|
230
|
-
"ListTerminologiesRequest":{
|
231
|
-
"type":"structure",
|
232
|
-
"members":{
|
233
|
-
"NextToken":{"shape":"NextToken"},
|
234
|
-
"MaxResults":{"shape":"MaxResultsInteger"}
|
235
|
-
}
|
236
|
-
},
|
237
|
-
"ListTerminologiesResponse":{
|
238
|
-
"type":"structure",
|
239
|
-
"members":{
|
240
|
-
"TerminologyPropertiesList":{"shape":"TerminologyPropertiesList"},
|
241
|
-
"NextToken":{"shape":"NextToken"}
|
242
|
-
}
|
243
|
-
},
|
244
|
-
"MaxResultsInteger":{
|
245
|
-
"type":"integer",
|
246
|
-
"max":500,
|
247
|
-
"min":1
|
248
|
-
},
|
249
|
-
"MergeStrategy":{
|
250
|
-
"type":"string",
|
251
|
-
"enum":["OVERWRITE"]
|
252
|
-
},
|
253
|
-
"NextToken":{
|
254
|
-
"type":"string",
|
255
|
-
"max":8192,
|
256
|
-
"pattern":"\\p{ASCII}{0,8192}"
|
257
|
-
},
|
258
|
-
"ResourceName":{
|
259
|
-
"type":"string",
|
260
|
-
"max":256,
|
261
|
-
"min":1,
|
262
|
-
"pattern":"^([A-Za-z0-9-]_?)+$"
|
263
|
-
},
|
264
|
-
"ResourceNameList":{
|
265
|
-
"type":"list",
|
266
|
-
"member":{"shape":"ResourceName"}
|
267
|
-
},
|
268
|
-
"ResourceNotFoundException":{
|
269
|
-
"type":"structure",
|
270
|
-
"members":{
|
271
|
-
"Message":{"shape":"String"}
|
272
|
-
},
|
273
|
-
"exception":true
|
274
|
-
},
|
275
|
-
"ServiceUnavailableException":{
|
276
|
-
"type":"structure",
|
277
|
-
"members":{
|
278
|
-
"Message":{"shape":"String"}
|
279
|
-
},
|
280
|
-
"exception":true
|
281
|
-
},
|
282
|
-
"String":{
|
283
|
-
"type":"string",
|
284
|
-
"max":10000,
|
285
|
-
"pattern":"[\\P{M}\\p{M}]{0,10000}"
|
286
|
-
},
|
287
|
-
"Term":{
|
288
|
-
"type":"structure",
|
289
|
-
"members":{
|
290
|
-
"SourceText":{"shape":"String"},
|
291
|
-
"TargetText":{"shape":"String"}
|
292
|
-
}
|
293
|
-
},
|
294
|
-
"TermList":{
|
295
|
-
"type":"list",
|
296
|
-
"member":{"shape":"Term"}
|
297
|
-
},
|
298
|
-
"TerminologyArn":{
|
299
|
-
"type":"string",
|
300
|
-
"pattern":"^arn:aws((-us-gov)|(-cn))?:translate:[a-zA-Z0-9-]+:[0-9]{12}:terminology/.+?/.+?$"
|
301
|
-
},
|
302
|
-
"TerminologyData":{
|
303
|
-
"type":"structure",
|
304
|
-
"required":[
|
305
|
-
"File",
|
306
|
-
"Format"
|
307
|
-
],
|
308
|
-
"members":{
|
309
|
-
"File":{"shape":"TerminologyFile"},
|
310
|
-
"Format":{"shape":"TerminologyDataFormat"}
|
311
|
-
}
|
312
|
-
},
|
313
|
-
"TerminologyDataFormat":{
|
314
|
-
"type":"string",
|
315
|
-
"enum":[
|
316
|
-
"CSV",
|
317
|
-
"TMX"
|
318
|
-
]
|
319
|
-
},
|
320
|
-
"TerminologyDataLocation":{
|
321
|
-
"type":"structure",
|
322
|
-
"required":[
|
323
|
-
"RepositoryType",
|
324
|
-
"Location"
|
325
|
-
],
|
326
|
-
"members":{
|
327
|
-
"RepositoryType":{"shape":"String"},
|
328
|
-
"Location":{"shape":"String"}
|
329
|
-
}
|
330
|
-
},
|
331
|
-
"TerminologyFile":{
|
332
|
-
"type":"blob",
|
333
|
-
"max":10485760,
|
334
|
-
"sensitive":true
|
335
|
-
},
|
336
|
-
"TerminologyProperties":{
|
337
|
-
"type":"structure",
|
338
|
-
"members":{
|
339
|
-
"Name":{"shape":"ResourceName"},
|
340
|
-
"Description":{"shape":"Description"},
|
341
|
-
"Arn":{"shape":"TerminologyArn"},
|
342
|
-
"SourceLanguageCode":{"shape":"LanguageCodeString"},
|
343
|
-
"TargetLanguageCodes":{"shape":"LanguageCodeStringList"},
|
344
|
-
"EncryptionKey":{"shape":"EncryptionKey"},
|
345
|
-
"SizeBytes":{"shape":"Integer"},
|
346
|
-
"TermCount":{"shape":"Integer"},
|
347
|
-
"CreatedAt":{"shape":"Timestamp"},
|
348
|
-
"LastUpdatedAt":{"shape":"Timestamp"}
|
349
|
-
}
|
350
|
-
},
|
351
|
-
"TerminologyPropertiesList":{
|
352
|
-
"type":"list",
|
353
|
-
"member":{"shape":"TerminologyProperties"}
|
354
|
-
},
|
355
|
-
"TextSizeLimitExceededException":{
|
356
|
-
"type":"structure",
|
357
|
-
"members":{
|
358
|
-
"Message":{"shape":"String"}
|
359
|
-
},
|
360
|
-
"exception":true
|
361
|
-
},
|
362
|
-
"Timestamp":{"type":"timestamp"},
|
363
|
-
"TooManyRequestsException":{
|
364
|
-
"type":"structure",
|
365
|
-
"members":{
|
366
|
-
"Message":{"shape":"String"}
|
367
|
-
},
|
368
|
-
"exception":true
|
369
|
-
},
|
370
|
-
"TranslateTextRequest":{
|
371
|
-
"type":"structure",
|
372
|
-
"required":[
|
373
|
-
"Text",
|
374
|
-
"SourceLanguageCode",
|
375
|
-
"TargetLanguageCode"
|
376
|
-
],
|
377
|
-
"members":{
|
378
|
-
"Text":{"shape":"BoundedLengthString"},
|
379
|
-
"TerminologyNames":{"shape":"ResourceNameList"},
|
380
|
-
"SourceLanguageCode":{"shape":"LanguageCodeString"},
|
381
|
-
"TargetLanguageCode":{"shape":"LanguageCodeString"}
|
382
|
-
}
|
383
|
-
},
|
384
|
-
"TranslateTextResponse":{
|
385
|
-
"type":"structure",
|
386
|
-
"required":[
|
387
|
-
"TranslatedText",
|
388
|
-
"SourceLanguageCode",
|
389
|
-
"TargetLanguageCode"
|
390
|
-
],
|
391
|
-
"members":{
|
392
|
-
"TranslatedText":{"shape":"String"},
|
393
|
-
"SourceLanguageCode":{"shape":"LanguageCodeString"},
|
394
|
-
"TargetLanguageCode":{"shape":"LanguageCodeString"},
|
395
|
-
"AppliedTerminologies":{"shape":"AppliedTerminologyList"}
|
396
|
-
}
|
397
|
-
},
|
398
|
-
"UnsupportedLanguagePairException":{
|
399
|
-
"type":"structure",
|
400
|
-
"members":{
|
401
|
-
"Message":{"shape":"String"},
|
402
|
-
"SourceLanguageCode":{"shape":"LanguageCodeString"},
|
403
|
-
"TargetLanguageCode":{"shape":"LanguageCodeString"}
|
404
|
-
},
|
405
|
-
"exception":true
|
406
|
-
}
|
407
|
-
}
|
408
|
-
}
|
@@ -1,3992 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2016-11-28",
|
5
|
-
"endpointPrefix":"waf-regional",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceAbbreviation":"WAF Regional",
|
9
|
-
"serviceFullName":"AWS WAF Regional",
|
10
|
-
"serviceId":"WAF Regional",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"targetPrefix":"AWSWAF_Regional_20161128",
|
13
|
-
"uid":"waf-regional-2016-11-28"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"AssociateWebACL":{
|
17
|
-
"name":"AssociateWebACL",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/"
|
21
|
-
},
|
22
|
-
"input":{"shape":"AssociateWebACLRequest"},
|
23
|
-
"output":{"shape":"AssociateWebACLResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"WAFInternalErrorException"},
|
26
|
-
{"shape":"WAFInvalidAccountException"},
|
27
|
-
{"shape":"WAFInvalidParameterException"},
|
28
|
-
{"shape":"WAFNonexistentItemException"},
|
29
|
-
{"shape":"WAFUnavailableEntityException"}
|
30
|
-
]
|
31
|
-
},
|
32
|
-
"CreateByteMatchSet":{
|
33
|
-
"name":"CreateByteMatchSet",
|
34
|
-
"http":{
|
35
|
-
"method":"POST",
|
36
|
-
"requestUri":"/"
|
37
|
-
},
|
38
|
-
"input":{"shape":"CreateByteMatchSetRequest"},
|
39
|
-
"output":{"shape":"CreateByteMatchSetResponse"},
|
40
|
-
"errors":[
|
41
|
-
{"shape":"WAFDisallowedNameException"},
|
42
|
-
{"shape":"WAFInternalErrorException"},
|
43
|
-
{"shape":"WAFInvalidAccountException"},
|
44
|
-
{"shape":"WAFInvalidParameterException"},
|
45
|
-
{"shape":"WAFStaleDataException"},
|
46
|
-
{"shape":"WAFLimitsExceededException"}
|
47
|
-
]
|
48
|
-
},
|
49
|
-
"CreateGeoMatchSet":{
|
50
|
-
"name":"CreateGeoMatchSet",
|
51
|
-
"http":{
|
52
|
-
"method":"POST",
|
53
|
-
"requestUri":"/"
|
54
|
-
},
|
55
|
-
"input":{"shape":"CreateGeoMatchSetRequest"},
|
56
|
-
"output":{"shape":"CreateGeoMatchSetResponse"},
|
57
|
-
"errors":[
|
58
|
-
{"shape":"WAFStaleDataException"},
|
59
|
-
{"shape":"WAFInternalErrorException"},
|
60
|
-
{"shape":"WAFInvalidAccountException"},
|
61
|
-
{"shape":"WAFDisallowedNameException"},
|
62
|
-
{"shape":"WAFInvalidParameterException"},
|
63
|
-
{"shape":"WAFLimitsExceededException"}
|
64
|
-
]
|
65
|
-
},
|
66
|
-
"CreateIPSet":{
|
67
|
-
"name":"CreateIPSet",
|
68
|
-
"http":{
|
69
|
-
"method":"POST",
|
70
|
-
"requestUri":"/"
|
71
|
-
},
|
72
|
-
"input":{"shape":"CreateIPSetRequest"},
|
73
|
-
"output":{"shape":"CreateIPSetResponse"},
|
74
|
-
"errors":[
|
75
|
-
{"shape":"WAFStaleDataException"},
|
76
|
-
{"shape":"WAFInternalErrorException"},
|
77
|
-
{"shape":"WAFInvalidAccountException"},
|
78
|
-
{"shape":"WAFDisallowedNameException"},
|
79
|
-
{"shape":"WAFInvalidParameterException"},
|
80
|
-
{"shape":"WAFLimitsExceededException"}
|
81
|
-
]
|
82
|
-
},
|
83
|
-
"CreateRateBasedRule":{
|
84
|
-
"name":"CreateRateBasedRule",
|
85
|
-
"http":{
|
86
|
-
"method":"POST",
|
87
|
-
"requestUri":"/"
|
88
|
-
},
|
89
|
-
"input":{"shape":"CreateRateBasedRuleRequest"},
|
90
|
-
"output":{"shape":"CreateRateBasedRuleResponse"},
|
91
|
-
"errors":[
|
92
|
-
{"shape":"WAFStaleDataException"},
|
93
|
-
{"shape":"WAFInternalErrorException"},
|
94
|
-
{"shape":"WAFDisallowedNameException"},
|
95
|
-
{"shape":"WAFInvalidParameterException"},
|
96
|
-
{"shape":"WAFLimitsExceededException"},
|
97
|
-
{"shape":"WAFTagOperationException"},
|
98
|
-
{"shape":"WAFTagOperationInternalErrorException"},
|
99
|
-
{"shape":"WAFBadRequestException"}
|
100
|
-
]
|
101
|
-
},
|
102
|
-
"CreateRegexMatchSet":{
|
103
|
-
"name":"CreateRegexMatchSet",
|
104
|
-
"http":{
|
105
|
-
"method":"POST",
|
106
|
-
"requestUri":"/"
|
107
|
-
},
|
108
|
-
"input":{"shape":"CreateRegexMatchSetRequest"},
|
109
|
-
"output":{"shape":"CreateRegexMatchSetResponse"},
|
110
|
-
"errors":[
|
111
|
-
{"shape":"WAFStaleDataException"},
|
112
|
-
{"shape":"WAFInternalErrorException"},
|
113
|
-
{"shape":"WAFDisallowedNameException"},
|
114
|
-
{"shape":"WAFLimitsExceededException"}
|
115
|
-
]
|
116
|
-
},
|
117
|
-
"CreateRegexPatternSet":{
|
118
|
-
"name":"CreateRegexPatternSet",
|
119
|
-
"http":{
|
120
|
-
"method":"POST",
|
121
|
-
"requestUri":"/"
|
122
|
-
},
|
123
|
-
"input":{"shape":"CreateRegexPatternSetRequest"},
|
124
|
-
"output":{"shape":"CreateRegexPatternSetResponse"},
|
125
|
-
"errors":[
|
126
|
-
{"shape":"WAFStaleDataException"},
|
127
|
-
{"shape":"WAFInternalErrorException"},
|
128
|
-
{"shape":"WAFDisallowedNameException"},
|
129
|
-
{"shape":"WAFLimitsExceededException"}
|
130
|
-
]
|
131
|
-
},
|
132
|
-
"CreateRule":{
|
133
|
-
"name":"CreateRule",
|
134
|
-
"http":{
|
135
|
-
"method":"POST",
|
136
|
-
"requestUri":"/"
|
137
|
-
},
|
138
|
-
"input":{"shape":"CreateRuleRequest"},
|
139
|
-
"output":{"shape":"CreateRuleResponse"},
|
140
|
-
"errors":[
|
141
|
-
{"shape":"WAFStaleDataException"},
|
142
|
-
{"shape":"WAFInternalErrorException"},
|
143
|
-
{"shape":"WAFDisallowedNameException"},
|
144
|
-
{"shape":"WAFInvalidParameterException"},
|
145
|
-
{"shape":"WAFLimitsExceededException"},
|
146
|
-
{"shape":"WAFTagOperationException"},
|
147
|
-
{"shape":"WAFTagOperationInternalErrorException"},
|
148
|
-
{"shape":"WAFBadRequestException"}
|
149
|
-
]
|
150
|
-
},
|
151
|
-
"CreateRuleGroup":{
|
152
|
-
"name":"CreateRuleGroup",
|
153
|
-
"http":{
|
154
|
-
"method":"POST",
|
155
|
-
"requestUri":"/"
|
156
|
-
},
|
157
|
-
"input":{"shape":"CreateRuleGroupRequest"},
|
158
|
-
"output":{"shape":"CreateRuleGroupResponse"},
|
159
|
-
"errors":[
|
160
|
-
{"shape":"WAFStaleDataException"},
|
161
|
-
{"shape":"WAFInternalErrorException"},
|
162
|
-
{"shape":"WAFDisallowedNameException"},
|
163
|
-
{"shape":"WAFLimitsExceededException"},
|
164
|
-
{"shape":"WAFTagOperationException"},
|
165
|
-
{"shape":"WAFTagOperationInternalErrorException"},
|
166
|
-
{"shape":"WAFBadRequestException"}
|
167
|
-
]
|
168
|
-
},
|
169
|
-
"CreateSizeConstraintSet":{
|
170
|
-
"name":"CreateSizeConstraintSet",
|
171
|
-
"http":{
|
172
|
-
"method":"POST",
|
173
|
-
"requestUri":"/"
|
174
|
-
},
|
175
|
-
"input":{"shape":"CreateSizeConstraintSetRequest"},
|
176
|
-
"output":{"shape":"CreateSizeConstraintSetResponse"},
|
177
|
-
"errors":[
|
178
|
-
{"shape":"WAFStaleDataException"},
|
179
|
-
{"shape":"WAFInternalErrorException"},
|
180
|
-
{"shape":"WAFInvalidAccountException"},
|
181
|
-
{"shape":"WAFDisallowedNameException"},
|
182
|
-
{"shape":"WAFInvalidParameterException"},
|
183
|
-
{"shape":"WAFLimitsExceededException"}
|
184
|
-
]
|
185
|
-
},
|
186
|
-
"CreateSqlInjectionMatchSet":{
|
187
|
-
"name":"CreateSqlInjectionMatchSet",
|
188
|
-
"http":{
|
189
|
-
"method":"POST",
|
190
|
-
"requestUri":"/"
|
191
|
-
},
|
192
|
-
"input":{"shape":"CreateSqlInjectionMatchSetRequest"},
|
193
|
-
"output":{"shape":"CreateSqlInjectionMatchSetResponse"},
|
194
|
-
"errors":[
|
195
|
-
{"shape":"WAFDisallowedNameException"},
|
196
|
-
{"shape":"WAFInternalErrorException"},
|
197
|
-
{"shape":"WAFInvalidAccountException"},
|
198
|
-
{"shape":"WAFInvalidParameterException"},
|
199
|
-
{"shape":"WAFStaleDataException"},
|
200
|
-
{"shape":"WAFLimitsExceededException"}
|
201
|
-
]
|
202
|
-
},
|
203
|
-
"CreateWebACL":{
|
204
|
-
"name":"CreateWebACL",
|
205
|
-
"http":{
|
206
|
-
"method":"POST",
|
207
|
-
"requestUri":"/"
|
208
|
-
},
|
209
|
-
"input":{"shape":"CreateWebACLRequest"},
|
210
|
-
"output":{"shape":"CreateWebACLResponse"},
|
211
|
-
"errors":[
|
212
|
-
{"shape":"WAFStaleDataException"},
|
213
|
-
{"shape":"WAFInternalErrorException"},
|
214
|
-
{"shape":"WAFInvalidAccountException"},
|
215
|
-
{"shape":"WAFDisallowedNameException"},
|
216
|
-
{"shape":"WAFInvalidParameterException"},
|
217
|
-
{"shape":"WAFLimitsExceededException"},
|
218
|
-
{"shape":"WAFTagOperationException"},
|
219
|
-
{"shape":"WAFTagOperationInternalErrorException"},
|
220
|
-
{"shape":"WAFBadRequestException"}
|
221
|
-
]
|
222
|
-
},
|
223
|
-
"CreateXssMatchSet":{
|
224
|
-
"name":"CreateXssMatchSet",
|
225
|
-
"http":{
|
226
|
-
"method":"POST",
|
227
|
-
"requestUri":"/"
|
228
|
-
},
|
229
|
-
"input":{"shape":"CreateXssMatchSetRequest"},
|
230
|
-
"output":{"shape":"CreateXssMatchSetResponse"},
|
231
|
-
"errors":[
|
232
|
-
{"shape":"WAFDisallowedNameException"},
|
233
|
-
{"shape":"WAFInternalErrorException"},
|
234
|
-
{"shape":"WAFInvalidAccountException"},
|
235
|
-
{"shape":"WAFInvalidParameterException"},
|
236
|
-
{"shape":"WAFStaleDataException"},
|
237
|
-
{"shape":"WAFLimitsExceededException"}
|
238
|
-
]
|
239
|
-
},
|
240
|
-
"DeleteByteMatchSet":{
|
241
|
-
"name":"DeleteByteMatchSet",
|
242
|
-
"http":{
|
243
|
-
"method":"POST",
|
244
|
-
"requestUri":"/"
|
245
|
-
},
|
246
|
-
"input":{"shape":"DeleteByteMatchSetRequest"},
|
247
|
-
"output":{"shape":"DeleteByteMatchSetResponse"},
|
248
|
-
"errors":[
|
249
|
-
{"shape":"WAFInternalErrorException"},
|
250
|
-
{"shape":"WAFInvalidAccountException"},
|
251
|
-
{"shape":"WAFNonexistentItemException"},
|
252
|
-
{"shape":"WAFReferencedItemException"},
|
253
|
-
{"shape":"WAFStaleDataException"},
|
254
|
-
{"shape":"WAFNonEmptyEntityException"}
|
255
|
-
]
|
256
|
-
},
|
257
|
-
"DeleteGeoMatchSet":{
|
258
|
-
"name":"DeleteGeoMatchSet",
|
259
|
-
"http":{
|
260
|
-
"method":"POST",
|
261
|
-
"requestUri":"/"
|
262
|
-
},
|
263
|
-
"input":{"shape":"DeleteGeoMatchSetRequest"},
|
264
|
-
"output":{"shape":"DeleteGeoMatchSetResponse"},
|
265
|
-
"errors":[
|
266
|
-
{"shape":"WAFStaleDataException"},
|
267
|
-
{"shape":"WAFInternalErrorException"},
|
268
|
-
{"shape":"WAFInvalidAccountException"},
|
269
|
-
{"shape":"WAFNonexistentItemException"},
|
270
|
-
{"shape":"WAFReferencedItemException"},
|
271
|
-
{"shape":"WAFNonEmptyEntityException"}
|
272
|
-
]
|
273
|
-
},
|
274
|
-
"DeleteIPSet":{
|
275
|
-
"name":"DeleteIPSet",
|
276
|
-
"http":{
|
277
|
-
"method":"POST",
|
278
|
-
"requestUri":"/"
|
279
|
-
},
|
280
|
-
"input":{"shape":"DeleteIPSetRequest"},
|
281
|
-
"output":{"shape":"DeleteIPSetResponse"},
|
282
|
-
"errors":[
|
283
|
-
{"shape":"WAFStaleDataException"},
|
284
|
-
{"shape":"WAFInternalErrorException"},
|
285
|
-
{"shape":"WAFInvalidAccountException"},
|
286
|
-
{"shape":"WAFNonexistentItemException"},
|
287
|
-
{"shape":"WAFReferencedItemException"},
|
288
|
-
{"shape":"WAFNonEmptyEntityException"}
|
289
|
-
]
|
290
|
-
},
|
291
|
-
"DeleteLoggingConfiguration":{
|
292
|
-
"name":"DeleteLoggingConfiguration",
|
293
|
-
"http":{
|
294
|
-
"method":"POST",
|
295
|
-
"requestUri":"/"
|
296
|
-
},
|
297
|
-
"input":{"shape":"DeleteLoggingConfigurationRequest"},
|
298
|
-
"output":{"shape":"DeleteLoggingConfigurationResponse"},
|
299
|
-
"errors":[
|
300
|
-
{"shape":"WAFInternalErrorException"},
|
301
|
-
{"shape":"WAFNonexistentItemException"},
|
302
|
-
{"shape":"WAFStaleDataException"}
|
303
|
-
]
|
304
|
-
},
|
305
|
-
"DeletePermissionPolicy":{
|
306
|
-
"name":"DeletePermissionPolicy",
|
307
|
-
"http":{
|
308
|
-
"method":"POST",
|
309
|
-
"requestUri":"/"
|
310
|
-
},
|
311
|
-
"input":{"shape":"DeletePermissionPolicyRequest"},
|
312
|
-
"output":{"shape":"DeletePermissionPolicyResponse"},
|
313
|
-
"errors":[
|
314
|
-
{"shape":"WAFInternalErrorException"},
|
315
|
-
{"shape":"WAFStaleDataException"},
|
316
|
-
{"shape":"WAFNonexistentItemException"}
|
317
|
-
]
|
318
|
-
},
|
319
|
-
"DeleteRateBasedRule":{
|
320
|
-
"name":"DeleteRateBasedRule",
|
321
|
-
"http":{
|
322
|
-
"method":"POST",
|
323
|
-
"requestUri":"/"
|
324
|
-
},
|
325
|
-
"input":{"shape":"DeleteRateBasedRuleRequest"},
|
326
|
-
"output":{"shape":"DeleteRateBasedRuleResponse"},
|
327
|
-
"errors":[
|
328
|
-
{"shape":"WAFStaleDataException"},
|
329
|
-
{"shape":"WAFInternalErrorException"},
|
330
|
-
{"shape":"WAFInvalidAccountException"},
|
331
|
-
{"shape":"WAFNonexistentItemException"},
|
332
|
-
{"shape":"WAFReferencedItemException"},
|
333
|
-
{"shape":"WAFNonEmptyEntityException"},
|
334
|
-
{"shape":"WAFTagOperationException"},
|
335
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
336
|
-
]
|
337
|
-
},
|
338
|
-
"DeleteRegexMatchSet":{
|
339
|
-
"name":"DeleteRegexMatchSet",
|
340
|
-
"http":{
|
341
|
-
"method":"POST",
|
342
|
-
"requestUri":"/"
|
343
|
-
},
|
344
|
-
"input":{"shape":"DeleteRegexMatchSetRequest"},
|
345
|
-
"output":{"shape":"DeleteRegexMatchSetResponse"},
|
346
|
-
"errors":[
|
347
|
-
{"shape":"WAFInternalErrorException"},
|
348
|
-
{"shape":"WAFInvalidAccountException"},
|
349
|
-
{"shape":"WAFNonexistentItemException"},
|
350
|
-
{"shape":"WAFReferencedItemException"},
|
351
|
-
{"shape":"WAFStaleDataException"},
|
352
|
-
{"shape":"WAFNonEmptyEntityException"}
|
353
|
-
]
|
354
|
-
},
|
355
|
-
"DeleteRegexPatternSet":{
|
356
|
-
"name":"DeleteRegexPatternSet",
|
357
|
-
"http":{
|
358
|
-
"method":"POST",
|
359
|
-
"requestUri":"/"
|
360
|
-
},
|
361
|
-
"input":{"shape":"DeleteRegexPatternSetRequest"},
|
362
|
-
"output":{"shape":"DeleteRegexPatternSetResponse"},
|
363
|
-
"errors":[
|
364
|
-
{"shape":"WAFInternalErrorException"},
|
365
|
-
{"shape":"WAFInvalidAccountException"},
|
366
|
-
{"shape":"WAFNonexistentItemException"},
|
367
|
-
{"shape":"WAFReferencedItemException"},
|
368
|
-
{"shape":"WAFStaleDataException"},
|
369
|
-
{"shape":"WAFNonEmptyEntityException"}
|
370
|
-
]
|
371
|
-
},
|
372
|
-
"DeleteRule":{
|
373
|
-
"name":"DeleteRule",
|
374
|
-
"http":{
|
375
|
-
"method":"POST",
|
376
|
-
"requestUri":"/"
|
377
|
-
},
|
378
|
-
"input":{"shape":"DeleteRuleRequest"},
|
379
|
-
"output":{"shape":"DeleteRuleResponse"},
|
380
|
-
"errors":[
|
381
|
-
{"shape":"WAFStaleDataException"},
|
382
|
-
{"shape":"WAFInternalErrorException"},
|
383
|
-
{"shape":"WAFInvalidAccountException"},
|
384
|
-
{"shape":"WAFNonexistentItemException"},
|
385
|
-
{"shape":"WAFReferencedItemException"},
|
386
|
-
{"shape":"WAFNonEmptyEntityException"},
|
387
|
-
{"shape":"WAFTagOperationException"},
|
388
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
389
|
-
]
|
390
|
-
},
|
391
|
-
"DeleteRuleGroup":{
|
392
|
-
"name":"DeleteRuleGroup",
|
393
|
-
"http":{
|
394
|
-
"method":"POST",
|
395
|
-
"requestUri":"/"
|
396
|
-
},
|
397
|
-
"input":{"shape":"DeleteRuleGroupRequest"},
|
398
|
-
"output":{"shape":"DeleteRuleGroupResponse"},
|
399
|
-
"errors":[
|
400
|
-
{"shape":"WAFStaleDataException"},
|
401
|
-
{"shape":"WAFInternalErrorException"},
|
402
|
-
{"shape":"WAFNonexistentItemException"},
|
403
|
-
{"shape":"WAFReferencedItemException"},
|
404
|
-
{"shape":"WAFNonEmptyEntityException"},
|
405
|
-
{"shape":"WAFInvalidOperationException"},
|
406
|
-
{"shape":"WAFTagOperationException"},
|
407
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
408
|
-
]
|
409
|
-
},
|
410
|
-
"DeleteSizeConstraintSet":{
|
411
|
-
"name":"DeleteSizeConstraintSet",
|
412
|
-
"http":{
|
413
|
-
"method":"POST",
|
414
|
-
"requestUri":"/"
|
415
|
-
},
|
416
|
-
"input":{"shape":"DeleteSizeConstraintSetRequest"},
|
417
|
-
"output":{"shape":"DeleteSizeConstraintSetResponse"},
|
418
|
-
"errors":[
|
419
|
-
{"shape":"WAFStaleDataException"},
|
420
|
-
{"shape":"WAFInternalErrorException"},
|
421
|
-
{"shape":"WAFInvalidAccountException"},
|
422
|
-
{"shape":"WAFNonexistentItemException"},
|
423
|
-
{"shape":"WAFReferencedItemException"},
|
424
|
-
{"shape":"WAFNonEmptyEntityException"}
|
425
|
-
]
|
426
|
-
},
|
427
|
-
"DeleteSqlInjectionMatchSet":{
|
428
|
-
"name":"DeleteSqlInjectionMatchSet",
|
429
|
-
"http":{
|
430
|
-
"method":"POST",
|
431
|
-
"requestUri":"/"
|
432
|
-
},
|
433
|
-
"input":{"shape":"DeleteSqlInjectionMatchSetRequest"},
|
434
|
-
"output":{"shape":"DeleteSqlInjectionMatchSetResponse"},
|
435
|
-
"errors":[
|
436
|
-
{"shape":"WAFInternalErrorException"},
|
437
|
-
{"shape":"WAFInvalidAccountException"},
|
438
|
-
{"shape":"WAFNonexistentItemException"},
|
439
|
-
{"shape":"WAFReferencedItemException"},
|
440
|
-
{"shape":"WAFStaleDataException"},
|
441
|
-
{"shape":"WAFNonEmptyEntityException"}
|
442
|
-
]
|
443
|
-
},
|
444
|
-
"DeleteWebACL":{
|
445
|
-
"name":"DeleteWebACL",
|
446
|
-
"http":{
|
447
|
-
"method":"POST",
|
448
|
-
"requestUri":"/"
|
449
|
-
},
|
450
|
-
"input":{"shape":"DeleteWebACLRequest"},
|
451
|
-
"output":{"shape":"DeleteWebACLResponse"},
|
452
|
-
"errors":[
|
453
|
-
{"shape":"WAFStaleDataException"},
|
454
|
-
{"shape":"WAFInternalErrorException"},
|
455
|
-
{"shape":"WAFInvalidAccountException"},
|
456
|
-
{"shape":"WAFNonexistentItemException"},
|
457
|
-
{"shape":"WAFReferencedItemException"},
|
458
|
-
{"shape":"WAFNonEmptyEntityException"},
|
459
|
-
{"shape":"WAFTagOperationException"},
|
460
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
461
|
-
]
|
462
|
-
},
|
463
|
-
"DeleteXssMatchSet":{
|
464
|
-
"name":"DeleteXssMatchSet",
|
465
|
-
"http":{
|
466
|
-
"method":"POST",
|
467
|
-
"requestUri":"/"
|
468
|
-
},
|
469
|
-
"input":{"shape":"DeleteXssMatchSetRequest"},
|
470
|
-
"output":{"shape":"DeleteXssMatchSetResponse"},
|
471
|
-
"errors":[
|
472
|
-
{"shape":"WAFInternalErrorException"},
|
473
|
-
{"shape":"WAFInvalidAccountException"},
|
474
|
-
{"shape":"WAFNonexistentItemException"},
|
475
|
-
{"shape":"WAFReferencedItemException"},
|
476
|
-
{"shape":"WAFStaleDataException"},
|
477
|
-
{"shape":"WAFNonEmptyEntityException"}
|
478
|
-
]
|
479
|
-
},
|
480
|
-
"DisassociateWebACL":{
|
481
|
-
"name":"DisassociateWebACL",
|
482
|
-
"http":{
|
483
|
-
"method":"POST",
|
484
|
-
"requestUri":"/"
|
485
|
-
},
|
486
|
-
"input":{"shape":"DisassociateWebACLRequest"},
|
487
|
-
"output":{"shape":"DisassociateWebACLResponse"},
|
488
|
-
"errors":[
|
489
|
-
{"shape":"WAFInternalErrorException"},
|
490
|
-
{"shape":"WAFInvalidAccountException"},
|
491
|
-
{"shape":"WAFInvalidParameterException"},
|
492
|
-
{"shape":"WAFNonexistentItemException"}
|
493
|
-
]
|
494
|
-
},
|
495
|
-
"GetByteMatchSet":{
|
496
|
-
"name":"GetByteMatchSet",
|
497
|
-
"http":{
|
498
|
-
"method":"POST",
|
499
|
-
"requestUri":"/"
|
500
|
-
},
|
501
|
-
"input":{"shape":"GetByteMatchSetRequest"},
|
502
|
-
"output":{"shape":"GetByteMatchSetResponse"},
|
503
|
-
"errors":[
|
504
|
-
{"shape":"WAFInternalErrorException"},
|
505
|
-
{"shape":"WAFInvalidAccountException"},
|
506
|
-
{"shape":"WAFNonexistentItemException"}
|
507
|
-
]
|
508
|
-
},
|
509
|
-
"GetChangeToken":{
|
510
|
-
"name":"GetChangeToken",
|
511
|
-
"http":{
|
512
|
-
"method":"POST",
|
513
|
-
"requestUri":"/"
|
514
|
-
},
|
515
|
-
"input":{"shape":"GetChangeTokenRequest"},
|
516
|
-
"output":{"shape":"GetChangeTokenResponse"},
|
517
|
-
"errors":[
|
518
|
-
{"shape":"WAFInternalErrorException"}
|
519
|
-
]
|
520
|
-
},
|
521
|
-
"GetChangeTokenStatus":{
|
522
|
-
"name":"GetChangeTokenStatus",
|
523
|
-
"http":{
|
524
|
-
"method":"POST",
|
525
|
-
"requestUri":"/"
|
526
|
-
},
|
527
|
-
"input":{"shape":"GetChangeTokenStatusRequest"},
|
528
|
-
"output":{"shape":"GetChangeTokenStatusResponse"},
|
529
|
-
"errors":[
|
530
|
-
{"shape":"WAFNonexistentItemException"},
|
531
|
-
{"shape":"WAFInternalErrorException"}
|
532
|
-
]
|
533
|
-
},
|
534
|
-
"GetGeoMatchSet":{
|
535
|
-
"name":"GetGeoMatchSet",
|
536
|
-
"http":{
|
537
|
-
"method":"POST",
|
538
|
-
"requestUri":"/"
|
539
|
-
},
|
540
|
-
"input":{"shape":"GetGeoMatchSetRequest"},
|
541
|
-
"output":{"shape":"GetGeoMatchSetResponse"},
|
542
|
-
"errors":[
|
543
|
-
{"shape":"WAFInternalErrorException"},
|
544
|
-
{"shape":"WAFInvalidAccountException"},
|
545
|
-
{"shape":"WAFNonexistentItemException"}
|
546
|
-
]
|
547
|
-
},
|
548
|
-
"GetIPSet":{
|
549
|
-
"name":"GetIPSet",
|
550
|
-
"http":{
|
551
|
-
"method":"POST",
|
552
|
-
"requestUri":"/"
|
553
|
-
},
|
554
|
-
"input":{"shape":"GetIPSetRequest"},
|
555
|
-
"output":{"shape":"GetIPSetResponse"},
|
556
|
-
"errors":[
|
557
|
-
{"shape":"WAFInternalErrorException"},
|
558
|
-
{"shape":"WAFInvalidAccountException"},
|
559
|
-
{"shape":"WAFNonexistentItemException"}
|
560
|
-
]
|
561
|
-
},
|
562
|
-
"GetLoggingConfiguration":{
|
563
|
-
"name":"GetLoggingConfiguration",
|
564
|
-
"http":{
|
565
|
-
"method":"POST",
|
566
|
-
"requestUri":"/"
|
567
|
-
},
|
568
|
-
"input":{"shape":"GetLoggingConfigurationRequest"},
|
569
|
-
"output":{"shape":"GetLoggingConfigurationResponse"},
|
570
|
-
"errors":[
|
571
|
-
{"shape":"WAFInternalErrorException"},
|
572
|
-
{"shape":"WAFNonexistentItemException"}
|
573
|
-
]
|
574
|
-
},
|
575
|
-
"GetPermissionPolicy":{
|
576
|
-
"name":"GetPermissionPolicy",
|
577
|
-
"http":{
|
578
|
-
"method":"POST",
|
579
|
-
"requestUri":"/"
|
580
|
-
},
|
581
|
-
"input":{"shape":"GetPermissionPolicyRequest"},
|
582
|
-
"output":{"shape":"GetPermissionPolicyResponse"},
|
583
|
-
"errors":[
|
584
|
-
{"shape":"WAFInternalErrorException"},
|
585
|
-
{"shape":"WAFNonexistentItemException"}
|
586
|
-
]
|
587
|
-
},
|
588
|
-
"GetRateBasedRule":{
|
589
|
-
"name":"GetRateBasedRule",
|
590
|
-
"http":{
|
591
|
-
"method":"POST",
|
592
|
-
"requestUri":"/"
|
593
|
-
},
|
594
|
-
"input":{"shape":"GetRateBasedRuleRequest"},
|
595
|
-
"output":{"shape":"GetRateBasedRuleResponse"},
|
596
|
-
"errors":[
|
597
|
-
{"shape":"WAFInternalErrorException"},
|
598
|
-
{"shape":"WAFInvalidAccountException"},
|
599
|
-
{"shape":"WAFNonexistentItemException"}
|
600
|
-
]
|
601
|
-
},
|
602
|
-
"GetRateBasedRuleManagedKeys":{
|
603
|
-
"name":"GetRateBasedRuleManagedKeys",
|
604
|
-
"http":{
|
605
|
-
"method":"POST",
|
606
|
-
"requestUri":"/"
|
607
|
-
},
|
608
|
-
"input":{"shape":"GetRateBasedRuleManagedKeysRequest"},
|
609
|
-
"output":{"shape":"GetRateBasedRuleManagedKeysResponse"},
|
610
|
-
"errors":[
|
611
|
-
{"shape":"WAFInternalErrorException"},
|
612
|
-
{"shape":"WAFInvalidAccountException"},
|
613
|
-
{"shape":"WAFNonexistentItemException"},
|
614
|
-
{"shape":"WAFInvalidParameterException"}
|
615
|
-
]
|
616
|
-
},
|
617
|
-
"GetRegexMatchSet":{
|
618
|
-
"name":"GetRegexMatchSet",
|
619
|
-
"http":{
|
620
|
-
"method":"POST",
|
621
|
-
"requestUri":"/"
|
622
|
-
},
|
623
|
-
"input":{"shape":"GetRegexMatchSetRequest"},
|
624
|
-
"output":{"shape":"GetRegexMatchSetResponse"},
|
625
|
-
"errors":[
|
626
|
-
{"shape":"WAFInternalErrorException"},
|
627
|
-
{"shape":"WAFInvalidAccountException"},
|
628
|
-
{"shape":"WAFNonexistentItemException"}
|
629
|
-
]
|
630
|
-
},
|
631
|
-
"GetRegexPatternSet":{
|
632
|
-
"name":"GetRegexPatternSet",
|
633
|
-
"http":{
|
634
|
-
"method":"POST",
|
635
|
-
"requestUri":"/"
|
636
|
-
},
|
637
|
-
"input":{"shape":"GetRegexPatternSetRequest"},
|
638
|
-
"output":{"shape":"GetRegexPatternSetResponse"},
|
639
|
-
"errors":[
|
640
|
-
{"shape":"WAFInternalErrorException"},
|
641
|
-
{"shape":"WAFInvalidAccountException"},
|
642
|
-
{"shape":"WAFNonexistentItemException"}
|
643
|
-
]
|
644
|
-
},
|
645
|
-
"GetRule":{
|
646
|
-
"name":"GetRule",
|
647
|
-
"http":{
|
648
|
-
"method":"POST",
|
649
|
-
"requestUri":"/"
|
650
|
-
},
|
651
|
-
"input":{"shape":"GetRuleRequest"},
|
652
|
-
"output":{"shape":"GetRuleResponse"},
|
653
|
-
"errors":[
|
654
|
-
{"shape":"WAFInternalErrorException"},
|
655
|
-
{"shape":"WAFInvalidAccountException"},
|
656
|
-
{"shape":"WAFNonexistentItemException"}
|
657
|
-
]
|
658
|
-
},
|
659
|
-
"GetRuleGroup":{
|
660
|
-
"name":"GetRuleGroup",
|
661
|
-
"http":{
|
662
|
-
"method":"POST",
|
663
|
-
"requestUri":"/"
|
664
|
-
},
|
665
|
-
"input":{"shape":"GetRuleGroupRequest"},
|
666
|
-
"output":{"shape":"GetRuleGroupResponse"},
|
667
|
-
"errors":[
|
668
|
-
{"shape":"WAFInternalErrorException"},
|
669
|
-
{"shape":"WAFNonexistentItemException"}
|
670
|
-
]
|
671
|
-
},
|
672
|
-
"GetSampledRequests":{
|
673
|
-
"name":"GetSampledRequests",
|
674
|
-
"http":{
|
675
|
-
"method":"POST",
|
676
|
-
"requestUri":"/"
|
677
|
-
},
|
678
|
-
"input":{"shape":"GetSampledRequestsRequest"},
|
679
|
-
"output":{"shape":"GetSampledRequestsResponse"},
|
680
|
-
"errors":[
|
681
|
-
{"shape":"WAFNonexistentItemException"},
|
682
|
-
{"shape":"WAFInternalErrorException"}
|
683
|
-
]
|
684
|
-
},
|
685
|
-
"GetSizeConstraintSet":{
|
686
|
-
"name":"GetSizeConstraintSet",
|
687
|
-
"http":{
|
688
|
-
"method":"POST",
|
689
|
-
"requestUri":"/"
|
690
|
-
},
|
691
|
-
"input":{"shape":"GetSizeConstraintSetRequest"},
|
692
|
-
"output":{"shape":"GetSizeConstraintSetResponse"},
|
693
|
-
"errors":[
|
694
|
-
{"shape":"WAFInternalErrorException"},
|
695
|
-
{"shape":"WAFInvalidAccountException"},
|
696
|
-
{"shape":"WAFNonexistentItemException"}
|
697
|
-
]
|
698
|
-
},
|
699
|
-
"GetSqlInjectionMatchSet":{
|
700
|
-
"name":"GetSqlInjectionMatchSet",
|
701
|
-
"http":{
|
702
|
-
"method":"POST",
|
703
|
-
"requestUri":"/"
|
704
|
-
},
|
705
|
-
"input":{"shape":"GetSqlInjectionMatchSetRequest"},
|
706
|
-
"output":{"shape":"GetSqlInjectionMatchSetResponse"},
|
707
|
-
"errors":[
|
708
|
-
{"shape":"WAFInternalErrorException"},
|
709
|
-
{"shape":"WAFInvalidAccountException"},
|
710
|
-
{"shape":"WAFNonexistentItemException"}
|
711
|
-
]
|
712
|
-
},
|
713
|
-
"GetWebACL":{
|
714
|
-
"name":"GetWebACL",
|
715
|
-
"http":{
|
716
|
-
"method":"POST",
|
717
|
-
"requestUri":"/"
|
718
|
-
},
|
719
|
-
"input":{"shape":"GetWebACLRequest"},
|
720
|
-
"output":{"shape":"GetWebACLResponse"},
|
721
|
-
"errors":[
|
722
|
-
{"shape":"WAFInternalErrorException"},
|
723
|
-
{"shape":"WAFInvalidAccountException"},
|
724
|
-
{"shape":"WAFNonexistentItemException"}
|
725
|
-
]
|
726
|
-
},
|
727
|
-
"GetWebACLForResource":{
|
728
|
-
"name":"GetWebACLForResource",
|
729
|
-
"http":{
|
730
|
-
"method":"POST",
|
731
|
-
"requestUri":"/"
|
732
|
-
},
|
733
|
-
"input":{"shape":"GetWebACLForResourceRequest"},
|
734
|
-
"output":{"shape":"GetWebACLForResourceResponse"},
|
735
|
-
"errors":[
|
736
|
-
{"shape":"WAFInternalErrorException"},
|
737
|
-
{"shape":"WAFInvalidAccountException"},
|
738
|
-
{"shape":"WAFNonexistentItemException"},
|
739
|
-
{"shape":"WAFInvalidParameterException"},
|
740
|
-
{"shape":"WAFUnavailableEntityException"}
|
741
|
-
]
|
742
|
-
},
|
743
|
-
"GetXssMatchSet":{
|
744
|
-
"name":"GetXssMatchSet",
|
745
|
-
"http":{
|
746
|
-
"method":"POST",
|
747
|
-
"requestUri":"/"
|
748
|
-
},
|
749
|
-
"input":{"shape":"GetXssMatchSetRequest"},
|
750
|
-
"output":{"shape":"GetXssMatchSetResponse"},
|
751
|
-
"errors":[
|
752
|
-
{"shape":"WAFInternalErrorException"},
|
753
|
-
{"shape":"WAFInvalidAccountException"},
|
754
|
-
{"shape":"WAFNonexistentItemException"}
|
755
|
-
]
|
756
|
-
},
|
757
|
-
"ListActivatedRulesInRuleGroup":{
|
758
|
-
"name":"ListActivatedRulesInRuleGroup",
|
759
|
-
"http":{
|
760
|
-
"method":"POST",
|
761
|
-
"requestUri":"/"
|
762
|
-
},
|
763
|
-
"input":{"shape":"ListActivatedRulesInRuleGroupRequest"},
|
764
|
-
"output":{"shape":"ListActivatedRulesInRuleGroupResponse"},
|
765
|
-
"errors":[
|
766
|
-
{"shape":"WAFInternalErrorException"},
|
767
|
-
{"shape":"WAFNonexistentItemException"},
|
768
|
-
{"shape":"WAFInvalidParameterException"}
|
769
|
-
]
|
770
|
-
},
|
771
|
-
"ListByteMatchSets":{
|
772
|
-
"name":"ListByteMatchSets",
|
773
|
-
"http":{
|
774
|
-
"method":"POST",
|
775
|
-
"requestUri":"/"
|
776
|
-
},
|
777
|
-
"input":{"shape":"ListByteMatchSetsRequest"},
|
778
|
-
"output":{"shape":"ListByteMatchSetsResponse"},
|
779
|
-
"errors":[
|
780
|
-
{"shape":"WAFInternalErrorException"},
|
781
|
-
{"shape":"WAFInvalidAccountException"}
|
782
|
-
]
|
783
|
-
},
|
784
|
-
"ListGeoMatchSets":{
|
785
|
-
"name":"ListGeoMatchSets",
|
786
|
-
"http":{
|
787
|
-
"method":"POST",
|
788
|
-
"requestUri":"/"
|
789
|
-
},
|
790
|
-
"input":{"shape":"ListGeoMatchSetsRequest"},
|
791
|
-
"output":{"shape":"ListGeoMatchSetsResponse"},
|
792
|
-
"errors":[
|
793
|
-
{"shape":"WAFInternalErrorException"},
|
794
|
-
{"shape":"WAFInvalidAccountException"}
|
795
|
-
]
|
796
|
-
},
|
797
|
-
"ListIPSets":{
|
798
|
-
"name":"ListIPSets",
|
799
|
-
"http":{
|
800
|
-
"method":"POST",
|
801
|
-
"requestUri":"/"
|
802
|
-
},
|
803
|
-
"input":{"shape":"ListIPSetsRequest"},
|
804
|
-
"output":{"shape":"ListIPSetsResponse"},
|
805
|
-
"errors":[
|
806
|
-
{"shape":"WAFInternalErrorException"},
|
807
|
-
{"shape":"WAFInvalidAccountException"}
|
808
|
-
]
|
809
|
-
},
|
810
|
-
"ListLoggingConfigurations":{
|
811
|
-
"name":"ListLoggingConfigurations",
|
812
|
-
"http":{
|
813
|
-
"method":"POST",
|
814
|
-
"requestUri":"/"
|
815
|
-
},
|
816
|
-
"input":{"shape":"ListLoggingConfigurationsRequest"},
|
817
|
-
"output":{"shape":"ListLoggingConfigurationsResponse"},
|
818
|
-
"errors":[
|
819
|
-
{"shape":"WAFInternalErrorException"},
|
820
|
-
{"shape":"WAFNonexistentItemException"},
|
821
|
-
{"shape":"WAFInvalidParameterException"}
|
822
|
-
]
|
823
|
-
},
|
824
|
-
"ListRateBasedRules":{
|
825
|
-
"name":"ListRateBasedRules",
|
826
|
-
"http":{
|
827
|
-
"method":"POST",
|
828
|
-
"requestUri":"/"
|
829
|
-
},
|
830
|
-
"input":{"shape":"ListRateBasedRulesRequest"},
|
831
|
-
"output":{"shape":"ListRateBasedRulesResponse"},
|
832
|
-
"errors":[
|
833
|
-
{"shape":"WAFInternalErrorException"},
|
834
|
-
{"shape":"WAFInvalidAccountException"}
|
835
|
-
]
|
836
|
-
},
|
837
|
-
"ListRegexMatchSets":{
|
838
|
-
"name":"ListRegexMatchSets",
|
839
|
-
"http":{
|
840
|
-
"method":"POST",
|
841
|
-
"requestUri":"/"
|
842
|
-
},
|
843
|
-
"input":{"shape":"ListRegexMatchSetsRequest"},
|
844
|
-
"output":{"shape":"ListRegexMatchSetsResponse"},
|
845
|
-
"errors":[
|
846
|
-
{"shape":"WAFInternalErrorException"},
|
847
|
-
{"shape":"WAFInvalidAccountException"}
|
848
|
-
]
|
849
|
-
},
|
850
|
-
"ListRegexPatternSets":{
|
851
|
-
"name":"ListRegexPatternSets",
|
852
|
-
"http":{
|
853
|
-
"method":"POST",
|
854
|
-
"requestUri":"/"
|
855
|
-
},
|
856
|
-
"input":{"shape":"ListRegexPatternSetsRequest"},
|
857
|
-
"output":{"shape":"ListRegexPatternSetsResponse"},
|
858
|
-
"errors":[
|
859
|
-
{"shape":"WAFInternalErrorException"},
|
860
|
-
{"shape":"WAFInvalidAccountException"}
|
861
|
-
]
|
862
|
-
},
|
863
|
-
"ListResourcesForWebACL":{
|
864
|
-
"name":"ListResourcesForWebACL",
|
865
|
-
"http":{
|
866
|
-
"method":"POST",
|
867
|
-
"requestUri":"/"
|
868
|
-
},
|
869
|
-
"input":{"shape":"ListResourcesForWebACLRequest"},
|
870
|
-
"output":{"shape":"ListResourcesForWebACLResponse"},
|
871
|
-
"errors":[
|
872
|
-
{"shape":"WAFInternalErrorException"},
|
873
|
-
{"shape":"WAFInvalidAccountException"},
|
874
|
-
{"shape":"WAFNonexistentItemException"},
|
875
|
-
{"shape":"WAFInvalidParameterException"}
|
876
|
-
]
|
877
|
-
},
|
878
|
-
"ListRuleGroups":{
|
879
|
-
"name":"ListRuleGroups",
|
880
|
-
"http":{
|
881
|
-
"method":"POST",
|
882
|
-
"requestUri":"/"
|
883
|
-
},
|
884
|
-
"input":{"shape":"ListRuleGroupsRequest"},
|
885
|
-
"output":{"shape":"ListRuleGroupsResponse"},
|
886
|
-
"errors":[
|
887
|
-
{"shape":"WAFInternalErrorException"}
|
888
|
-
]
|
889
|
-
},
|
890
|
-
"ListRules":{
|
891
|
-
"name":"ListRules",
|
892
|
-
"http":{
|
893
|
-
"method":"POST",
|
894
|
-
"requestUri":"/"
|
895
|
-
},
|
896
|
-
"input":{"shape":"ListRulesRequest"},
|
897
|
-
"output":{"shape":"ListRulesResponse"},
|
898
|
-
"errors":[
|
899
|
-
{"shape":"WAFInternalErrorException"},
|
900
|
-
{"shape":"WAFInvalidAccountException"}
|
901
|
-
]
|
902
|
-
},
|
903
|
-
"ListSizeConstraintSets":{
|
904
|
-
"name":"ListSizeConstraintSets",
|
905
|
-
"http":{
|
906
|
-
"method":"POST",
|
907
|
-
"requestUri":"/"
|
908
|
-
},
|
909
|
-
"input":{"shape":"ListSizeConstraintSetsRequest"},
|
910
|
-
"output":{"shape":"ListSizeConstraintSetsResponse"},
|
911
|
-
"errors":[
|
912
|
-
{"shape":"WAFInternalErrorException"},
|
913
|
-
{"shape":"WAFInvalidAccountException"}
|
914
|
-
]
|
915
|
-
},
|
916
|
-
"ListSqlInjectionMatchSets":{
|
917
|
-
"name":"ListSqlInjectionMatchSets",
|
918
|
-
"http":{
|
919
|
-
"method":"POST",
|
920
|
-
"requestUri":"/"
|
921
|
-
},
|
922
|
-
"input":{"shape":"ListSqlInjectionMatchSetsRequest"},
|
923
|
-
"output":{"shape":"ListSqlInjectionMatchSetsResponse"},
|
924
|
-
"errors":[
|
925
|
-
{"shape":"WAFInternalErrorException"},
|
926
|
-
{"shape":"WAFInvalidAccountException"}
|
927
|
-
]
|
928
|
-
},
|
929
|
-
"ListSubscribedRuleGroups":{
|
930
|
-
"name":"ListSubscribedRuleGroups",
|
931
|
-
"http":{
|
932
|
-
"method":"POST",
|
933
|
-
"requestUri":"/"
|
934
|
-
},
|
935
|
-
"input":{"shape":"ListSubscribedRuleGroupsRequest"},
|
936
|
-
"output":{"shape":"ListSubscribedRuleGroupsResponse"},
|
937
|
-
"errors":[
|
938
|
-
{"shape":"WAFNonexistentItemException"},
|
939
|
-
{"shape":"WAFInternalErrorException"}
|
940
|
-
]
|
941
|
-
},
|
942
|
-
"ListTagsForResource":{
|
943
|
-
"name":"ListTagsForResource",
|
944
|
-
"http":{
|
945
|
-
"method":"POST",
|
946
|
-
"requestUri":"/"
|
947
|
-
},
|
948
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
949
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
950
|
-
"errors":[
|
951
|
-
{"shape":"WAFInternalErrorException"},
|
952
|
-
{"shape":"WAFInvalidParameterException"},
|
953
|
-
{"shape":"WAFNonexistentItemException"},
|
954
|
-
{"shape":"WAFBadRequestException"},
|
955
|
-
{"shape":"WAFTagOperationException"},
|
956
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
957
|
-
]
|
958
|
-
},
|
959
|
-
"ListWebACLs":{
|
960
|
-
"name":"ListWebACLs",
|
961
|
-
"http":{
|
962
|
-
"method":"POST",
|
963
|
-
"requestUri":"/"
|
964
|
-
},
|
965
|
-
"input":{"shape":"ListWebACLsRequest"},
|
966
|
-
"output":{"shape":"ListWebACLsResponse"},
|
967
|
-
"errors":[
|
968
|
-
{"shape":"WAFInternalErrorException"},
|
969
|
-
{"shape":"WAFInvalidAccountException"}
|
970
|
-
]
|
971
|
-
},
|
972
|
-
"ListXssMatchSets":{
|
973
|
-
"name":"ListXssMatchSets",
|
974
|
-
"http":{
|
975
|
-
"method":"POST",
|
976
|
-
"requestUri":"/"
|
977
|
-
},
|
978
|
-
"input":{"shape":"ListXssMatchSetsRequest"},
|
979
|
-
"output":{"shape":"ListXssMatchSetsResponse"},
|
980
|
-
"errors":[
|
981
|
-
{"shape":"WAFInternalErrorException"},
|
982
|
-
{"shape":"WAFInvalidAccountException"}
|
983
|
-
]
|
984
|
-
},
|
985
|
-
"PutLoggingConfiguration":{
|
986
|
-
"name":"PutLoggingConfiguration",
|
987
|
-
"http":{
|
988
|
-
"method":"POST",
|
989
|
-
"requestUri":"/"
|
990
|
-
},
|
991
|
-
"input":{"shape":"PutLoggingConfigurationRequest"},
|
992
|
-
"output":{"shape":"PutLoggingConfigurationResponse"},
|
993
|
-
"errors":[
|
994
|
-
{"shape":"WAFInternalErrorException"},
|
995
|
-
{"shape":"WAFNonexistentItemException"},
|
996
|
-
{"shape":"WAFStaleDataException"},
|
997
|
-
{"shape":"WAFServiceLinkedRoleErrorException"}
|
998
|
-
]
|
999
|
-
},
|
1000
|
-
"PutPermissionPolicy":{
|
1001
|
-
"name":"PutPermissionPolicy",
|
1002
|
-
"http":{
|
1003
|
-
"method":"POST",
|
1004
|
-
"requestUri":"/"
|
1005
|
-
},
|
1006
|
-
"input":{"shape":"PutPermissionPolicyRequest"},
|
1007
|
-
"output":{"shape":"PutPermissionPolicyResponse"},
|
1008
|
-
"errors":[
|
1009
|
-
{"shape":"WAFInternalErrorException"},
|
1010
|
-
{"shape":"WAFStaleDataException"},
|
1011
|
-
{"shape":"WAFNonexistentItemException"},
|
1012
|
-
{"shape":"WAFInvalidPermissionPolicyException"}
|
1013
|
-
]
|
1014
|
-
},
|
1015
|
-
"TagResource":{
|
1016
|
-
"name":"TagResource",
|
1017
|
-
"http":{
|
1018
|
-
"method":"POST",
|
1019
|
-
"requestUri":"/"
|
1020
|
-
},
|
1021
|
-
"input":{"shape":"TagResourceRequest"},
|
1022
|
-
"output":{"shape":"TagResourceResponse"},
|
1023
|
-
"errors":[
|
1024
|
-
{"shape":"WAFInternalErrorException"},
|
1025
|
-
{"shape":"WAFInvalidParameterException"},
|
1026
|
-
{"shape":"WAFLimitsExceededException"},
|
1027
|
-
{"shape":"WAFNonexistentItemException"},
|
1028
|
-
{"shape":"WAFBadRequestException"},
|
1029
|
-
{"shape":"WAFTagOperationException"},
|
1030
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
1031
|
-
]
|
1032
|
-
},
|
1033
|
-
"UntagResource":{
|
1034
|
-
"name":"UntagResource",
|
1035
|
-
"http":{
|
1036
|
-
"method":"POST",
|
1037
|
-
"requestUri":"/"
|
1038
|
-
},
|
1039
|
-
"input":{"shape":"UntagResourceRequest"},
|
1040
|
-
"output":{"shape":"UntagResourceResponse"},
|
1041
|
-
"errors":[
|
1042
|
-
{"shape":"WAFInternalErrorException"},
|
1043
|
-
{"shape":"WAFInvalidParameterException"},
|
1044
|
-
{"shape":"WAFNonexistentItemException"},
|
1045
|
-
{"shape":"WAFBadRequestException"},
|
1046
|
-
{"shape":"WAFTagOperationException"},
|
1047
|
-
{"shape":"WAFTagOperationInternalErrorException"}
|
1048
|
-
]
|
1049
|
-
},
|
1050
|
-
"UpdateByteMatchSet":{
|
1051
|
-
"name":"UpdateByteMatchSet",
|
1052
|
-
"http":{
|
1053
|
-
"method":"POST",
|
1054
|
-
"requestUri":"/"
|
1055
|
-
},
|
1056
|
-
"input":{"shape":"UpdateByteMatchSetRequest"},
|
1057
|
-
"output":{"shape":"UpdateByteMatchSetResponse"},
|
1058
|
-
"errors":[
|
1059
|
-
{"shape":"WAFInternalErrorException"},
|
1060
|
-
{"shape":"WAFInvalidAccountException"},
|
1061
|
-
{"shape":"WAFInvalidOperationException"},
|
1062
|
-
{"shape":"WAFInvalidParameterException"},
|
1063
|
-
{"shape":"WAFNonexistentContainerException"},
|
1064
|
-
{"shape":"WAFNonexistentItemException"},
|
1065
|
-
{"shape":"WAFStaleDataException"},
|
1066
|
-
{"shape":"WAFLimitsExceededException"}
|
1067
|
-
]
|
1068
|
-
},
|
1069
|
-
"UpdateGeoMatchSet":{
|
1070
|
-
"name":"UpdateGeoMatchSet",
|
1071
|
-
"http":{
|
1072
|
-
"method":"POST",
|
1073
|
-
"requestUri":"/"
|
1074
|
-
},
|
1075
|
-
"input":{"shape":"UpdateGeoMatchSetRequest"},
|
1076
|
-
"output":{"shape":"UpdateGeoMatchSetResponse"},
|
1077
|
-
"errors":[
|
1078
|
-
{"shape":"WAFStaleDataException"},
|
1079
|
-
{"shape":"WAFInternalErrorException"},
|
1080
|
-
{"shape":"WAFInvalidAccountException"},
|
1081
|
-
{"shape":"WAFInvalidOperationException"},
|
1082
|
-
{"shape":"WAFInvalidParameterException"},
|
1083
|
-
{"shape":"WAFNonexistentContainerException"},
|
1084
|
-
{"shape":"WAFNonexistentItemException"},
|
1085
|
-
{"shape":"WAFReferencedItemException"},
|
1086
|
-
{"shape":"WAFLimitsExceededException"}
|
1087
|
-
]
|
1088
|
-
},
|
1089
|
-
"UpdateIPSet":{
|
1090
|
-
"name":"UpdateIPSet",
|
1091
|
-
"http":{
|
1092
|
-
"method":"POST",
|
1093
|
-
"requestUri":"/"
|
1094
|
-
},
|
1095
|
-
"input":{"shape":"UpdateIPSetRequest"},
|
1096
|
-
"output":{"shape":"UpdateIPSetResponse"},
|
1097
|
-
"errors":[
|
1098
|
-
{"shape":"WAFStaleDataException"},
|
1099
|
-
{"shape":"WAFInternalErrorException"},
|
1100
|
-
{"shape":"WAFInvalidAccountException"},
|
1101
|
-
{"shape":"WAFInvalidOperationException"},
|
1102
|
-
{"shape":"WAFInvalidParameterException"},
|
1103
|
-
{"shape":"WAFNonexistentContainerException"},
|
1104
|
-
{"shape":"WAFNonexistentItemException"},
|
1105
|
-
{"shape":"WAFReferencedItemException"},
|
1106
|
-
{"shape":"WAFLimitsExceededException"}
|
1107
|
-
]
|
1108
|
-
},
|
1109
|
-
"UpdateRateBasedRule":{
|
1110
|
-
"name":"UpdateRateBasedRule",
|
1111
|
-
"http":{
|
1112
|
-
"method":"POST",
|
1113
|
-
"requestUri":"/"
|
1114
|
-
},
|
1115
|
-
"input":{"shape":"UpdateRateBasedRuleRequest"},
|
1116
|
-
"output":{"shape":"UpdateRateBasedRuleResponse"},
|
1117
|
-
"errors":[
|
1118
|
-
{"shape":"WAFStaleDataException"},
|
1119
|
-
{"shape":"WAFInternalErrorException"},
|
1120
|
-
{"shape":"WAFInvalidAccountException"},
|
1121
|
-
{"shape":"WAFInvalidOperationException"},
|
1122
|
-
{"shape":"WAFInvalidParameterException"},
|
1123
|
-
{"shape":"WAFNonexistentContainerException"},
|
1124
|
-
{"shape":"WAFNonexistentItemException"},
|
1125
|
-
{"shape":"WAFReferencedItemException"},
|
1126
|
-
{"shape":"WAFLimitsExceededException"}
|
1127
|
-
]
|
1128
|
-
},
|
1129
|
-
"UpdateRegexMatchSet":{
|
1130
|
-
"name":"UpdateRegexMatchSet",
|
1131
|
-
"http":{
|
1132
|
-
"method":"POST",
|
1133
|
-
"requestUri":"/"
|
1134
|
-
},
|
1135
|
-
"input":{"shape":"UpdateRegexMatchSetRequest"},
|
1136
|
-
"output":{"shape":"UpdateRegexMatchSetResponse"},
|
1137
|
-
"errors":[
|
1138
|
-
{"shape":"WAFStaleDataException"},
|
1139
|
-
{"shape":"WAFInternalErrorException"},
|
1140
|
-
{"shape":"WAFDisallowedNameException"},
|
1141
|
-
{"shape":"WAFLimitsExceededException"},
|
1142
|
-
{"shape":"WAFNonexistentItemException"},
|
1143
|
-
{"shape":"WAFNonexistentContainerException"},
|
1144
|
-
{"shape":"WAFInvalidOperationException"},
|
1145
|
-
{"shape":"WAFInvalidAccountException"}
|
1146
|
-
]
|
1147
|
-
},
|
1148
|
-
"UpdateRegexPatternSet":{
|
1149
|
-
"name":"UpdateRegexPatternSet",
|
1150
|
-
"http":{
|
1151
|
-
"method":"POST",
|
1152
|
-
"requestUri":"/"
|
1153
|
-
},
|
1154
|
-
"input":{"shape":"UpdateRegexPatternSetRequest"},
|
1155
|
-
"output":{"shape":"UpdateRegexPatternSetResponse"},
|
1156
|
-
"errors":[
|
1157
|
-
{"shape":"WAFStaleDataException"},
|
1158
|
-
{"shape":"WAFInternalErrorException"},
|
1159
|
-
{"shape":"WAFLimitsExceededException"},
|
1160
|
-
{"shape":"WAFNonexistentItemException"},
|
1161
|
-
{"shape":"WAFNonexistentContainerException"},
|
1162
|
-
{"shape":"WAFInvalidOperationException"},
|
1163
|
-
{"shape":"WAFInvalidAccountException"},
|
1164
|
-
{"shape":"WAFInvalidRegexPatternException"}
|
1165
|
-
]
|
1166
|
-
},
|
1167
|
-
"UpdateRule":{
|
1168
|
-
"name":"UpdateRule",
|
1169
|
-
"http":{
|
1170
|
-
"method":"POST",
|
1171
|
-
"requestUri":"/"
|
1172
|
-
},
|
1173
|
-
"input":{"shape":"UpdateRuleRequest"},
|
1174
|
-
"output":{"shape":"UpdateRuleResponse"},
|
1175
|
-
"errors":[
|
1176
|
-
{"shape":"WAFStaleDataException"},
|
1177
|
-
{"shape":"WAFInternalErrorException"},
|
1178
|
-
{"shape":"WAFInvalidAccountException"},
|
1179
|
-
{"shape":"WAFInvalidOperationException"},
|
1180
|
-
{"shape":"WAFInvalidParameterException"},
|
1181
|
-
{"shape":"WAFNonexistentContainerException"},
|
1182
|
-
{"shape":"WAFNonexistentItemException"},
|
1183
|
-
{"shape":"WAFReferencedItemException"},
|
1184
|
-
{"shape":"WAFLimitsExceededException"}
|
1185
|
-
]
|
1186
|
-
},
|
1187
|
-
"UpdateRuleGroup":{
|
1188
|
-
"name":"UpdateRuleGroup",
|
1189
|
-
"http":{
|
1190
|
-
"method":"POST",
|
1191
|
-
"requestUri":"/"
|
1192
|
-
},
|
1193
|
-
"input":{"shape":"UpdateRuleGroupRequest"},
|
1194
|
-
"output":{"shape":"UpdateRuleGroupResponse"},
|
1195
|
-
"errors":[
|
1196
|
-
{"shape":"WAFStaleDataException"},
|
1197
|
-
{"shape":"WAFInternalErrorException"},
|
1198
|
-
{"shape":"WAFNonexistentContainerException"},
|
1199
|
-
{"shape":"WAFNonexistentItemException"},
|
1200
|
-
{"shape":"WAFInvalidOperationException"},
|
1201
|
-
{"shape":"WAFLimitsExceededException"},
|
1202
|
-
{"shape":"WAFInvalidParameterException"}
|
1203
|
-
]
|
1204
|
-
},
|
1205
|
-
"UpdateSizeConstraintSet":{
|
1206
|
-
"name":"UpdateSizeConstraintSet",
|
1207
|
-
"http":{
|
1208
|
-
"method":"POST",
|
1209
|
-
"requestUri":"/"
|
1210
|
-
},
|
1211
|
-
"input":{"shape":"UpdateSizeConstraintSetRequest"},
|
1212
|
-
"output":{"shape":"UpdateSizeConstraintSetResponse"},
|
1213
|
-
"errors":[
|
1214
|
-
{"shape":"WAFStaleDataException"},
|
1215
|
-
{"shape":"WAFInternalErrorException"},
|
1216
|
-
{"shape":"WAFInvalidAccountException"},
|
1217
|
-
{"shape":"WAFInvalidOperationException"},
|
1218
|
-
{"shape":"WAFInvalidParameterException"},
|
1219
|
-
{"shape":"WAFNonexistentContainerException"},
|
1220
|
-
{"shape":"WAFNonexistentItemException"},
|
1221
|
-
{"shape":"WAFReferencedItemException"},
|
1222
|
-
{"shape":"WAFLimitsExceededException"}
|
1223
|
-
]
|
1224
|
-
},
|
1225
|
-
"UpdateSqlInjectionMatchSet":{
|
1226
|
-
"name":"UpdateSqlInjectionMatchSet",
|
1227
|
-
"http":{
|
1228
|
-
"method":"POST",
|
1229
|
-
"requestUri":"/"
|
1230
|
-
},
|
1231
|
-
"input":{"shape":"UpdateSqlInjectionMatchSetRequest"},
|
1232
|
-
"output":{"shape":"UpdateSqlInjectionMatchSetResponse"},
|
1233
|
-
"errors":[
|
1234
|
-
{"shape":"WAFInternalErrorException"},
|
1235
|
-
{"shape":"WAFInvalidAccountException"},
|
1236
|
-
{"shape":"WAFInvalidOperationException"},
|
1237
|
-
{"shape":"WAFInvalidParameterException"},
|
1238
|
-
{"shape":"WAFNonexistentContainerException"},
|
1239
|
-
{"shape":"WAFNonexistentItemException"},
|
1240
|
-
{"shape":"WAFStaleDataException"},
|
1241
|
-
{"shape":"WAFLimitsExceededException"}
|
1242
|
-
]
|
1243
|
-
},
|
1244
|
-
"UpdateWebACL":{
|
1245
|
-
"name":"UpdateWebACL",
|
1246
|
-
"http":{
|
1247
|
-
"method":"POST",
|
1248
|
-
"requestUri":"/"
|
1249
|
-
},
|
1250
|
-
"input":{"shape":"UpdateWebACLRequest"},
|
1251
|
-
"output":{"shape":"UpdateWebACLResponse"},
|
1252
|
-
"errors":[
|
1253
|
-
{"shape":"WAFStaleDataException"},
|
1254
|
-
{"shape":"WAFInternalErrorException"},
|
1255
|
-
{"shape":"WAFInvalidAccountException"},
|
1256
|
-
{"shape":"WAFInvalidOperationException"},
|
1257
|
-
{"shape":"WAFInvalidParameterException"},
|
1258
|
-
{"shape":"WAFNonexistentContainerException"},
|
1259
|
-
{"shape":"WAFNonexistentItemException"},
|
1260
|
-
{"shape":"WAFReferencedItemException"},
|
1261
|
-
{"shape":"WAFLimitsExceededException"},
|
1262
|
-
{"shape":"WAFSubscriptionNotFoundException"}
|
1263
|
-
]
|
1264
|
-
},
|
1265
|
-
"UpdateXssMatchSet":{
|
1266
|
-
"name":"UpdateXssMatchSet",
|
1267
|
-
"http":{
|
1268
|
-
"method":"POST",
|
1269
|
-
"requestUri":"/"
|
1270
|
-
},
|
1271
|
-
"input":{"shape":"UpdateXssMatchSetRequest"},
|
1272
|
-
"output":{"shape":"UpdateXssMatchSetResponse"},
|
1273
|
-
"errors":[
|
1274
|
-
{"shape":"WAFInternalErrorException"},
|
1275
|
-
{"shape":"WAFInvalidAccountException"},
|
1276
|
-
{"shape":"WAFInvalidOperationException"},
|
1277
|
-
{"shape":"WAFInvalidParameterException"},
|
1278
|
-
{"shape":"WAFNonexistentContainerException"},
|
1279
|
-
{"shape":"WAFNonexistentItemException"},
|
1280
|
-
{"shape":"WAFStaleDataException"},
|
1281
|
-
{"shape":"WAFLimitsExceededException"}
|
1282
|
-
]
|
1283
|
-
}
|
1284
|
-
},
|
1285
|
-
"shapes":{
|
1286
|
-
"Action":{"type":"string"},
|
1287
|
-
"ActivatedRule":{
|
1288
|
-
"type":"structure",
|
1289
|
-
"required":[
|
1290
|
-
"Priority",
|
1291
|
-
"RuleId"
|
1292
|
-
],
|
1293
|
-
"members":{
|
1294
|
-
"Priority":{"shape":"RulePriority"},
|
1295
|
-
"RuleId":{"shape":"ResourceId"},
|
1296
|
-
"Action":{"shape":"WafAction"},
|
1297
|
-
"OverrideAction":{"shape":"WafOverrideAction"},
|
1298
|
-
"Type":{"shape":"WafRuleType"},
|
1299
|
-
"ExcludedRules":{"shape":"ExcludedRules"}
|
1300
|
-
}
|
1301
|
-
},
|
1302
|
-
"ActivatedRules":{
|
1303
|
-
"type":"list",
|
1304
|
-
"member":{"shape":"ActivatedRule"}
|
1305
|
-
},
|
1306
|
-
"AssociateWebACLRequest":{
|
1307
|
-
"type":"structure",
|
1308
|
-
"required":[
|
1309
|
-
"WebACLId",
|
1310
|
-
"ResourceArn"
|
1311
|
-
],
|
1312
|
-
"members":{
|
1313
|
-
"WebACLId":{"shape":"ResourceId"},
|
1314
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
1315
|
-
}
|
1316
|
-
},
|
1317
|
-
"AssociateWebACLResponse":{
|
1318
|
-
"type":"structure",
|
1319
|
-
"members":{
|
1320
|
-
}
|
1321
|
-
},
|
1322
|
-
"ByteMatchSet":{
|
1323
|
-
"type":"structure",
|
1324
|
-
"required":[
|
1325
|
-
"ByteMatchSetId",
|
1326
|
-
"ByteMatchTuples"
|
1327
|
-
],
|
1328
|
-
"members":{
|
1329
|
-
"ByteMatchSetId":{"shape":"ResourceId"},
|
1330
|
-
"Name":{"shape":"ResourceName"},
|
1331
|
-
"ByteMatchTuples":{"shape":"ByteMatchTuples"}
|
1332
|
-
}
|
1333
|
-
},
|
1334
|
-
"ByteMatchSetSummaries":{
|
1335
|
-
"type":"list",
|
1336
|
-
"member":{"shape":"ByteMatchSetSummary"}
|
1337
|
-
},
|
1338
|
-
"ByteMatchSetSummary":{
|
1339
|
-
"type":"structure",
|
1340
|
-
"required":[
|
1341
|
-
"ByteMatchSetId",
|
1342
|
-
"Name"
|
1343
|
-
],
|
1344
|
-
"members":{
|
1345
|
-
"ByteMatchSetId":{"shape":"ResourceId"},
|
1346
|
-
"Name":{"shape":"ResourceName"}
|
1347
|
-
}
|
1348
|
-
},
|
1349
|
-
"ByteMatchSetUpdate":{
|
1350
|
-
"type":"structure",
|
1351
|
-
"required":[
|
1352
|
-
"Action",
|
1353
|
-
"ByteMatchTuple"
|
1354
|
-
],
|
1355
|
-
"members":{
|
1356
|
-
"Action":{"shape":"ChangeAction"},
|
1357
|
-
"ByteMatchTuple":{"shape":"ByteMatchTuple"}
|
1358
|
-
}
|
1359
|
-
},
|
1360
|
-
"ByteMatchSetUpdates":{
|
1361
|
-
"type":"list",
|
1362
|
-
"member":{"shape":"ByteMatchSetUpdate"},
|
1363
|
-
"min":1
|
1364
|
-
},
|
1365
|
-
"ByteMatchTargetString":{"type":"blob"},
|
1366
|
-
"ByteMatchTuple":{
|
1367
|
-
"type":"structure",
|
1368
|
-
"required":[
|
1369
|
-
"FieldToMatch",
|
1370
|
-
"TargetString",
|
1371
|
-
"TextTransformation",
|
1372
|
-
"PositionalConstraint"
|
1373
|
-
],
|
1374
|
-
"members":{
|
1375
|
-
"FieldToMatch":{"shape":"FieldToMatch"},
|
1376
|
-
"TargetString":{"shape":"ByteMatchTargetString"},
|
1377
|
-
"TextTransformation":{"shape":"TextTransformation"},
|
1378
|
-
"PositionalConstraint":{"shape":"PositionalConstraint"}
|
1379
|
-
}
|
1380
|
-
},
|
1381
|
-
"ByteMatchTuples":{
|
1382
|
-
"type":"list",
|
1383
|
-
"member":{"shape":"ByteMatchTuple"}
|
1384
|
-
},
|
1385
|
-
"ChangeAction":{
|
1386
|
-
"type":"string",
|
1387
|
-
"enum":[
|
1388
|
-
"INSERT",
|
1389
|
-
"DELETE"
|
1390
|
-
]
|
1391
|
-
},
|
1392
|
-
"ChangeToken":{
|
1393
|
-
"type":"string",
|
1394
|
-
"min":1
|
1395
|
-
},
|
1396
|
-
"ChangeTokenStatus":{
|
1397
|
-
"type":"string",
|
1398
|
-
"enum":[
|
1399
|
-
"PROVISIONED",
|
1400
|
-
"PENDING",
|
1401
|
-
"INSYNC"
|
1402
|
-
]
|
1403
|
-
},
|
1404
|
-
"ComparisonOperator":{
|
1405
|
-
"type":"string",
|
1406
|
-
"enum":[
|
1407
|
-
"EQ",
|
1408
|
-
"NE",
|
1409
|
-
"LE",
|
1410
|
-
"LT",
|
1411
|
-
"GE",
|
1412
|
-
"GT"
|
1413
|
-
]
|
1414
|
-
},
|
1415
|
-
"Country":{"type":"string"},
|
1416
|
-
"CreateByteMatchSetRequest":{
|
1417
|
-
"type":"structure",
|
1418
|
-
"required":[
|
1419
|
-
"Name",
|
1420
|
-
"ChangeToken"
|
1421
|
-
],
|
1422
|
-
"members":{
|
1423
|
-
"Name":{"shape":"ResourceName"},
|
1424
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1425
|
-
}
|
1426
|
-
},
|
1427
|
-
"CreateByteMatchSetResponse":{
|
1428
|
-
"type":"structure",
|
1429
|
-
"members":{
|
1430
|
-
"ByteMatchSet":{"shape":"ByteMatchSet"},
|
1431
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1432
|
-
}
|
1433
|
-
},
|
1434
|
-
"CreateGeoMatchSetRequest":{
|
1435
|
-
"type":"structure",
|
1436
|
-
"required":[
|
1437
|
-
"Name",
|
1438
|
-
"ChangeToken"
|
1439
|
-
],
|
1440
|
-
"members":{
|
1441
|
-
"Name":{"shape":"ResourceName"},
|
1442
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1443
|
-
}
|
1444
|
-
},
|
1445
|
-
"CreateGeoMatchSetResponse":{
|
1446
|
-
"type":"structure",
|
1447
|
-
"members":{
|
1448
|
-
"GeoMatchSet":{"shape":"GeoMatchSet"},
|
1449
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1450
|
-
}
|
1451
|
-
},
|
1452
|
-
"CreateIPSetRequest":{
|
1453
|
-
"type":"structure",
|
1454
|
-
"required":[
|
1455
|
-
"Name",
|
1456
|
-
"ChangeToken"
|
1457
|
-
],
|
1458
|
-
"members":{
|
1459
|
-
"Name":{"shape":"ResourceName"},
|
1460
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1461
|
-
}
|
1462
|
-
},
|
1463
|
-
"CreateIPSetResponse":{
|
1464
|
-
"type":"structure",
|
1465
|
-
"members":{
|
1466
|
-
"IPSet":{"shape":"IPSet"},
|
1467
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1468
|
-
}
|
1469
|
-
},
|
1470
|
-
"CreateRateBasedRuleRequest":{
|
1471
|
-
"type":"structure",
|
1472
|
-
"required":[
|
1473
|
-
"Name",
|
1474
|
-
"MetricName",
|
1475
|
-
"RateKey",
|
1476
|
-
"RateLimit",
|
1477
|
-
"ChangeToken"
|
1478
|
-
],
|
1479
|
-
"members":{
|
1480
|
-
"Name":{"shape":"ResourceName"},
|
1481
|
-
"MetricName":{"shape":"MetricName"},
|
1482
|
-
"RateKey":{"shape":"RateKey"},
|
1483
|
-
"RateLimit":{"shape":"RateLimit"},
|
1484
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
1485
|
-
"Tags":{"shape":"TagList"}
|
1486
|
-
}
|
1487
|
-
},
|
1488
|
-
"CreateRateBasedRuleResponse":{
|
1489
|
-
"type":"structure",
|
1490
|
-
"members":{
|
1491
|
-
"Rule":{"shape":"RateBasedRule"},
|
1492
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1493
|
-
}
|
1494
|
-
},
|
1495
|
-
"CreateRegexMatchSetRequest":{
|
1496
|
-
"type":"structure",
|
1497
|
-
"required":[
|
1498
|
-
"Name",
|
1499
|
-
"ChangeToken"
|
1500
|
-
],
|
1501
|
-
"members":{
|
1502
|
-
"Name":{"shape":"ResourceName"},
|
1503
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1504
|
-
}
|
1505
|
-
},
|
1506
|
-
"CreateRegexMatchSetResponse":{
|
1507
|
-
"type":"structure",
|
1508
|
-
"members":{
|
1509
|
-
"RegexMatchSet":{"shape":"RegexMatchSet"},
|
1510
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1511
|
-
}
|
1512
|
-
},
|
1513
|
-
"CreateRegexPatternSetRequest":{
|
1514
|
-
"type":"structure",
|
1515
|
-
"required":[
|
1516
|
-
"Name",
|
1517
|
-
"ChangeToken"
|
1518
|
-
],
|
1519
|
-
"members":{
|
1520
|
-
"Name":{"shape":"ResourceName"},
|
1521
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1522
|
-
}
|
1523
|
-
},
|
1524
|
-
"CreateRegexPatternSetResponse":{
|
1525
|
-
"type":"structure",
|
1526
|
-
"members":{
|
1527
|
-
"RegexPatternSet":{"shape":"RegexPatternSet"},
|
1528
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1529
|
-
}
|
1530
|
-
},
|
1531
|
-
"CreateRuleGroupRequest":{
|
1532
|
-
"type":"structure",
|
1533
|
-
"required":[
|
1534
|
-
"Name",
|
1535
|
-
"MetricName",
|
1536
|
-
"ChangeToken"
|
1537
|
-
],
|
1538
|
-
"members":{
|
1539
|
-
"Name":{"shape":"ResourceName"},
|
1540
|
-
"MetricName":{"shape":"MetricName"},
|
1541
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
1542
|
-
"Tags":{"shape":"TagList"}
|
1543
|
-
}
|
1544
|
-
},
|
1545
|
-
"CreateRuleGroupResponse":{
|
1546
|
-
"type":"structure",
|
1547
|
-
"members":{
|
1548
|
-
"RuleGroup":{"shape":"RuleGroup"},
|
1549
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1550
|
-
}
|
1551
|
-
},
|
1552
|
-
"CreateRuleRequest":{
|
1553
|
-
"type":"structure",
|
1554
|
-
"required":[
|
1555
|
-
"Name",
|
1556
|
-
"MetricName",
|
1557
|
-
"ChangeToken"
|
1558
|
-
],
|
1559
|
-
"members":{
|
1560
|
-
"Name":{"shape":"ResourceName"},
|
1561
|
-
"MetricName":{"shape":"MetricName"},
|
1562
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
1563
|
-
"Tags":{"shape":"TagList"}
|
1564
|
-
}
|
1565
|
-
},
|
1566
|
-
"CreateRuleResponse":{
|
1567
|
-
"type":"structure",
|
1568
|
-
"members":{
|
1569
|
-
"Rule":{"shape":"Rule"},
|
1570
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1571
|
-
}
|
1572
|
-
},
|
1573
|
-
"CreateSizeConstraintSetRequest":{
|
1574
|
-
"type":"structure",
|
1575
|
-
"required":[
|
1576
|
-
"Name",
|
1577
|
-
"ChangeToken"
|
1578
|
-
],
|
1579
|
-
"members":{
|
1580
|
-
"Name":{"shape":"ResourceName"},
|
1581
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1582
|
-
}
|
1583
|
-
},
|
1584
|
-
"CreateSizeConstraintSetResponse":{
|
1585
|
-
"type":"structure",
|
1586
|
-
"members":{
|
1587
|
-
"SizeConstraintSet":{"shape":"SizeConstraintSet"},
|
1588
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1589
|
-
}
|
1590
|
-
},
|
1591
|
-
"CreateSqlInjectionMatchSetRequest":{
|
1592
|
-
"type":"structure",
|
1593
|
-
"required":[
|
1594
|
-
"Name",
|
1595
|
-
"ChangeToken"
|
1596
|
-
],
|
1597
|
-
"members":{
|
1598
|
-
"Name":{"shape":"ResourceName"},
|
1599
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1600
|
-
}
|
1601
|
-
},
|
1602
|
-
"CreateSqlInjectionMatchSetResponse":{
|
1603
|
-
"type":"structure",
|
1604
|
-
"members":{
|
1605
|
-
"SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"},
|
1606
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1607
|
-
}
|
1608
|
-
},
|
1609
|
-
"CreateWebACLRequest":{
|
1610
|
-
"type":"structure",
|
1611
|
-
"required":[
|
1612
|
-
"Name",
|
1613
|
-
"MetricName",
|
1614
|
-
"DefaultAction",
|
1615
|
-
"ChangeToken"
|
1616
|
-
],
|
1617
|
-
"members":{
|
1618
|
-
"Name":{"shape":"ResourceName"},
|
1619
|
-
"MetricName":{"shape":"MetricName"},
|
1620
|
-
"DefaultAction":{"shape":"WafAction"},
|
1621
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
1622
|
-
"Tags":{"shape":"TagList"}
|
1623
|
-
}
|
1624
|
-
},
|
1625
|
-
"CreateWebACLResponse":{
|
1626
|
-
"type":"structure",
|
1627
|
-
"members":{
|
1628
|
-
"WebACL":{"shape":"WebACL"},
|
1629
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1630
|
-
}
|
1631
|
-
},
|
1632
|
-
"CreateXssMatchSetRequest":{
|
1633
|
-
"type":"structure",
|
1634
|
-
"required":[
|
1635
|
-
"Name",
|
1636
|
-
"ChangeToken"
|
1637
|
-
],
|
1638
|
-
"members":{
|
1639
|
-
"Name":{"shape":"ResourceName"},
|
1640
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1641
|
-
}
|
1642
|
-
},
|
1643
|
-
"CreateXssMatchSetResponse":{
|
1644
|
-
"type":"structure",
|
1645
|
-
"members":{
|
1646
|
-
"XssMatchSet":{"shape":"XssMatchSet"},
|
1647
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1648
|
-
}
|
1649
|
-
},
|
1650
|
-
"DeleteByteMatchSetRequest":{
|
1651
|
-
"type":"structure",
|
1652
|
-
"required":[
|
1653
|
-
"ByteMatchSetId",
|
1654
|
-
"ChangeToken"
|
1655
|
-
],
|
1656
|
-
"members":{
|
1657
|
-
"ByteMatchSetId":{"shape":"ResourceId"},
|
1658
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1659
|
-
}
|
1660
|
-
},
|
1661
|
-
"DeleteByteMatchSetResponse":{
|
1662
|
-
"type":"structure",
|
1663
|
-
"members":{
|
1664
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1665
|
-
}
|
1666
|
-
},
|
1667
|
-
"DeleteGeoMatchSetRequest":{
|
1668
|
-
"type":"structure",
|
1669
|
-
"required":[
|
1670
|
-
"GeoMatchSetId",
|
1671
|
-
"ChangeToken"
|
1672
|
-
],
|
1673
|
-
"members":{
|
1674
|
-
"GeoMatchSetId":{"shape":"ResourceId"},
|
1675
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1676
|
-
}
|
1677
|
-
},
|
1678
|
-
"DeleteGeoMatchSetResponse":{
|
1679
|
-
"type":"structure",
|
1680
|
-
"members":{
|
1681
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1682
|
-
}
|
1683
|
-
},
|
1684
|
-
"DeleteIPSetRequest":{
|
1685
|
-
"type":"structure",
|
1686
|
-
"required":[
|
1687
|
-
"IPSetId",
|
1688
|
-
"ChangeToken"
|
1689
|
-
],
|
1690
|
-
"members":{
|
1691
|
-
"IPSetId":{"shape":"ResourceId"},
|
1692
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1693
|
-
}
|
1694
|
-
},
|
1695
|
-
"DeleteIPSetResponse":{
|
1696
|
-
"type":"structure",
|
1697
|
-
"members":{
|
1698
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1699
|
-
}
|
1700
|
-
},
|
1701
|
-
"DeleteLoggingConfigurationRequest":{
|
1702
|
-
"type":"structure",
|
1703
|
-
"required":["ResourceArn"],
|
1704
|
-
"members":{
|
1705
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
1706
|
-
}
|
1707
|
-
},
|
1708
|
-
"DeleteLoggingConfigurationResponse":{
|
1709
|
-
"type":"structure",
|
1710
|
-
"members":{
|
1711
|
-
}
|
1712
|
-
},
|
1713
|
-
"DeletePermissionPolicyRequest":{
|
1714
|
-
"type":"structure",
|
1715
|
-
"required":["ResourceArn"],
|
1716
|
-
"members":{
|
1717
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
1718
|
-
}
|
1719
|
-
},
|
1720
|
-
"DeletePermissionPolicyResponse":{
|
1721
|
-
"type":"structure",
|
1722
|
-
"members":{
|
1723
|
-
}
|
1724
|
-
},
|
1725
|
-
"DeleteRateBasedRuleRequest":{
|
1726
|
-
"type":"structure",
|
1727
|
-
"required":[
|
1728
|
-
"RuleId",
|
1729
|
-
"ChangeToken"
|
1730
|
-
],
|
1731
|
-
"members":{
|
1732
|
-
"RuleId":{"shape":"ResourceId"},
|
1733
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1734
|
-
}
|
1735
|
-
},
|
1736
|
-
"DeleteRateBasedRuleResponse":{
|
1737
|
-
"type":"structure",
|
1738
|
-
"members":{
|
1739
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1740
|
-
}
|
1741
|
-
},
|
1742
|
-
"DeleteRegexMatchSetRequest":{
|
1743
|
-
"type":"structure",
|
1744
|
-
"required":[
|
1745
|
-
"RegexMatchSetId",
|
1746
|
-
"ChangeToken"
|
1747
|
-
],
|
1748
|
-
"members":{
|
1749
|
-
"RegexMatchSetId":{"shape":"ResourceId"},
|
1750
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1751
|
-
}
|
1752
|
-
},
|
1753
|
-
"DeleteRegexMatchSetResponse":{
|
1754
|
-
"type":"structure",
|
1755
|
-
"members":{
|
1756
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1757
|
-
}
|
1758
|
-
},
|
1759
|
-
"DeleteRegexPatternSetRequest":{
|
1760
|
-
"type":"structure",
|
1761
|
-
"required":[
|
1762
|
-
"RegexPatternSetId",
|
1763
|
-
"ChangeToken"
|
1764
|
-
],
|
1765
|
-
"members":{
|
1766
|
-
"RegexPatternSetId":{"shape":"ResourceId"},
|
1767
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1768
|
-
}
|
1769
|
-
},
|
1770
|
-
"DeleteRegexPatternSetResponse":{
|
1771
|
-
"type":"structure",
|
1772
|
-
"members":{
|
1773
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1774
|
-
}
|
1775
|
-
},
|
1776
|
-
"DeleteRuleGroupRequest":{
|
1777
|
-
"type":"structure",
|
1778
|
-
"required":[
|
1779
|
-
"RuleGroupId",
|
1780
|
-
"ChangeToken"
|
1781
|
-
],
|
1782
|
-
"members":{
|
1783
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
1784
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1785
|
-
}
|
1786
|
-
},
|
1787
|
-
"DeleteRuleGroupResponse":{
|
1788
|
-
"type":"structure",
|
1789
|
-
"members":{
|
1790
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1791
|
-
}
|
1792
|
-
},
|
1793
|
-
"DeleteRuleRequest":{
|
1794
|
-
"type":"structure",
|
1795
|
-
"required":[
|
1796
|
-
"RuleId",
|
1797
|
-
"ChangeToken"
|
1798
|
-
],
|
1799
|
-
"members":{
|
1800
|
-
"RuleId":{"shape":"ResourceId"},
|
1801
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1802
|
-
}
|
1803
|
-
},
|
1804
|
-
"DeleteRuleResponse":{
|
1805
|
-
"type":"structure",
|
1806
|
-
"members":{
|
1807
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1808
|
-
}
|
1809
|
-
},
|
1810
|
-
"DeleteSizeConstraintSetRequest":{
|
1811
|
-
"type":"structure",
|
1812
|
-
"required":[
|
1813
|
-
"SizeConstraintSetId",
|
1814
|
-
"ChangeToken"
|
1815
|
-
],
|
1816
|
-
"members":{
|
1817
|
-
"SizeConstraintSetId":{"shape":"ResourceId"},
|
1818
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1819
|
-
}
|
1820
|
-
},
|
1821
|
-
"DeleteSizeConstraintSetResponse":{
|
1822
|
-
"type":"structure",
|
1823
|
-
"members":{
|
1824
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1825
|
-
}
|
1826
|
-
},
|
1827
|
-
"DeleteSqlInjectionMatchSetRequest":{
|
1828
|
-
"type":"structure",
|
1829
|
-
"required":[
|
1830
|
-
"SqlInjectionMatchSetId",
|
1831
|
-
"ChangeToken"
|
1832
|
-
],
|
1833
|
-
"members":{
|
1834
|
-
"SqlInjectionMatchSetId":{"shape":"ResourceId"},
|
1835
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1836
|
-
}
|
1837
|
-
},
|
1838
|
-
"DeleteSqlInjectionMatchSetResponse":{
|
1839
|
-
"type":"structure",
|
1840
|
-
"members":{
|
1841
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1842
|
-
}
|
1843
|
-
},
|
1844
|
-
"DeleteWebACLRequest":{
|
1845
|
-
"type":"structure",
|
1846
|
-
"required":[
|
1847
|
-
"WebACLId",
|
1848
|
-
"ChangeToken"
|
1849
|
-
],
|
1850
|
-
"members":{
|
1851
|
-
"WebACLId":{"shape":"ResourceId"},
|
1852
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1853
|
-
}
|
1854
|
-
},
|
1855
|
-
"DeleteWebACLResponse":{
|
1856
|
-
"type":"structure",
|
1857
|
-
"members":{
|
1858
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1859
|
-
}
|
1860
|
-
},
|
1861
|
-
"DeleteXssMatchSetRequest":{
|
1862
|
-
"type":"structure",
|
1863
|
-
"required":[
|
1864
|
-
"XssMatchSetId",
|
1865
|
-
"ChangeToken"
|
1866
|
-
],
|
1867
|
-
"members":{
|
1868
|
-
"XssMatchSetId":{"shape":"ResourceId"},
|
1869
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1870
|
-
}
|
1871
|
-
},
|
1872
|
-
"DeleteXssMatchSetResponse":{
|
1873
|
-
"type":"structure",
|
1874
|
-
"members":{
|
1875
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
1876
|
-
}
|
1877
|
-
},
|
1878
|
-
"DisassociateWebACLRequest":{
|
1879
|
-
"type":"structure",
|
1880
|
-
"required":["ResourceArn"],
|
1881
|
-
"members":{
|
1882
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
1883
|
-
}
|
1884
|
-
},
|
1885
|
-
"DisassociateWebACLResponse":{
|
1886
|
-
"type":"structure",
|
1887
|
-
"members":{
|
1888
|
-
}
|
1889
|
-
},
|
1890
|
-
"ExcludedRule":{
|
1891
|
-
"type":"structure",
|
1892
|
-
"required":["RuleId"],
|
1893
|
-
"members":{
|
1894
|
-
"RuleId":{"shape":"ResourceId"}
|
1895
|
-
}
|
1896
|
-
},
|
1897
|
-
"ExcludedRules":{
|
1898
|
-
"type":"list",
|
1899
|
-
"member":{"shape":"ExcludedRule"}
|
1900
|
-
},
|
1901
|
-
"FieldToMatch":{
|
1902
|
-
"type":"structure",
|
1903
|
-
"required":["Type"],
|
1904
|
-
"members":{
|
1905
|
-
"Type":{"shape":"MatchFieldType"},
|
1906
|
-
"Data":{"shape":"MatchFieldData"}
|
1907
|
-
}
|
1908
|
-
},
|
1909
|
-
"GeoMatchConstraint":{
|
1910
|
-
"type":"structure",
|
1911
|
-
"required":[
|
1912
|
-
"Type",
|
1913
|
-
"Value"
|
1914
|
-
],
|
1915
|
-
"members":{
|
1916
|
-
"Type":{"shape":"GeoMatchConstraintType"},
|
1917
|
-
"Value":{"shape":"GeoMatchConstraintValue"}
|
1918
|
-
}
|
1919
|
-
},
|
1920
|
-
"GeoMatchConstraintType":{
|
1921
|
-
"type":"string",
|
1922
|
-
"enum":["Country"]
|
1923
|
-
},
|
1924
|
-
"GeoMatchConstraintValue":{
|
1925
|
-
"type":"string",
|
1926
|
-
"enum":[
|
1927
|
-
"AF",
|
1928
|
-
"AX",
|
1929
|
-
"AL",
|
1930
|
-
"DZ",
|
1931
|
-
"AS",
|
1932
|
-
"AD",
|
1933
|
-
"AO",
|
1934
|
-
"AI",
|
1935
|
-
"AQ",
|
1936
|
-
"AG",
|
1937
|
-
"AR",
|
1938
|
-
"AM",
|
1939
|
-
"AW",
|
1940
|
-
"AU",
|
1941
|
-
"AT",
|
1942
|
-
"AZ",
|
1943
|
-
"BS",
|
1944
|
-
"BH",
|
1945
|
-
"BD",
|
1946
|
-
"BB",
|
1947
|
-
"BY",
|
1948
|
-
"BE",
|
1949
|
-
"BZ",
|
1950
|
-
"BJ",
|
1951
|
-
"BM",
|
1952
|
-
"BT",
|
1953
|
-
"BO",
|
1954
|
-
"BQ",
|
1955
|
-
"BA",
|
1956
|
-
"BW",
|
1957
|
-
"BV",
|
1958
|
-
"BR",
|
1959
|
-
"IO",
|
1960
|
-
"BN",
|
1961
|
-
"BG",
|
1962
|
-
"BF",
|
1963
|
-
"BI",
|
1964
|
-
"KH",
|
1965
|
-
"CM",
|
1966
|
-
"CA",
|
1967
|
-
"CV",
|
1968
|
-
"KY",
|
1969
|
-
"CF",
|
1970
|
-
"TD",
|
1971
|
-
"CL",
|
1972
|
-
"CN",
|
1973
|
-
"CX",
|
1974
|
-
"CC",
|
1975
|
-
"CO",
|
1976
|
-
"KM",
|
1977
|
-
"CG",
|
1978
|
-
"CD",
|
1979
|
-
"CK",
|
1980
|
-
"CR",
|
1981
|
-
"CI",
|
1982
|
-
"HR",
|
1983
|
-
"CU",
|
1984
|
-
"CW",
|
1985
|
-
"CY",
|
1986
|
-
"CZ",
|
1987
|
-
"DK",
|
1988
|
-
"DJ",
|
1989
|
-
"DM",
|
1990
|
-
"DO",
|
1991
|
-
"EC",
|
1992
|
-
"EG",
|
1993
|
-
"SV",
|
1994
|
-
"GQ",
|
1995
|
-
"ER",
|
1996
|
-
"EE",
|
1997
|
-
"ET",
|
1998
|
-
"FK",
|
1999
|
-
"FO",
|
2000
|
-
"FJ",
|
2001
|
-
"FI",
|
2002
|
-
"FR",
|
2003
|
-
"GF",
|
2004
|
-
"PF",
|
2005
|
-
"TF",
|
2006
|
-
"GA",
|
2007
|
-
"GM",
|
2008
|
-
"GE",
|
2009
|
-
"DE",
|
2010
|
-
"GH",
|
2011
|
-
"GI",
|
2012
|
-
"GR",
|
2013
|
-
"GL",
|
2014
|
-
"GD",
|
2015
|
-
"GP",
|
2016
|
-
"GU",
|
2017
|
-
"GT",
|
2018
|
-
"GG",
|
2019
|
-
"GN",
|
2020
|
-
"GW",
|
2021
|
-
"GY",
|
2022
|
-
"HT",
|
2023
|
-
"HM",
|
2024
|
-
"VA",
|
2025
|
-
"HN",
|
2026
|
-
"HK",
|
2027
|
-
"HU",
|
2028
|
-
"IS",
|
2029
|
-
"IN",
|
2030
|
-
"ID",
|
2031
|
-
"IR",
|
2032
|
-
"IQ",
|
2033
|
-
"IE",
|
2034
|
-
"IM",
|
2035
|
-
"IL",
|
2036
|
-
"IT",
|
2037
|
-
"JM",
|
2038
|
-
"JP",
|
2039
|
-
"JE",
|
2040
|
-
"JO",
|
2041
|
-
"KZ",
|
2042
|
-
"KE",
|
2043
|
-
"KI",
|
2044
|
-
"KP",
|
2045
|
-
"KR",
|
2046
|
-
"KW",
|
2047
|
-
"KG",
|
2048
|
-
"LA",
|
2049
|
-
"LV",
|
2050
|
-
"LB",
|
2051
|
-
"LS",
|
2052
|
-
"LR",
|
2053
|
-
"LY",
|
2054
|
-
"LI",
|
2055
|
-
"LT",
|
2056
|
-
"LU",
|
2057
|
-
"MO",
|
2058
|
-
"MK",
|
2059
|
-
"MG",
|
2060
|
-
"MW",
|
2061
|
-
"MY",
|
2062
|
-
"MV",
|
2063
|
-
"ML",
|
2064
|
-
"MT",
|
2065
|
-
"MH",
|
2066
|
-
"MQ",
|
2067
|
-
"MR",
|
2068
|
-
"MU",
|
2069
|
-
"YT",
|
2070
|
-
"MX",
|
2071
|
-
"FM",
|
2072
|
-
"MD",
|
2073
|
-
"MC",
|
2074
|
-
"MN",
|
2075
|
-
"ME",
|
2076
|
-
"MS",
|
2077
|
-
"MA",
|
2078
|
-
"MZ",
|
2079
|
-
"MM",
|
2080
|
-
"NA",
|
2081
|
-
"NR",
|
2082
|
-
"NP",
|
2083
|
-
"NL",
|
2084
|
-
"NC",
|
2085
|
-
"NZ",
|
2086
|
-
"NI",
|
2087
|
-
"NE",
|
2088
|
-
"NG",
|
2089
|
-
"NU",
|
2090
|
-
"NF",
|
2091
|
-
"MP",
|
2092
|
-
"NO",
|
2093
|
-
"OM",
|
2094
|
-
"PK",
|
2095
|
-
"PW",
|
2096
|
-
"PS",
|
2097
|
-
"PA",
|
2098
|
-
"PG",
|
2099
|
-
"PY",
|
2100
|
-
"PE",
|
2101
|
-
"PH",
|
2102
|
-
"PN",
|
2103
|
-
"PL",
|
2104
|
-
"PT",
|
2105
|
-
"PR",
|
2106
|
-
"QA",
|
2107
|
-
"RE",
|
2108
|
-
"RO",
|
2109
|
-
"RU",
|
2110
|
-
"RW",
|
2111
|
-
"BL",
|
2112
|
-
"SH",
|
2113
|
-
"KN",
|
2114
|
-
"LC",
|
2115
|
-
"MF",
|
2116
|
-
"PM",
|
2117
|
-
"VC",
|
2118
|
-
"WS",
|
2119
|
-
"SM",
|
2120
|
-
"ST",
|
2121
|
-
"SA",
|
2122
|
-
"SN",
|
2123
|
-
"RS",
|
2124
|
-
"SC",
|
2125
|
-
"SL",
|
2126
|
-
"SG",
|
2127
|
-
"SX",
|
2128
|
-
"SK",
|
2129
|
-
"SI",
|
2130
|
-
"SB",
|
2131
|
-
"SO",
|
2132
|
-
"ZA",
|
2133
|
-
"GS",
|
2134
|
-
"SS",
|
2135
|
-
"ES",
|
2136
|
-
"LK",
|
2137
|
-
"SD",
|
2138
|
-
"SR",
|
2139
|
-
"SJ",
|
2140
|
-
"SZ",
|
2141
|
-
"SE",
|
2142
|
-
"CH",
|
2143
|
-
"SY",
|
2144
|
-
"TW",
|
2145
|
-
"TJ",
|
2146
|
-
"TZ",
|
2147
|
-
"TH",
|
2148
|
-
"TL",
|
2149
|
-
"TG",
|
2150
|
-
"TK",
|
2151
|
-
"TO",
|
2152
|
-
"TT",
|
2153
|
-
"TN",
|
2154
|
-
"TR",
|
2155
|
-
"TM",
|
2156
|
-
"TC",
|
2157
|
-
"TV",
|
2158
|
-
"UG",
|
2159
|
-
"UA",
|
2160
|
-
"AE",
|
2161
|
-
"GB",
|
2162
|
-
"US",
|
2163
|
-
"UM",
|
2164
|
-
"UY",
|
2165
|
-
"UZ",
|
2166
|
-
"VU",
|
2167
|
-
"VE",
|
2168
|
-
"VN",
|
2169
|
-
"VG",
|
2170
|
-
"VI",
|
2171
|
-
"WF",
|
2172
|
-
"EH",
|
2173
|
-
"YE",
|
2174
|
-
"ZM",
|
2175
|
-
"ZW"
|
2176
|
-
]
|
2177
|
-
},
|
2178
|
-
"GeoMatchConstraints":{
|
2179
|
-
"type":"list",
|
2180
|
-
"member":{"shape":"GeoMatchConstraint"}
|
2181
|
-
},
|
2182
|
-
"GeoMatchSet":{
|
2183
|
-
"type":"structure",
|
2184
|
-
"required":[
|
2185
|
-
"GeoMatchSetId",
|
2186
|
-
"GeoMatchConstraints"
|
2187
|
-
],
|
2188
|
-
"members":{
|
2189
|
-
"GeoMatchSetId":{"shape":"ResourceId"},
|
2190
|
-
"Name":{"shape":"ResourceName"},
|
2191
|
-
"GeoMatchConstraints":{"shape":"GeoMatchConstraints"}
|
2192
|
-
}
|
2193
|
-
},
|
2194
|
-
"GeoMatchSetSummaries":{
|
2195
|
-
"type":"list",
|
2196
|
-
"member":{"shape":"GeoMatchSetSummary"}
|
2197
|
-
},
|
2198
|
-
"GeoMatchSetSummary":{
|
2199
|
-
"type":"structure",
|
2200
|
-
"required":[
|
2201
|
-
"GeoMatchSetId",
|
2202
|
-
"Name"
|
2203
|
-
],
|
2204
|
-
"members":{
|
2205
|
-
"GeoMatchSetId":{"shape":"ResourceId"},
|
2206
|
-
"Name":{"shape":"ResourceName"}
|
2207
|
-
}
|
2208
|
-
},
|
2209
|
-
"GeoMatchSetUpdate":{
|
2210
|
-
"type":"structure",
|
2211
|
-
"required":[
|
2212
|
-
"Action",
|
2213
|
-
"GeoMatchConstraint"
|
2214
|
-
],
|
2215
|
-
"members":{
|
2216
|
-
"Action":{"shape":"ChangeAction"},
|
2217
|
-
"GeoMatchConstraint":{"shape":"GeoMatchConstraint"}
|
2218
|
-
}
|
2219
|
-
},
|
2220
|
-
"GeoMatchSetUpdates":{
|
2221
|
-
"type":"list",
|
2222
|
-
"member":{"shape":"GeoMatchSetUpdate"},
|
2223
|
-
"min":1
|
2224
|
-
},
|
2225
|
-
"GetByteMatchSetRequest":{
|
2226
|
-
"type":"structure",
|
2227
|
-
"required":["ByteMatchSetId"],
|
2228
|
-
"members":{
|
2229
|
-
"ByteMatchSetId":{"shape":"ResourceId"}
|
2230
|
-
}
|
2231
|
-
},
|
2232
|
-
"GetByteMatchSetResponse":{
|
2233
|
-
"type":"structure",
|
2234
|
-
"members":{
|
2235
|
-
"ByteMatchSet":{"shape":"ByteMatchSet"}
|
2236
|
-
}
|
2237
|
-
},
|
2238
|
-
"GetChangeTokenRequest":{
|
2239
|
-
"type":"structure",
|
2240
|
-
"members":{
|
2241
|
-
}
|
2242
|
-
},
|
2243
|
-
"GetChangeTokenResponse":{
|
2244
|
-
"type":"structure",
|
2245
|
-
"members":{
|
2246
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
2247
|
-
}
|
2248
|
-
},
|
2249
|
-
"GetChangeTokenStatusRequest":{
|
2250
|
-
"type":"structure",
|
2251
|
-
"required":["ChangeToken"],
|
2252
|
-
"members":{
|
2253
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
2254
|
-
}
|
2255
|
-
},
|
2256
|
-
"GetChangeTokenStatusResponse":{
|
2257
|
-
"type":"structure",
|
2258
|
-
"members":{
|
2259
|
-
"ChangeTokenStatus":{"shape":"ChangeTokenStatus"}
|
2260
|
-
}
|
2261
|
-
},
|
2262
|
-
"GetGeoMatchSetRequest":{
|
2263
|
-
"type":"structure",
|
2264
|
-
"required":["GeoMatchSetId"],
|
2265
|
-
"members":{
|
2266
|
-
"GeoMatchSetId":{"shape":"ResourceId"}
|
2267
|
-
}
|
2268
|
-
},
|
2269
|
-
"GetGeoMatchSetResponse":{
|
2270
|
-
"type":"structure",
|
2271
|
-
"members":{
|
2272
|
-
"GeoMatchSet":{"shape":"GeoMatchSet"}
|
2273
|
-
}
|
2274
|
-
},
|
2275
|
-
"GetIPSetRequest":{
|
2276
|
-
"type":"structure",
|
2277
|
-
"required":["IPSetId"],
|
2278
|
-
"members":{
|
2279
|
-
"IPSetId":{"shape":"ResourceId"}
|
2280
|
-
}
|
2281
|
-
},
|
2282
|
-
"GetIPSetResponse":{
|
2283
|
-
"type":"structure",
|
2284
|
-
"members":{
|
2285
|
-
"IPSet":{"shape":"IPSet"}
|
2286
|
-
}
|
2287
|
-
},
|
2288
|
-
"GetLoggingConfigurationRequest":{
|
2289
|
-
"type":"structure",
|
2290
|
-
"required":["ResourceArn"],
|
2291
|
-
"members":{
|
2292
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
2293
|
-
}
|
2294
|
-
},
|
2295
|
-
"GetLoggingConfigurationResponse":{
|
2296
|
-
"type":"structure",
|
2297
|
-
"members":{
|
2298
|
-
"LoggingConfiguration":{"shape":"LoggingConfiguration"}
|
2299
|
-
}
|
2300
|
-
},
|
2301
|
-
"GetPermissionPolicyRequest":{
|
2302
|
-
"type":"structure",
|
2303
|
-
"required":["ResourceArn"],
|
2304
|
-
"members":{
|
2305
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
2306
|
-
}
|
2307
|
-
},
|
2308
|
-
"GetPermissionPolicyResponse":{
|
2309
|
-
"type":"structure",
|
2310
|
-
"members":{
|
2311
|
-
"Policy":{"shape":"PolicyString"}
|
2312
|
-
}
|
2313
|
-
},
|
2314
|
-
"GetRateBasedRuleManagedKeysRequest":{
|
2315
|
-
"type":"structure",
|
2316
|
-
"required":["RuleId"],
|
2317
|
-
"members":{
|
2318
|
-
"RuleId":{"shape":"ResourceId"},
|
2319
|
-
"NextMarker":{"shape":"NextMarker"}
|
2320
|
-
}
|
2321
|
-
},
|
2322
|
-
"GetRateBasedRuleManagedKeysResponse":{
|
2323
|
-
"type":"structure",
|
2324
|
-
"members":{
|
2325
|
-
"ManagedKeys":{"shape":"ManagedKeys"},
|
2326
|
-
"NextMarker":{"shape":"NextMarker"}
|
2327
|
-
}
|
2328
|
-
},
|
2329
|
-
"GetRateBasedRuleRequest":{
|
2330
|
-
"type":"structure",
|
2331
|
-
"required":["RuleId"],
|
2332
|
-
"members":{
|
2333
|
-
"RuleId":{"shape":"ResourceId"}
|
2334
|
-
}
|
2335
|
-
},
|
2336
|
-
"GetRateBasedRuleResponse":{
|
2337
|
-
"type":"structure",
|
2338
|
-
"members":{
|
2339
|
-
"Rule":{"shape":"RateBasedRule"}
|
2340
|
-
}
|
2341
|
-
},
|
2342
|
-
"GetRegexMatchSetRequest":{
|
2343
|
-
"type":"structure",
|
2344
|
-
"required":["RegexMatchSetId"],
|
2345
|
-
"members":{
|
2346
|
-
"RegexMatchSetId":{"shape":"ResourceId"}
|
2347
|
-
}
|
2348
|
-
},
|
2349
|
-
"GetRegexMatchSetResponse":{
|
2350
|
-
"type":"structure",
|
2351
|
-
"members":{
|
2352
|
-
"RegexMatchSet":{"shape":"RegexMatchSet"}
|
2353
|
-
}
|
2354
|
-
},
|
2355
|
-
"GetRegexPatternSetRequest":{
|
2356
|
-
"type":"structure",
|
2357
|
-
"required":["RegexPatternSetId"],
|
2358
|
-
"members":{
|
2359
|
-
"RegexPatternSetId":{"shape":"ResourceId"}
|
2360
|
-
}
|
2361
|
-
},
|
2362
|
-
"GetRegexPatternSetResponse":{
|
2363
|
-
"type":"structure",
|
2364
|
-
"members":{
|
2365
|
-
"RegexPatternSet":{"shape":"RegexPatternSet"}
|
2366
|
-
}
|
2367
|
-
},
|
2368
|
-
"GetRuleGroupRequest":{
|
2369
|
-
"type":"structure",
|
2370
|
-
"required":["RuleGroupId"],
|
2371
|
-
"members":{
|
2372
|
-
"RuleGroupId":{"shape":"ResourceId"}
|
2373
|
-
}
|
2374
|
-
},
|
2375
|
-
"GetRuleGroupResponse":{
|
2376
|
-
"type":"structure",
|
2377
|
-
"members":{
|
2378
|
-
"RuleGroup":{"shape":"RuleGroup"}
|
2379
|
-
}
|
2380
|
-
},
|
2381
|
-
"GetRuleRequest":{
|
2382
|
-
"type":"structure",
|
2383
|
-
"required":["RuleId"],
|
2384
|
-
"members":{
|
2385
|
-
"RuleId":{"shape":"ResourceId"}
|
2386
|
-
}
|
2387
|
-
},
|
2388
|
-
"GetRuleResponse":{
|
2389
|
-
"type":"structure",
|
2390
|
-
"members":{
|
2391
|
-
"Rule":{"shape":"Rule"}
|
2392
|
-
}
|
2393
|
-
},
|
2394
|
-
"GetSampledRequestsMaxItems":{
|
2395
|
-
"type":"long",
|
2396
|
-
"max":500,
|
2397
|
-
"min":1
|
2398
|
-
},
|
2399
|
-
"GetSampledRequestsRequest":{
|
2400
|
-
"type":"structure",
|
2401
|
-
"required":[
|
2402
|
-
"WebAclId",
|
2403
|
-
"RuleId",
|
2404
|
-
"TimeWindow",
|
2405
|
-
"MaxItems"
|
2406
|
-
],
|
2407
|
-
"members":{
|
2408
|
-
"WebAclId":{"shape":"ResourceId"},
|
2409
|
-
"RuleId":{"shape":"ResourceId"},
|
2410
|
-
"TimeWindow":{"shape":"TimeWindow"},
|
2411
|
-
"MaxItems":{"shape":"GetSampledRequestsMaxItems"}
|
2412
|
-
}
|
2413
|
-
},
|
2414
|
-
"GetSampledRequestsResponse":{
|
2415
|
-
"type":"structure",
|
2416
|
-
"members":{
|
2417
|
-
"SampledRequests":{"shape":"SampledHTTPRequests"},
|
2418
|
-
"PopulationSize":{"shape":"PopulationSize"},
|
2419
|
-
"TimeWindow":{"shape":"TimeWindow"}
|
2420
|
-
}
|
2421
|
-
},
|
2422
|
-
"GetSizeConstraintSetRequest":{
|
2423
|
-
"type":"structure",
|
2424
|
-
"required":["SizeConstraintSetId"],
|
2425
|
-
"members":{
|
2426
|
-
"SizeConstraintSetId":{"shape":"ResourceId"}
|
2427
|
-
}
|
2428
|
-
},
|
2429
|
-
"GetSizeConstraintSetResponse":{
|
2430
|
-
"type":"structure",
|
2431
|
-
"members":{
|
2432
|
-
"SizeConstraintSet":{"shape":"SizeConstraintSet"}
|
2433
|
-
}
|
2434
|
-
},
|
2435
|
-
"GetSqlInjectionMatchSetRequest":{
|
2436
|
-
"type":"structure",
|
2437
|
-
"required":["SqlInjectionMatchSetId"],
|
2438
|
-
"members":{
|
2439
|
-
"SqlInjectionMatchSetId":{"shape":"ResourceId"}
|
2440
|
-
}
|
2441
|
-
},
|
2442
|
-
"GetSqlInjectionMatchSetResponse":{
|
2443
|
-
"type":"structure",
|
2444
|
-
"members":{
|
2445
|
-
"SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"}
|
2446
|
-
}
|
2447
|
-
},
|
2448
|
-
"GetWebACLForResourceRequest":{
|
2449
|
-
"type":"structure",
|
2450
|
-
"required":["ResourceArn"],
|
2451
|
-
"members":{
|
2452
|
-
"ResourceArn":{"shape":"ResourceArn"}
|
2453
|
-
}
|
2454
|
-
},
|
2455
|
-
"GetWebACLForResourceResponse":{
|
2456
|
-
"type":"structure",
|
2457
|
-
"members":{
|
2458
|
-
"WebACLSummary":{"shape":"WebACLSummary"}
|
2459
|
-
}
|
2460
|
-
},
|
2461
|
-
"GetWebACLRequest":{
|
2462
|
-
"type":"structure",
|
2463
|
-
"required":["WebACLId"],
|
2464
|
-
"members":{
|
2465
|
-
"WebACLId":{"shape":"ResourceId"}
|
2466
|
-
}
|
2467
|
-
},
|
2468
|
-
"GetWebACLResponse":{
|
2469
|
-
"type":"structure",
|
2470
|
-
"members":{
|
2471
|
-
"WebACL":{"shape":"WebACL"}
|
2472
|
-
}
|
2473
|
-
},
|
2474
|
-
"GetXssMatchSetRequest":{
|
2475
|
-
"type":"structure",
|
2476
|
-
"required":["XssMatchSetId"],
|
2477
|
-
"members":{
|
2478
|
-
"XssMatchSetId":{"shape":"ResourceId"}
|
2479
|
-
}
|
2480
|
-
},
|
2481
|
-
"GetXssMatchSetResponse":{
|
2482
|
-
"type":"structure",
|
2483
|
-
"members":{
|
2484
|
-
"XssMatchSet":{"shape":"XssMatchSet"}
|
2485
|
-
}
|
2486
|
-
},
|
2487
|
-
"HTTPHeader":{
|
2488
|
-
"type":"structure",
|
2489
|
-
"members":{
|
2490
|
-
"Name":{"shape":"HeaderName"},
|
2491
|
-
"Value":{"shape":"HeaderValue"}
|
2492
|
-
}
|
2493
|
-
},
|
2494
|
-
"HTTPHeaders":{
|
2495
|
-
"type":"list",
|
2496
|
-
"member":{"shape":"HTTPHeader"}
|
2497
|
-
},
|
2498
|
-
"HTTPMethod":{"type":"string"},
|
2499
|
-
"HTTPRequest":{
|
2500
|
-
"type":"structure",
|
2501
|
-
"members":{
|
2502
|
-
"ClientIP":{"shape":"IPString"},
|
2503
|
-
"Country":{"shape":"Country"},
|
2504
|
-
"URI":{"shape":"URIString"},
|
2505
|
-
"Method":{"shape":"HTTPMethod"},
|
2506
|
-
"HTTPVersion":{"shape":"HTTPVersion"},
|
2507
|
-
"Headers":{"shape":"HTTPHeaders"}
|
2508
|
-
}
|
2509
|
-
},
|
2510
|
-
"HTTPVersion":{"type":"string"},
|
2511
|
-
"HeaderName":{"type":"string"},
|
2512
|
-
"HeaderValue":{"type":"string"},
|
2513
|
-
"IPSet":{
|
2514
|
-
"type":"structure",
|
2515
|
-
"required":[
|
2516
|
-
"IPSetId",
|
2517
|
-
"IPSetDescriptors"
|
2518
|
-
],
|
2519
|
-
"members":{
|
2520
|
-
"IPSetId":{"shape":"ResourceId"},
|
2521
|
-
"Name":{"shape":"ResourceName"},
|
2522
|
-
"IPSetDescriptors":{"shape":"IPSetDescriptors"}
|
2523
|
-
}
|
2524
|
-
},
|
2525
|
-
"IPSetDescriptor":{
|
2526
|
-
"type":"structure",
|
2527
|
-
"required":[
|
2528
|
-
"Type",
|
2529
|
-
"Value"
|
2530
|
-
],
|
2531
|
-
"members":{
|
2532
|
-
"Type":{"shape":"IPSetDescriptorType"},
|
2533
|
-
"Value":{"shape":"IPSetDescriptorValue"}
|
2534
|
-
}
|
2535
|
-
},
|
2536
|
-
"IPSetDescriptorType":{
|
2537
|
-
"type":"string",
|
2538
|
-
"enum":[
|
2539
|
-
"IPV4",
|
2540
|
-
"IPV6"
|
2541
|
-
]
|
2542
|
-
},
|
2543
|
-
"IPSetDescriptorValue":{"type":"string"},
|
2544
|
-
"IPSetDescriptors":{
|
2545
|
-
"type":"list",
|
2546
|
-
"member":{"shape":"IPSetDescriptor"}
|
2547
|
-
},
|
2548
|
-
"IPSetSummaries":{
|
2549
|
-
"type":"list",
|
2550
|
-
"member":{"shape":"IPSetSummary"}
|
2551
|
-
},
|
2552
|
-
"IPSetSummary":{
|
2553
|
-
"type":"structure",
|
2554
|
-
"required":[
|
2555
|
-
"IPSetId",
|
2556
|
-
"Name"
|
2557
|
-
],
|
2558
|
-
"members":{
|
2559
|
-
"IPSetId":{"shape":"ResourceId"},
|
2560
|
-
"Name":{"shape":"ResourceName"}
|
2561
|
-
}
|
2562
|
-
},
|
2563
|
-
"IPSetUpdate":{
|
2564
|
-
"type":"structure",
|
2565
|
-
"required":[
|
2566
|
-
"Action",
|
2567
|
-
"IPSetDescriptor"
|
2568
|
-
],
|
2569
|
-
"members":{
|
2570
|
-
"Action":{"shape":"ChangeAction"},
|
2571
|
-
"IPSetDescriptor":{"shape":"IPSetDescriptor"}
|
2572
|
-
}
|
2573
|
-
},
|
2574
|
-
"IPSetUpdates":{
|
2575
|
-
"type":"list",
|
2576
|
-
"member":{"shape":"IPSetUpdate"},
|
2577
|
-
"min":1
|
2578
|
-
},
|
2579
|
-
"IPString":{"type":"string"},
|
2580
|
-
"ListActivatedRulesInRuleGroupRequest":{
|
2581
|
-
"type":"structure",
|
2582
|
-
"members":{
|
2583
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
2584
|
-
"NextMarker":{"shape":"NextMarker"},
|
2585
|
-
"Limit":{"shape":"PaginationLimit"}
|
2586
|
-
}
|
2587
|
-
},
|
2588
|
-
"ListActivatedRulesInRuleGroupResponse":{
|
2589
|
-
"type":"structure",
|
2590
|
-
"members":{
|
2591
|
-
"NextMarker":{"shape":"NextMarker"},
|
2592
|
-
"ActivatedRules":{"shape":"ActivatedRules"}
|
2593
|
-
}
|
2594
|
-
},
|
2595
|
-
"ListByteMatchSetsRequest":{
|
2596
|
-
"type":"structure",
|
2597
|
-
"members":{
|
2598
|
-
"NextMarker":{"shape":"NextMarker"},
|
2599
|
-
"Limit":{"shape":"PaginationLimit"}
|
2600
|
-
}
|
2601
|
-
},
|
2602
|
-
"ListByteMatchSetsResponse":{
|
2603
|
-
"type":"structure",
|
2604
|
-
"members":{
|
2605
|
-
"NextMarker":{"shape":"NextMarker"},
|
2606
|
-
"ByteMatchSets":{"shape":"ByteMatchSetSummaries"}
|
2607
|
-
}
|
2608
|
-
},
|
2609
|
-
"ListGeoMatchSetsRequest":{
|
2610
|
-
"type":"structure",
|
2611
|
-
"members":{
|
2612
|
-
"NextMarker":{"shape":"NextMarker"},
|
2613
|
-
"Limit":{"shape":"PaginationLimit"}
|
2614
|
-
}
|
2615
|
-
},
|
2616
|
-
"ListGeoMatchSetsResponse":{
|
2617
|
-
"type":"structure",
|
2618
|
-
"members":{
|
2619
|
-
"NextMarker":{"shape":"NextMarker"},
|
2620
|
-
"GeoMatchSets":{"shape":"GeoMatchSetSummaries"}
|
2621
|
-
}
|
2622
|
-
},
|
2623
|
-
"ListIPSetsRequest":{
|
2624
|
-
"type":"structure",
|
2625
|
-
"members":{
|
2626
|
-
"NextMarker":{"shape":"NextMarker"},
|
2627
|
-
"Limit":{"shape":"PaginationLimit"}
|
2628
|
-
}
|
2629
|
-
},
|
2630
|
-
"ListIPSetsResponse":{
|
2631
|
-
"type":"structure",
|
2632
|
-
"members":{
|
2633
|
-
"NextMarker":{"shape":"NextMarker"},
|
2634
|
-
"IPSets":{"shape":"IPSetSummaries"}
|
2635
|
-
}
|
2636
|
-
},
|
2637
|
-
"ListLoggingConfigurationsRequest":{
|
2638
|
-
"type":"structure",
|
2639
|
-
"members":{
|
2640
|
-
"NextMarker":{"shape":"NextMarker"},
|
2641
|
-
"Limit":{"shape":"PaginationLimit"}
|
2642
|
-
}
|
2643
|
-
},
|
2644
|
-
"ListLoggingConfigurationsResponse":{
|
2645
|
-
"type":"structure",
|
2646
|
-
"members":{
|
2647
|
-
"LoggingConfigurations":{"shape":"LoggingConfigurations"},
|
2648
|
-
"NextMarker":{"shape":"NextMarker"}
|
2649
|
-
}
|
2650
|
-
},
|
2651
|
-
"ListRateBasedRulesRequest":{
|
2652
|
-
"type":"structure",
|
2653
|
-
"members":{
|
2654
|
-
"NextMarker":{"shape":"NextMarker"},
|
2655
|
-
"Limit":{"shape":"PaginationLimit"}
|
2656
|
-
}
|
2657
|
-
},
|
2658
|
-
"ListRateBasedRulesResponse":{
|
2659
|
-
"type":"structure",
|
2660
|
-
"members":{
|
2661
|
-
"NextMarker":{"shape":"NextMarker"},
|
2662
|
-
"Rules":{"shape":"RuleSummaries"}
|
2663
|
-
}
|
2664
|
-
},
|
2665
|
-
"ListRegexMatchSetsRequest":{
|
2666
|
-
"type":"structure",
|
2667
|
-
"members":{
|
2668
|
-
"NextMarker":{"shape":"NextMarker"},
|
2669
|
-
"Limit":{"shape":"PaginationLimit"}
|
2670
|
-
}
|
2671
|
-
},
|
2672
|
-
"ListRegexMatchSetsResponse":{
|
2673
|
-
"type":"structure",
|
2674
|
-
"members":{
|
2675
|
-
"NextMarker":{"shape":"NextMarker"},
|
2676
|
-
"RegexMatchSets":{"shape":"RegexMatchSetSummaries"}
|
2677
|
-
}
|
2678
|
-
},
|
2679
|
-
"ListRegexPatternSetsRequest":{
|
2680
|
-
"type":"structure",
|
2681
|
-
"members":{
|
2682
|
-
"NextMarker":{"shape":"NextMarker"},
|
2683
|
-
"Limit":{"shape":"PaginationLimit"}
|
2684
|
-
}
|
2685
|
-
},
|
2686
|
-
"ListRegexPatternSetsResponse":{
|
2687
|
-
"type":"structure",
|
2688
|
-
"members":{
|
2689
|
-
"NextMarker":{"shape":"NextMarker"},
|
2690
|
-
"RegexPatternSets":{"shape":"RegexPatternSetSummaries"}
|
2691
|
-
}
|
2692
|
-
},
|
2693
|
-
"ListResourcesForWebACLRequest":{
|
2694
|
-
"type":"structure",
|
2695
|
-
"required":["WebACLId"],
|
2696
|
-
"members":{
|
2697
|
-
"WebACLId":{"shape":"ResourceId"},
|
2698
|
-
"ResourceType":{"shape":"ResourceType"}
|
2699
|
-
}
|
2700
|
-
},
|
2701
|
-
"ListResourcesForWebACLResponse":{
|
2702
|
-
"type":"structure",
|
2703
|
-
"members":{
|
2704
|
-
"ResourceArns":{"shape":"ResourceArns"}
|
2705
|
-
}
|
2706
|
-
},
|
2707
|
-
"ListRuleGroupsRequest":{
|
2708
|
-
"type":"structure",
|
2709
|
-
"members":{
|
2710
|
-
"NextMarker":{"shape":"NextMarker"},
|
2711
|
-
"Limit":{"shape":"PaginationLimit"}
|
2712
|
-
}
|
2713
|
-
},
|
2714
|
-
"ListRuleGroupsResponse":{
|
2715
|
-
"type":"structure",
|
2716
|
-
"members":{
|
2717
|
-
"NextMarker":{"shape":"NextMarker"},
|
2718
|
-
"RuleGroups":{"shape":"RuleGroupSummaries"}
|
2719
|
-
}
|
2720
|
-
},
|
2721
|
-
"ListRulesRequest":{
|
2722
|
-
"type":"structure",
|
2723
|
-
"members":{
|
2724
|
-
"NextMarker":{"shape":"NextMarker"},
|
2725
|
-
"Limit":{"shape":"PaginationLimit"}
|
2726
|
-
}
|
2727
|
-
},
|
2728
|
-
"ListRulesResponse":{
|
2729
|
-
"type":"structure",
|
2730
|
-
"members":{
|
2731
|
-
"NextMarker":{"shape":"NextMarker"},
|
2732
|
-
"Rules":{"shape":"RuleSummaries"}
|
2733
|
-
}
|
2734
|
-
},
|
2735
|
-
"ListSizeConstraintSetsRequest":{
|
2736
|
-
"type":"structure",
|
2737
|
-
"members":{
|
2738
|
-
"NextMarker":{"shape":"NextMarker"},
|
2739
|
-
"Limit":{"shape":"PaginationLimit"}
|
2740
|
-
}
|
2741
|
-
},
|
2742
|
-
"ListSizeConstraintSetsResponse":{
|
2743
|
-
"type":"structure",
|
2744
|
-
"members":{
|
2745
|
-
"NextMarker":{"shape":"NextMarker"},
|
2746
|
-
"SizeConstraintSets":{"shape":"SizeConstraintSetSummaries"}
|
2747
|
-
}
|
2748
|
-
},
|
2749
|
-
"ListSqlInjectionMatchSetsRequest":{
|
2750
|
-
"type":"structure",
|
2751
|
-
"members":{
|
2752
|
-
"NextMarker":{"shape":"NextMarker"},
|
2753
|
-
"Limit":{"shape":"PaginationLimit"}
|
2754
|
-
}
|
2755
|
-
},
|
2756
|
-
"ListSqlInjectionMatchSetsResponse":{
|
2757
|
-
"type":"structure",
|
2758
|
-
"members":{
|
2759
|
-
"NextMarker":{"shape":"NextMarker"},
|
2760
|
-
"SqlInjectionMatchSets":{"shape":"SqlInjectionMatchSetSummaries"}
|
2761
|
-
}
|
2762
|
-
},
|
2763
|
-
"ListSubscribedRuleGroupsRequest":{
|
2764
|
-
"type":"structure",
|
2765
|
-
"members":{
|
2766
|
-
"NextMarker":{"shape":"NextMarker"},
|
2767
|
-
"Limit":{"shape":"PaginationLimit"}
|
2768
|
-
}
|
2769
|
-
},
|
2770
|
-
"ListSubscribedRuleGroupsResponse":{
|
2771
|
-
"type":"structure",
|
2772
|
-
"members":{
|
2773
|
-
"NextMarker":{"shape":"NextMarker"},
|
2774
|
-
"RuleGroups":{"shape":"SubscribedRuleGroupSummaries"}
|
2775
|
-
}
|
2776
|
-
},
|
2777
|
-
"ListTagsForResourceRequest":{
|
2778
|
-
"type":"structure",
|
2779
|
-
"required":["ResourceARN"],
|
2780
|
-
"members":{
|
2781
|
-
"NextMarker":{"shape":"NextMarker"},
|
2782
|
-
"Limit":{"shape":"PaginationLimit"},
|
2783
|
-
"ResourceARN":{"shape":"ResourceArn"}
|
2784
|
-
}
|
2785
|
-
},
|
2786
|
-
"ListTagsForResourceResponse":{
|
2787
|
-
"type":"structure",
|
2788
|
-
"members":{
|
2789
|
-
"NextMarker":{"shape":"NextMarker"},
|
2790
|
-
"TagInfoForResource":{"shape":"TagInfoForResource"}
|
2791
|
-
}
|
2792
|
-
},
|
2793
|
-
"ListWebACLsRequest":{
|
2794
|
-
"type":"structure",
|
2795
|
-
"members":{
|
2796
|
-
"NextMarker":{"shape":"NextMarker"},
|
2797
|
-
"Limit":{"shape":"PaginationLimit"}
|
2798
|
-
}
|
2799
|
-
},
|
2800
|
-
"ListWebACLsResponse":{
|
2801
|
-
"type":"structure",
|
2802
|
-
"members":{
|
2803
|
-
"NextMarker":{"shape":"NextMarker"},
|
2804
|
-
"WebACLs":{"shape":"WebACLSummaries"}
|
2805
|
-
}
|
2806
|
-
},
|
2807
|
-
"ListXssMatchSetsRequest":{
|
2808
|
-
"type":"structure",
|
2809
|
-
"members":{
|
2810
|
-
"NextMarker":{"shape":"NextMarker"},
|
2811
|
-
"Limit":{"shape":"PaginationLimit"}
|
2812
|
-
}
|
2813
|
-
},
|
2814
|
-
"ListXssMatchSetsResponse":{
|
2815
|
-
"type":"structure",
|
2816
|
-
"members":{
|
2817
|
-
"NextMarker":{"shape":"NextMarker"},
|
2818
|
-
"XssMatchSets":{"shape":"XssMatchSetSummaries"}
|
2819
|
-
}
|
2820
|
-
},
|
2821
|
-
"LogDestinationConfigs":{
|
2822
|
-
"type":"list",
|
2823
|
-
"member":{"shape":"ResourceArn"},
|
2824
|
-
"max":1,
|
2825
|
-
"min":1
|
2826
|
-
},
|
2827
|
-
"LoggingConfiguration":{
|
2828
|
-
"type":"structure",
|
2829
|
-
"required":[
|
2830
|
-
"ResourceArn",
|
2831
|
-
"LogDestinationConfigs"
|
2832
|
-
],
|
2833
|
-
"members":{
|
2834
|
-
"ResourceArn":{"shape":"ResourceArn"},
|
2835
|
-
"LogDestinationConfigs":{"shape":"LogDestinationConfigs"},
|
2836
|
-
"RedactedFields":{"shape":"RedactedFields"}
|
2837
|
-
}
|
2838
|
-
},
|
2839
|
-
"LoggingConfigurations":{
|
2840
|
-
"type":"list",
|
2841
|
-
"member":{"shape":"LoggingConfiguration"}
|
2842
|
-
},
|
2843
|
-
"ManagedKey":{"type":"string"},
|
2844
|
-
"ManagedKeys":{
|
2845
|
-
"type":"list",
|
2846
|
-
"member":{"shape":"ManagedKey"}
|
2847
|
-
},
|
2848
|
-
"MatchFieldData":{"type":"string"},
|
2849
|
-
"MatchFieldType":{
|
2850
|
-
"type":"string",
|
2851
|
-
"enum":[
|
2852
|
-
"URI",
|
2853
|
-
"QUERY_STRING",
|
2854
|
-
"HEADER",
|
2855
|
-
"METHOD",
|
2856
|
-
"BODY",
|
2857
|
-
"SINGLE_QUERY_ARG",
|
2858
|
-
"ALL_QUERY_ARGS"
|
2859
|
-
]
|
2860
|
-
},
|
2861
|
-
"MetricName":{"type":"string"},
|
2862
|
-
"Negated":{"type":"boolean"},
|
2863
|
-
"NextMarker":{
|
2864
|
-
"type":"string",
|
2865
|
-
"min":1
|
2866
|
-
},
|
2867
|
-
"PaginationLimit":{
|
2868
|
-
"type":"integer",
|
2869
|
-
"max":100,
|
2870
|
-
"min":0
|
2871
|
-
},
|
2872
|
-
"ParameterExceptionField":{
|
2873
|
-
"type":"string",
|
2874
|
-
"enum":[
|
2875
|
-
"CHANGE_ACTION",
|
2876
|
-
"WAF_ACTION",
|
2877
|
-
"WAF_OVERRIDE_ACTION",
|
2878
|
-
"PREDICATE_TYPE",
|
2879
|
-
"IPSET_TYPE",
|
2880
|
-
"BYTE_MATCH_FIELD_TYPE",
|
2881
|
-
"SQL_INJECTION_MATCH_FIELD_TYPE",
|
2882
|
-
"BYTE_MATCH_TEXT_TRANSFORMATION",
|
2883
|
-
"BYTE_MATCH_POSITIONAL_CONSTRAINT",
|
2884
|
-
"SIZE_CONSTRAINT_COMPARISON_OPERATOR",
|
2885
|
-
"GEO_MATCH_LOCATION_TYPE",
|
2886
|
-
"GEO_MATCH_LOCATION_VALUE",
|
2887
|
-
"RATE_KEY",
|
2888
|
-
"RULE_TYPE",
|
2889
|
-
"NEXT_MARKER",
|
2890
|
-
"RESOURCE_ARN",
|
2891
|
-
"TAGS",
|
2892
|
-
"TAG_KEYS"
|
2893
|
-
]
|
2894
|
-
},
|
2895
|
-
"ParameterExceptionParameter":{
|
2896
|
-
"type":"string",
|
2897
|
-
"min":1
|
2898
|
-
},
|
2899
|
-
"ParameterExceptionReason":{
|
2900
|
-
"type":"string",
|
2901
|
-
"enum":[
|
2902
|
-
"INVALID_OPTION",
|
2903
|
-
"ILLEGAL_COMBINATION",
|
2904
|
-
"ILLEGAL_ARGUMENT",
|
2905
|
-
"INVALID_TAG_KEY"
|
2906
|
-
]
|
2907
|
-
},
|
2908
|
-
"PolicyString":{
|
2909
|
-
"type":"string",
|
2910
|
-
"min":1
|
2911
|
-
},
|
2912
|
-
"PopulationSize":{"type":"long"},
|
2913
|
-
"PositionalConstraint":{
|
2914
|
-
"type":"string",
|
2915
|
-
"enum":[
|
2916
|
-
"EXACTLY",
|
2917
|
-
"STARTS_WITH",
|
2918
|
-
"ENDS_WITH",
|
2919
|
-
"CONTAINS",
|
2920
|
-
"CONTAINS_WORD"
|
2921
|
-
]
|
2922
|
-
},
|
2923
|
-
"Predicate":{
|
2924
|
-
"type":"structure",
|
2925
|
-
"required":[
|
2926
|
-
"Negated",
|
2927
|
-
"Type",
|
2928
|
-
"DataId"
|
2929
|
-
],
|
2930
|
-
"members":{
|
2931
|
-
"Negated":{"shape":"Negated"},
|
2932
|
-
"Type":{"shape":"PredicateType"},
|
2933
|
-
"DataId":{"shape":"ResourceId"}
|
2934
|
-
}
|
2935
|
-
},
|
2936
|
-
"PredicateType":{
|
2937
|
-
"type":"string",
|
2938
|
-
"enum":[
|
2939
|
-
"IPMatch",
|
2940
|
-
"ByteMatch",
|
2941
|
-
"SqlInjectionMatch",
|
2942
|
-
"GeoMatch",
|
2943
|
-
"SizeConstraint",
|
2944
|
-
"XssMatch",
|
2945
|
-
"RegexMatch"
|
2946
|
-
]
|
2947
|
-
},
|
2948
|
-
"Predicates":{
|
2949
|
-
"type":"list",
|
2950
|
-
"member":{"shape":"Predicate"}
|
2951
|
-
},
|
2952
|
-
"PutLoggingConfigurationRequest":{
|
2953
|
-
"type":"structure",
|
2954
|
-
"required":["LoggingConfiguration"],
|
2955
|
-
"members":{
|
2956
|
-
"LoggingConfiguration":{"shape":"LoggingConfiguration"}
|
2957
|
-
}
|
2958
|
-
},
|
2959
|
-
"PutLoggingConfigurationResponse":{
|
2960
|
-
"type":"structure",
|
2961
|
-
"members":{
|
2962
|
-
"LoggingConfiguration":{"shape":"LoggingConfiguration"}
|
2963
|
-
}
|
2964
|
-
},
|
2965
|
-
"PutPermissionPolicyRequest":{
|
2966
|
-
"type":"structure",
|
2967
|
-
"required":[
|
2968
|
-
"ResourceArn",
|
2969
|
-
"Policy"
|
2970
|
-
],
|
2971
|
-
"members":{
|
2972
|
-
"ResourceArn":{"shape":"ResourceArn"},
|
2973
|
-
"Policy":{"shape":"PolicyString"}
|
2974
|
-
}
|
2975
|
-
},
|
2976
|
-
"PutPermissionPolicyResponse":{
|
2977
|
-
"type":"structure",
|
2978
|
-
"members":{
|
2979
|
-
}
|
2980
|
-
},
|
2981
|
-
"RateBasedRule":{
|
2982
|
-
"type":"structure",
|
2983
|
-
"required":[
|
2984
|
-
"RuleId",
|
2985
|
-
"MatchPredicates",
|
2986
|
-
"RateKey",
|
2987
|
-
"RateLimit"
|
2988
|
-
],
|
2989
|
-
"members":{
|
2990
|
-
"RuleId":{"shape":"ResourceId"},
|
2991
|
-
"Name":{"shape":"ResourceName"},
|
2992
|
-
"MetricName":{"shape":"MetricName"},
|
2993
|
-
"MatchPredicates":{"shape":"Predicates"},
|
2994
|
-
"RateKey":{"shape":"RateKey"},
|
2995
|
-
"RateLimit":{"shape":"RateLimit"}
|
2996
|
-
}
|
2997
|
-
},
|
2998
|
-
"RateKey":{
|
2999
|
-
"type":"string",
|
3000
|
-
"enum":["IP"]
|
3001
|
-
},
|
3002
|
-
"RateLimit":{
|
3003
|
-
"type":"long",
|
3004
|
-
"max":2000000000,
|
3005
|
-
"min":2000
|
3006
|
-
},
|
3007
|
-
"RedactedFields":{
|
3008
|
-
"type":"list",
|
3009
|
-
"member":{"shape":"FieldToMatch"}
|
3010
|
-
},
|
3011
|
-
"RegexMatchSet":{
|
3012
|
-
"type":"structure",
|
3013
|
-
"members":{
|
3014
|
-
"RegexMatchSetId":{"shape":"ResourceId"},
|
3015
|
-
"Name":{"shape":"ResourceName"},
|
3016
|
-
"RegexMatchTuples":{"shape":"RegexMatchTuples"}
|
3017
|
-
}
|
3018
|
-
},
|
3019
|
-
"RegexMatchSetSummaries":{
|
3020
|
-
"type":"list",
|
3021
|
-
"member":{"shape":"RegexMatchSetSummary"}
|
3022
|
-
},
|
3023
|
-
"RegexMatchSetSummary":{
|
3024
|
-
"type":"structure",
|
3025
|
-
"required":[
|
3026
|
-
"RegexMatchSetId",
|
3027
|
-
"Name"
|
3028
|
-
],
|
3029
|
-
"members":{
|
3030
|
-
"RegexMatchSetId":{"shape":"ResourceId"},
|
3031
|
-
"Name":{"shape":"ResourceName"}
|
3032
|
-
}
|
3033
|
-
},
|
3034
|
-
"RegexMatchSetUpdate":{
|
3035
|
-
"type":"structure",
|
3036
|
-
"required":[
|
3037
|
-
"Action",
|
3038
|
-
"RegexMatchTuple"
|
3039
|
-
],
|
3040
|
-
"members":{
|
3041
|
-
"Action":{"shape":"ChangeAction"},
|
3042
|
-
"RegexMatchTuple":{"shape":"RegexMatchTuple"}
|
3043
|
-
}
|
3044
|
-
},
|
3045
|
-
"RegexMatchSetUpdates":{
|
3046
|
-
"type":"list",
|
3047
|
-
"member":{"shape":"RegexMatchSetUpdate"},
|
3048
|
-
"min":1
|
3049
|
-
},
|
3050
|
-
"RegexMatchTuple":{
|
3051
|
-
"type":"structure",
|
3052
|
-
"required":[
|
3053
|
-
"FieldToMatch",
|
3054
|
-
"TextTransformation",
|
3055
|
-
"RegexPatternSetId"
|
3056
|
-
],
|
3057
|
-
"members":{
|
3058
|
-
"FieldToMatch":{"shape":"FieldToMatch"},
|
3059
|
-
"TextTransformation":{"shape":"TextTransformation"},
|
3060
|
-
"RegexPatternSetId":{"shape":"ResourceId"}
|
3061
|
-
}
|
3062
|
-
},
|
3063
|
-
"RegexMatchTuples":{
|
3064
|
-
"type":"list",
|
3065
|
-
"member":{"shape":"RegexMatchTuple"}
|
3066
|
-
},
|
3067
|
-
"RegexPatternSet":{
|
3068
|
-
"type":"structure",
|
3069
|
-
"required":[
|
3070
|
-
"RegexPatternSetId",
|
3071
|
-
"RegexPatternStrings"
|
3072
|
-
],
|
3073
|
-
"members":{
|
3074
|
-
"RegexPatternSetId":{"shape":"ResourceId"},
|
3075
|
-
"Name":{"shape":"ResourceName"},
|
3076
|
-
"RegexPatternStrings":{"shape":"RegexPatternStrings"}
|
3077
|
-
}
|
3078
|
-
},
|
3079
|
-
"RegexPatternSetSummaries":{
|
3080
|
-
"type":"list",
|
3081
|
-
"member":{"shape":"RegexPatternSetSummary"}
|
3082
|
-
},
|
3083
|
-
"RegexPatternSetSummary":{
|
3084
|
-
"type":"structure",
|
3085
|
-
"required":[
|
3086
|
-
"RegexPatternSetId",
|
3087
|
-
"Name"
|
3088
|
-
],
|
3089
|
-
"members":{
|
3090
|
-
"RegexPatternSetId":{"shape":"ResourceId"},
|
3091
|
-
"Name":{"shape":"ResourceName"}
|
3092
|
-
}
|
3093
|
-
},
|
3094
|
-
"RegexPatternSetUpdate":{
|
3095
|
-
"type":"structure",
|
3096
|
-
"required":[
|
3097
|
-
"Action",
|
3098
|
-
"RegexPatternString"
|
3099
|
-
],
|
3100
|
-
"members":{
|
3101
|
-
"Action":{"shape":"ChangeAction"},
|
3102
|
-
"RegexPatternString":{"shape":"RegexPatternString"}
|
3103
|
-
}
|
3104
|
-
},
|
3105
|
-
"RegexPatternSetUpdates":{
|
3106
|
-
"type":"list",
|
3107
|
-
"member":{"shape":"RegexPatternSetUpdate"},
|
3108
|
-
"min":1
|
3109
|
-
},
|
3110
|
-
"RegexPatternString":{
|
3111
|
-
"type":"string",
|
3112
|
-
"min":1
|
3113
|
-
},
|
3114
|
-
"RegexPatternStrings":{
|
3115
|
-
"type":"list",
|
3116
|
-
"member":{"shape":"RegexPatternString"},
|
3117
|
-
"max":10
|
3118
|
-
},
|
3119
|
-
"ResourceArn":{
|
3120
|
-
"type":"string",
|
3121
|
-
"max":1224,
|
3122
|
-
"min":1
|
3123
|
-
},
|
3124
|
-
"ResourceArns":{
|
3125
|
-
"type":"list",
|
3126
|
-
"member":{"shape":"ResourceArn"}
|
3127
|
-
},
|
3128
|
-
"ResourceId":{
|
3129
|
-
"type":"string",
|
3130
|
-
"max":128,
|
3131
|
-
"min":1
|
3132
|
-
},
|
3133
|
-
"ResourceName":{
|
3134
|
-
"type":"string",
|
3135
|
-
"max":128,
|
3136
|
-
"min":1
|
3137
|
-
},
|
3138
|
-
"ResourceType":{
|
3139
|
-
"type":"string",
|
3140
|
-
"enum":[
|
3141
|
-
"APPLICATION_LOAD_BALANCER",
|
3142
|
-
"API_GATEWAY"
|
3143
|
-
]
|
3144
|
-
},
|
3145
|
-
"Rule":{
|
3146
|
-
"type":"structure",
|
3147
|
-
"required":[
|
3148
|
-
"RuleId",
|
3149
|
-
"Predicates"
|
3150
|
-
],
|
3151
|
-
"members":{
|
3152
|
-
"RuleId":{"shape":"ResourceId"},
|
3153
|
-
"Name":{"shape":"ResourceName"},
|
3154
|
-
"MetricName":{"shape":"MetricName"},
|
3155
|
-
"Predicates":{"shape":"Predicates"}
|
3156
|
-
}
|
3157
|
-
},
|
3158
|
-
"RuleGroup":{
|
3159
|
-
"type":"structure",
|
3160
|
-
"required":["RuleGroupId"],
|
3161
|
-
"members":{
|
3162
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
3163
|
-
"Name":{"shape":"ResourceName"},
|
3164
|
-
"MetricName":{"shape":"MetricName"}
|
3165
|
-
}
|
3166
|
-
},
|
3167
|
-
"RuleGroupSummaries":{
|
3168
|
-
"type":"list",
|
3169
|
-
"member":{"shape":"RuleGroupSummary"}
|
3170
|
-
},
|
3171
|
-
"RuleGroupSummary":{
|
3172
|
-
"type":"structure",
|
3173
|
-
"required":[
|
3174
|
-
"RuleGroupId",
|
3175
|
-
"Name"
|
3176
|
-
],
|
3177
|
-
"members":{
|
3178
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
3179
|
-
"Name":{"shape":"ResourceName"}
|
3180
|
-
}
|
3181
|
-
},
|
3182
|
-
"RuleGroupUpdate":{
|
3183
|
-
"type":"structure",
|
3184
|
-
"required":[
|
3185
|
-
"Action",
|
3186
|
-
"ActivatedRule"
|
3187
|
-
],
|
3188
|
-
"members":{
|
3189
|
-
"Action":{"shape":"ChangeAction"},
|
3190
|
-
"ActivatedRule":{"shape":"ActivatedRule"}
|
3191
|
-
}
|
3192
|
-
},
|
3193
|
-
"RuleGroupUpdates":{
|
3194
|
-
"type":"list",
|
3195
|
-
"member":{"shape":"RuleGroupUpdate"},
|
3196
|
-
"min":1
|
3197
|
-
},
|
3198
|
-
"RulePriority":{"type":"integer"},
|
3199
|
-
"RuleSummaries":{
|
3200
|
-
"type":"list",
|
3201
|
-
"member":{"shape":"RuleSummary"}
|
3202
|
-
},
|
3203
|
-
"RuleSummary":{
|
3204
|
-
"type":"structure",
|
3205
|
-
"required":[
|
3206
|
-
"RuleId",
|
3207
|
-
"Name"
|
3208
|
-
],
|
3209
|
-
"members":{
|
3210
|
-
"RuleId":{"shape":"ResourceId"},
|
3211
|
-
"Name":{"shape":"ResourceName"}
|
3212
|
-
}
|
3213
|
-
},
|
3214
|
-
"RuleUpdate":{
|
3215
|
-
"type":"structure",
|
3216
|
-
"required":[
|
3217
|
-
"Action",
|
3218
|
-
"Predicate"
|
3219
|
-
],
|
3220
|
-
"members":{
|
3221
|
-
"Action":{"shape":"ChangeAction"},
|
3222
|
-
"Predicate":{"shape":"Predicate"}
|
3223
|
-
}
|
3224
|
-
},
|
3225
|
-
"RuleUpdates":{
|
3226
|
-
"type":"list",
|
3227
|
-
"member":{"shape":"RuleUpdate"}
|
3228
|
-
},
|
3229
|
-
"SampleWeight":{
|
3230
|
-
"type":"long",
|
3231
|
-
"min":0
|
3232
|
-
},
|
3233
|
-
"SampledHTTPRequest":{
|
3234
|
-
"type":"structure",
|
3235
|
-
"required":[
|
3236
|
-
"Request",
|
3237
|
-
"Weight"
|
3238
|
-
],
|
3239
|
-
"members":{
|
3240
|
-
"Request":{"shape":"HTTPRequest"},
|
3241
|
-
"Weight":{"shape":"SampleWeight"},
|
3242
|
-
"Timestamp":{"shape":"Timestamp"},
|
3243
|
-
"Action":{"shape":"Action"},
|
3244
|
-
"RuleWithinRuleGroup":{"shape":"ResourceId"}
|
3245
|
-
}
|
3246
|
-
},
|
3247
|
-
"SampledHTTPRequests":{
|
3248
|
-
"type":"list",
|
3249
|
-
"member":{"shape":"SampledHTTPRequest"}
|
3250
|
-
},
|
3251
|
-
"Size":{
|
3252
|
-
"type":"long",
|
3253
|
-
"max":21474836480,
|
3254
|
-
"min":0
|
3255
|
-
},
|
3256
|
-
"SizeConstraint":{
|
3257
|
-
"type":"structure",
|
3258
|
-
"required":[
|
3259
|
-
"FieldToMatch",
|
3260
|
-
"TextTransformation",
|
3261
|
-
"ComparisonOperator",
|
3262
|
-
"Size"
|
3263
|
-
],
|
3264
|
-
"members":{
|
3265
|
-
"FieldToMatch":{"shape":"FieldToMatch"},
|
3266
|
-
"TextTransformation":{"shape":"TextTransformation"},
|
3267
|
-
"ComparisonOperator":{"shape":"ComparisonOperator"},
|
3268
|
-
"Size":{"shape":"Size"}
|
3269
|
-
}
|
3270
|
-
},
|
3271
|
-
"SizeConstraintSet":{
|
3272
|
-
"type":"structure",
|
3273
|
-
"required":[
|
3274
|
-
"SizeConstraintSetId",
|
3275
|
-
"SizeConstraints"
|
3276
|
-
],
|
3277
|
-
"members":{
|
3278
|
-
"SizeConstraintSetId":{"shape":"ResourceId"},
|
3279
|
-
"Name":{"shape":"ResourceName"},
|
3280
|
-
"SizeConstraints":{"shape":"SizeConstraints"}
|
3281
|
-
}
|
3282
|
-
},
|
3283
|
-
"SizeConstraintSetSummaries":{
|
3284
|
-
"type":"list",
|
3285
|
-
"member":{"shape":"SizeConstraintSetSummary"}
|
3286
|
-
},
|
3287
|
-
"SizeConstraintSetSummary":{
|
3288
|
-
"type":"structure",
|
3289
|
-
"required":[
|
3290
|
-
"SizeConstraintSetId",
|
3291
|
-
"Name"
|
3292
|
-
],
|
3293
|
-
"members":{
|
3294
|
-
"SizeConstraintSetId":{"shape":"ResourceId"},
|
3295
|
-
"Name":{"shape":"ResourceName"}
|
3296
|
-
}
|
3297
|
-
},
|
3298
|
-
"SizeConstraintSetUpdate":{
|
3299
|
-
"type":"structure",
|
3300
|
-
"required":[
|
3301
|
-
"Action",
|
3302
|
-
"SizeConstraint"
|
3303
|
-
],
|
3304
|
-
"members":{
|
3305
|
-
"Action":{"shape":"ChangeAction"},
|
3306
|
-
"SizeConstraint":{"shape":"SizeConstraint"}
|
3307
|
-
}
|
3308
|
-
},
|
3309
|
-
"SizeConstraintSetUpdates":{
|
3310
|
-
"type":"list",
|
3311
|
-
"member":{"shape":"SizeConstraintSetUpdate"},
|
3312
|
-
"min":1
|
3313
|
-
},
|
3314
|
-
"SizeConstraints":{
|
3315
|
-
"type":"list",
|
3316
|
-
"member":{"shape":"SizeConstraint"}
|
3317
|
-
},
|
3318
|
-
"SqlInjectionMatchSet":{
|
3319
|
-
"type":"structure",
|
3320
|
-
"required":[
|
3321
|
-
"SqlInjectionMatchSetId",
|
3322
|
-
"SqlInjectionMatchTuples"
|
3323
|
-
],
|
3324
|
-
"members":{
|
3325
|
-
"SqlInjectionMatchSetId":{"shape":"ResourceId"},
|
3326
|
-
"Name":{"shape":"ResourceName"},
|
3327
|
-
"SqlInjectionMatchTuples":{"shape":"SqlInjectionMatchTuples"}
|
3328
|
-
}
|
3329
|
-
},
|
3330
|
-
"SqlInjectionMatchSetSummaries":{
|
3331
|
-
"type":"list",
|
3332
|
-
"member":{"shape":"SqlInjectionMatchSetSummary"}
|
3333
|
-
},
|
3334
|
-
"SqlInjectionMatchSetSummary":{
|
3335
|
-
"type":"structure",
|
3336
|
-
"required":[
|
3337
|
-
"SqlInjectionMatchSetId",
|
3338
|
-
"Name"
|
3339
|
-
],
|
3340
|
-
"members":{
|
3341
|
-
"SqlInjectionMatchSetId":{"shape":"ResourceId"},
|
3342
|
-
"Name":{"shape":"ResourceName"}
|
3343
|
-
}
|
3344
|
-
},
|
3345
|
-
"SqlInjectionMatchSetUpdate":{
|
3346
|
-
"type":"structure",
|
3347
|
-
"required":[
|
3348
|
-
"Action",
|
3349
|
-
"SqlInjectionMatchTuple"
|
3350
|
-
],
|
3351
|
-
"members":{
|
3352
|
-
"Action":{"shape":"ChangeAction"},
|
3353
|
-
"SqlInjectionMatchTuple":{"shape":"SqlInjectionMatchTuple"}
|
3354
|
-
}
|
3355
|
-
},
|
3356
|
-
"SqlInjectionMatchSetUpdates":{
|
3357
|
-
"type":"list",
|
3358
|
-
"member":{"shape":"SqlInjectionMatchSetUpdate"},
|
3359
|
-
"min":1
|
3360
|
-
},
|
3361
|
-
"SqlInjectionMatchTuple":{
|
3362
|
-
"type":"structure",
|
3363
|
-
"required":[
|
3364
|
-
"FieldToMatch",
|
3365
|
-
"TextTransformation"
|
3366
|
-
],
|
3367
|
-
"members":{
|
3368
|
-
"FieldToMatch":{"shape":"FieldToMatch"},
|
3369
|
-
"TextTransformation":{"shape":"TextTransformation"}
|
3370
|
-
}
|
3371
|
-
},
|
3372
|
-
"SqlInjectionMatchTuples":{
|
3373
|
-
"type":"list",
|
3374
|
-
"member":{"shape":"SqlInjectionMatchTuple"}
|
3375
|
-
},
|
3376
|
-
"SubscribedRuleGroupSummaries":{
|
3377
|
-
"type":"list",
|
3378
|
-
"member":{"shape":"SubscribedRuleGroupSummary"}
|
3379
|
-
},
|
3380
|
-
"SubscribedRuleGroupSummary":{
|
3381
|
-
"type":"structure",
|
3382
|
-
"required":[
|
3383
|
-
"RuleGroupId",
|
3384
|
-
"Name",
|
3385
|
-
"MetricName"
|
3386
|
-
],
|
3387
|
-
"members":{
|
3388
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
3389
|
-
"Name":{"shape":"ResourceName"},
|
3390
|
-
"MetricName":{"shape":"MetricName"}
|
3391
|
-
}
|
3392
|
-
},
|
3393
|
-
"Tag":{
|
3394
|
-
"type":"structure",
|
3395
|
-
"members":{
|
3396
|
-
"Key":{"shape":"TagKey"},
|
3397
|
-
"Value":{"shape":"TagValue"}
|
3398
|
-
}
|
3399
|
-
},
|
3400
|
-
"TagInfoForResource":{
|
3401
|
-
"type":"structure",
|
3402
|
-
"members":{
|
3403
|
-
"ResourceARN":{"shape":"ResourceArn"},
|
3404
|
-
"TagList":{"shape":"TagList"}
|
3405
|
-
}
|
3406
|
-
},
|
3407
|
-
"TagKey":{
|
3408
|
-
"type":"string",
|
3409
|
-
"max":128,
|
3410
|
-
"min":1
|
3411
|
-
},
|
3412
|
-
"TagKeyList":{
|
3413
|
-
"type":"list",
|
3414
|
-
"member":{"shape":"TagKey"},
|
3415
|
-
"min":1
|
3416
|
-
},
|
3417
|
-
"TagList":{
|
3418
|
-
"type":"list",
|
3419
|
-
"member":{"shape":"Tag"},
|
3420
|
-
"min":1
|
3421
|
-
},
|
3422
|
-
"TagResourceRequest":{
|
3423
|
-
"type":"structure",
|
3424
|
-
"required":[
|
3425
|
-
"ResourceARN",
|
3426
|
-
"Tags"
|
3427
|
-
],
|
3428
|
-
"members":{
|
3429
|
-
"ResourceARN":{"shape":"ResourceArn"},
|
3430
|
-
"Tags":{"shape":"TagList"}
|
3431
|
-
}
|
3432
|
-
},
|
3433
|
-
"TagResourceResponse":{
|
3434
|
-
"type":"structure",
|
3435
|
-
"members":{
|
3436
|
-
}
|
3437
|
-
},
|
3438
|
-
"TagValue":{
|
3439
|
-
"type":"string",
|
3440
|
-
"max":256,
|
3441
|
-
"min":0
|
3442
|
-
},
|
3443
|
-
"TextTransformation":{
|
3444
|
-
"type":"string",
|
3445
|
-
"enum":[
|
3446
|
-
"NONE",
|
3447
|
-
"COMPRESS_WHITE_SPACE",
|
3448
|
-
"HTML_ENTITY_DECODE",
|
3449
|
-
"LOWERCASE",
|
3450
|
-
"CMD_LINE",
|
3451
|
-
"URL_DECODE"
|
3452
|
-
]
|
3453
|
-
},
|
3454
|
-
"TimeWindow":{
|
3455
|
-
"type":"structure",
|
3456
|
-
"required":[
|
3457
|
-
"StartTime",
|
3458
|
-
"EndTime"
|
3459
|
-
],
|
3460
|
-
"members":{
|
3461
|
-
"StartTime":{"shape":"Timestamp"},
|
3462
|
-
"EndTime":{"shape":"Timestamp"}
|
3463
|
-
}
|
3464
|
-
},
|
3465
|
-
"Timestamp":{"type":"timestamp"},
|
3466
|
-
"URIString":{"type":"string"},
|
3467
|
-
"UntagResourceRequest":{
|
3468
|
-
"type":"structure",
|
3469
|
-
"required":[
|
3470
|
-
"ResourceARN",
|
3471
|
-
"TagKeys"
|
3472
|
-
],
|
3473
|
-
"members":{
|
3474
|
-
"ResourceARN":{"shape":"ResourceArn"},
|
3475
|
-
"TagKeys":{"shape":"TagKeyList"}
|
3476
|
-
}
|
3477
|
-
},
|
3478
|
-
"UntagResourceResponse":{
|
3479
|
-
"type":"structure",
|
3480
|
-
"members":{
|
3481
|
-
}
|
3482
|
-
},
|
3483
|
-
"UpdateByteMatchSetRequest":{
|
3484
|
-
"type":"structure",
|
3485
|
-
"required":[
|
3486
|
-
"ByteMatchSetId",
|
3487
|
-
"ChangeToken",
|
3488
|
-
"Updates"
|
3489
|
-
],
|
3490
|
-
"members":{
|
3491
|
-
"ByteMatchSetId":{"shape":"ResourceId"},
|
3492
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3493
|
-
"Updates":{"shape":"ByteMatchSetUpdates"}
|
3494
|
-
}
|
3495
|
-
},
|
3496
|
-
"UpdateByteMatchSetResponse":{
|
3497
|
-
"type":"structure",
|
3498
|
-
"members":{
|
3499
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3500
|
-
}
|
3501
|
-
},
|
3502
|
-
"UpdateGeoMatchSetRequest":{
|
3503
|
-
"type":"structure",
|
3504
|
-
"required":[
|
3505
|
-
"GeoMatchSetId",
|
3506
|
-
"ChangeToken",
|
3507
|
-
"Updates"
|
3508
|
-
],
|
3509
|
-
"members":{
|
3510
|
-
"GeoMatchSetId":{"shape":"ResourceId"},
|
3511
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3512
|
-
"Updates":{"shape":"GeoMatchSetUpdates"}
|
3513
|
-
}
|
3514
|
-
},
|
3515
|
-
"UpdateGeoMatchSetResponse":{
|
3516
|
-
"type":"structure",
|
3517
|
-
"members":{
|
3518
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3519
|
-
}
|
3520
|
-
},
|
3521
|
-
"UpdateIPSetRequest":{
|
3522
|
-
"type":"structure",
|
3523
|
-
"required":[
|
3524
|
-
"IPSetId",
|
3525
|
-
"ChangeToken",
|
3526
|
-
"Updates"
|
3527
|
-
],
|
3528
|
-
"members":{
|
3529
|
-
"IPSetId":{"shape":"ResourceId"},
|
3530
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3531
|
-
"Updates":{"shape":"IPSetUpdates"}
|
3532
|
-
}
|
3533
|
-
},
|
3534
|
-
"UpdateIPSetResponse":{
|
3535
|
-
"type":"structure",
|
3536
|
-
"members":{
|
3537
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3538
|
-
}
|
3539
|
-
},
|
3540
|
-
"UpdateRateBasedRuleRequest":{
|
3541
|
-
"type":"structure",
|
3542
|
-
"required":[
|
3543
|
-
"RuleId",
|
3544
|
-
"ChangeToken",
|
3545
|
-
"Updates",
|
3546
|
-
"RateLimit"
|
3547
|
-
],
|
3548
|
-
"members":{
|
3549
|
-
"RuleId":{"shape":"ResourceId"},
|
3550
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3551
|
-
"Updates":{"shape":"RuleUpdates"},
|
3552
|
-
"RateLimit":{"shape":"RateLimit"}
|
3553
|
-
}
|
3554
|
-
},
|
3555
|
-
"UpdateRateBasedRuleResponse":{
|
3556
|
-
"type":"structure",
|
3557
|
-
"members":{
|
3558
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3559
|
-
}
|
3560
|
-
},
|
3561
|
-
"UpdateRegexMatchSetRequest":{
|
3562
|
-
"type":"structure",
|
3563
|
-
"required":[
|
3564
|
-
"RegexMatchSetId",
|
3565
|
-
"Updates",
|
3566
|
-
"ChangeToken"
|
3567
|
-
],
|
3568
|
-
"members":{
|
3569
|
-
"RegexMatchSetId":{"shape":"ResourceId"},
|
3570
|
-
"Updates":{"shape":"RegexMatchSetUpdates"},
|
3571
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3572
|
-
}
|
3573
|
-
},
|
3574
|
-
"UpdateRegexMatchSetResponse":{
|
3575
|
-
"type":"structure",
|
3576
|
-
"members":{
|
3577
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3578
|
-
}
|
3579
|
-
},
|
3580
|
-
"UpdateRegexPatternSetRequest":{
|
3581
|
-
"type":"structure",
|
3582
|
-
"required":[
|
3583
|
-
"RegexPatternSetId",
|
3584
|
-
"Updates",
|
3585
|
-
"ChangeToken"
|
3586
|
-
],
|
3587
|
-
"members":{
|
3588
|
-
"RegexPatternSetId":{"shape":"ResourceId"},
|
3589
|
-
"Updates":{"shape":"RegexPatternSetUpdates"},
|
3590
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3591
|
-
}
|
3592
|
-
},
|
3593
|
-
"UpdateRegexPatternSetResponse":{
|
3594
|
-
"type":"structure",
|
3595
|
-
"members":{
|
3596
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3597
|
-
}
|
3598
|
-
},
|
3599
|
-
"UpdateRuleGroupRequest":{
|
3600
|
-
"type":"structure",
|
3601
|
-
"required":[
|
3602
|
-
"RuleGroupId",
|
3603
|
-
"Updates",
|
3604
|
-
"ChangeToken"
|
3605
|
-
],
|
3606
|
-
"members":{
|
3607
|
-
"RuleGroupId":{"shape":"ResourceId"},
|
3608
|
-
"Updates":{"shape":"RuleGroupUpdates"},
|
3609
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3610
|
-
}
|
3611
|
-
},
|
3612
|
-
"UpdateRuleGroupResponse":{
|
3613
|
-
"type":"structure",
|
3614
|
-
"members":{
|
3615
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3616
|
-
}
|
3617
|
-
},
|
3618
|
-
"UpdateRuleRequest":{
|
3619
|
-
"type":"structure",
|
3620
|
-
"required":[
|
3621
|
-
"RuleId",
|
3622
|
-
"ChangeToken",
|
3623
|
-
"Updates"
|
3624
|
-
],
|
3625
|
-
"members":{
|
3626
|
-
"RuleId":{"shape":"ResourceId"},
|
3627
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3628
|
-
"Updates":{"shape":"RuleUpdates"}
|
3629
|
-
}
|
3630
|
-
},
|
3631
|
-
"UpdateRuleResponse":{
|
3632
|
-
"type":"structure",
|
3633
|
-
"members":{
|
3634
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3635
|
-
}
|
3636
|
-
},
|
3637
|
-
"UpdateSizeConstraintSetRequest":{
|
3638
|
-
"type":"structure",
|
3639
|
-
"required":[
|
3640
|
-
"SizeConstraintSetId",
|
3641
|
-
"ChangeToken",
|
3642
|
-
"Updates"
|
3643
|
-
],
|
3644
|
-
"members":{
|
3645
|
-
"SizeConstraintSetId":{"shape":"ResourceId"},
|
3646
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3647
|
-
"Updates":{"shape":"SizeConstraintSetUpdates"}
|
3648
|
-
}
|
3649
|
-
},
|
3650
|
-
"UpdateSizeConstraintSetResponse":{
|
3651
|
-
"type":"structure",
|
3652
|
-
"members":{
|
3653
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3654
|
-
}
|
3655
|
-
},
|
3656
|
-
"UpdateSqlInjectionMatchSetRequest":{
|
3657
|
-
"type":"structure",
|
3658
|
-
"required":[
|
3659
|
-
"SqlInjectionMatchSetId",
|
3660
|
-
"ChangeToken",
|
3661
|
-
"Updates"
|
3662
|
-
],
|
3663
|
-
"members":{
|
3664
|
-
"SqlInjectionMatchSetId":{"shape":"ResourceId"},
|
3665
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3666
|
-
"Updates":{"shape":"SqlInjectionMatchSetUpdates"}
|
3667
|
-
}
|
3668
|
-
},
|
3669
|
-
"UpdateSqlInjectionMatchSetResponse":{
|
3670
|
-
"type":"structure",
|
3671
|
-
"members":{
|
3672
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3673
|
-
}
|
3674
|
-
},
|
3675
|
-
"UpdateWebACLRequest":{
|
3676
|
-
"type":"structure",
|
3677
|
-
"required":[
|
3678
|
-
"WebACLId",
|
3679
|
-
"ChangeToken"
|
3680
|
-
],
|
3681
|
-
"members":{
|
3682
|
-
"WebACLId":{"shape":"ResourceId"},
|
3683
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3684
|
-
"Updates":{"shape":"WebACLUpdates"},
|
3685
|
-
"DefaultAction":{"shape":"WafAction"}
|
3686
|
-
}
|
3687
|
-
},
|
3688
|
-
"UpdateWebACLResponse":{
|
3689
|
-
"type":"structure",
|
3690
|
-
"members":{
|
3691
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3692
|
-
}
|
3693
|
-
},
|
3694
|
-
"UpdateXssMatchSetRequest":{
|
3695
|
-
"type":"structure",
|
3696
|
-
"required":[
|
3697
|
-
"XssMatchSetId",
|
3698
|
-
"ChangeToken",
|
3699
|
-
"Updates"
|
3700
|
-
],
|
3701
|
-
"members":{
|
3702
|
-
"XssMatchSetId":{"shape":"ResourceId"},
|
3703
|
-
"ChangeToken":{"shape":"ChangeToken"},
|
3704
|
-
"Updates":{"shape":"XssMatchSetUpdates"}
|
3705
|
-
}
|
3706
|
-
},
|
3707
|
-
"UpdateXssMatchSetResponse":{
|
3708
|
-
"type":"structure",
|
3709
|
-
"members":{
|
3710
|
-
"ChangeToken":{"shape":"ChangeToken"}
|
3711
|
-
}
|
3712
|
-
},
|
3713
|
-
"WAFBadRequestException":{
|
3714
|
-
"type":"structure",
|
3715
|
-
"members":{
|
3716
|
-
"message":{"shape":"errorMessage"}
|
3717
|
-
},
|
3718
|
-
"exception":true
|
3719
|
-
},
|
3720
|
-
"WAFDisallowedNameException":{
|
3721
|
-
"type":"structure",
|
3722
|
-
"members":{
|
3723
|
-
"message":{"shape":"errorMessage"}
|
3724
|
-
},
|
3725
|
-
"exception":true
|
3726
|
-
},
|
3727
|
-
"WAFInternalErrorException":{
|
3728
|
-
"type":"structure",
|
3729
|
-
"members":{
|
3730
|
-
"message":{"shape":"errorMessage"}
|
3731
|
-
},
|
3732
|
-
"exception":true,
|
3733
|
-
"fault":true
|
3734
|
-
},
|
3735
|
-
"WAFInvalidAccountException":{
|
3736
|
-
"type":"structure",
|
3737
|
-
"members":{
|
3738
|
-
},
|
3739
|
-
"exception":true
|
3740
|
-
},
|
3741
|
-
"WAFInvalidOperationException":{
|
3742
|
-
"type":"structure",
|
3743
|
-
"members":{
|
3744
|
-
"message":{"shape":"errorMessage"}
|
3745
|
-
},
|
3746
|
-
"exception":true
|
3747
|
-
},
|
3748
|
-
"WAFInvalidParameterException":{
|
3749
|
-
"type":"structure",
|
3750
|
-
"members":{
|
3751
|
-
"field":{"shape":"ParameterExceptionField"},
|
3752
|
-
"parameter":{"shape":"ParameterExceptionParameter"},
|
3753
|
-
"reason":{"shape":"ParameterExceptionReason"}
|
3754
|
-
},
|
3755
|
-
"exception":true
|
3756
|
-
},
|
3757
|
-
"WAFInvalidPermissionPolicyException":{
|
3758
|
-
"type":"structure",
|
3759
|
-
"members":{
|
3760
|
-
"message":{"shape":"errorMessage"}
|
3761
|
-
},
|
3762
|
-
"exception":true
|
3763
|
-
},
|
3764
|
-
"WAFInvalidRegexPatternException":{
|
3765
|
-
"type":"structure",
|
3766
|
-
"members":{
|
3767
|
-
"message":{"shape":"errorMessage"}
|
3768
|
-
},
|
3769
|
-
"exception":true
|
3770
|
-
},
|
3771
|
-
"WAFLimitsExceededException":{
|
3772
|
-
"type":"structure",
|
3773
|
-
"members":{
|
3774
|
-
"message":{"shape":"errorMessage"}
|
3775
|
-
},
|
3776
|
-
"exception":true
|
3777
|
-
},
|
3778
|
-
"WAFNonEmptyEntityException":{
|
3779
|
-
"type":"structure",
|
3780
|
-
"members":{
|
3781
|
-
"message":{"shape":"errorMessage"}
|
3782
|
-
},
|
3783
|
-
"exception":true
|
3784
|
-
},
|
3785
|
-
"WAFNonexistentContainerException":{
|
3786
|
-
"type":"structure",
|
3787
|
-
"members":{
|
3788
|
-
"message":{"shape":"errorMessage"}
|
3789
|
-
},
|
3790
|
-
"exception":true
|
3791
|
-
},
|
3792
|
-
"WAFNonexistentItemException":{
|
3793
|
-
"type":"structure",
|
3794
|
-
"members":{
|
3795
|
-
"message":{"shape":"errorMessage"}
|
3796
|
-
},
|
3797
|
-
"exception":true
|
3798
|
-
},
|
3799
|
-
"WAFReferencedItemException":{
|
3800
|
-
"type":"structure",
|
3801
|
-
"members":{
|
3802
|
-
"message":{"shape":"errorMessage"}
|
3803
|
-
},
|
3804
|
-
"exception":true
|
3805
|
-
},
|
3806
|
-
"WAFServiceLinkedRoleErrorException":{
|
3807
|
-
"type":"structure",
|
3808
|
-
"members":{
|
3809
|
-
"message":{"shape":"errorMessage"}
|
3810
|
-
},
|
3811
|
-
"exception":true
|
3812
|
-
},
|
3813
|
-
"WAFStaleDataException":{
|
3814
|
-
"type":"structure",
|
3815
|
-
"members":{
|
3816
|
-
"message":{"shape":"errorMessage"}
|
3817
|
-
},
|
3818
|
-
"exception":true
|
3819
|
-
},
|
3820
|
-
"WAFSubscriptionNotFoundException":{
|
3821
|
-
"type":"structure",
|
3822
|
-
"members":{
|
3823
|
-
"message":{"shape":"errorMessage"}
|
3824
|
-
},
|
3825
|
-
"exception":true
|
3826
|
-
},
|
3827
|
-
"WAFTagOperationException":{
|
3828
|
-
"type":"structure",
|
3829
|
-
"members":{
|
3830
|
-
"message":{"shape":"errorMessage"}
|
3831
|
-
},
|
3832
|
-
"exception":true
|
3833
|
-
},
|
3834
|
-
"WAFTagOperationInternalErrorException":{
|
3835
|
-
"type":"structure",
|
3836
|
-
"members":{
|
3837
|
-
"message":{"shape":"errorMessage"}
|
3838
|
-
},
|
3839
|
-
"exception":true,
|
3840
|
-
"fault":true
|
3841
|
-
},
|
3842
|
-
"WAFUnavailableEntityException":{
|
3843
|
-
"type":"structure",
|
3844
|
-
"members":{
|
3845
|
-
"message":{"shape":"errorMessage"}
|
3846
|
-
},
|
3847
|
-
"exception":true
|
3848
|
-
},
|
3849
|
-
"WafAction":{
|
3850
|
-
"type":"structure",
|
3851
|
-
"required":["Type"],
|
3852
|
-
"members":{
|
3853
|
-
"Type":{"shape":"WafActionType"}
|
3854
|
-
}
|
3855
|
-
},
|
3856
|
-
"WafActionType":{
|
3857
|
-
"type":"string",
|
3858
|
-
"enum":[
|
3859
|
-
"BLOCK",
|
3860
|
-
"ALLOW",
|
3861
|
-
"COUNT"
|
3862
|
-
]
|
3863
|
-
},
|
3864
|
-
"WafOverrideAction":{
|
3865
|
-
"type":"structure",
|
3866
|
-
"required":["Type"],
|
3867
|
-
"members":{
|
3868
|
-
"Type":{"shape":"WafOverrideActionType"}
|
3869
|
-
}
|
3870
|
-
},
|
3871
|
-
"WafOverrideActionType":{
|
3872
|
-
"type":"string",
|
3873
|
-
"enum":[
|
3874
|
-
"NONE",
|
3875
|
-
"COUNT"
|
3876
|
-
]
|
3877
|
-
},
|
3878
|
-
"WafRuleType":{
|
3879
|
-
"type":"string",
|
3880
|
-
"enum":[
|
3881
|
-
"REGULAR",
|
3882
|
-
"RATE_BASED",
|
3883
|
-
"GROUP"
|
3884
|
-
]
|
3885
|
-
},
|
3886
|
-
"WebACL":{
|
3887
|
-
"type":"structure",
|
3888
|
-
"required":[
|
3889
|
-
"WebACLId",
|
3890
|
-
"DefaultAction",
|
3891
|
-
"Rules"
|
3892
|
-
],
|
3893
|
-
"members":{
|
3894
|
-
"WebACLId":{"shape":"ResourceId"},
|
3895
|
-
"Name":{"shape":"ResourceName"},
|
3896
|
-
"MetricName":{"shape":"MetricName"},
|
3897
|
-
"DefaultAction":{"shape":"WafAction"},
|
3898
|
-
"Rules":{"shape":"ActivatedRules"},
|
3899
|
-
"WebACLArn":{"shape":"ResourceArn"}
|
3900
|
-
}
|
3901
|
-
},
|
3902
|
-
"WebACLSummaries":{
|
3903
|
-
"type":"list",
|
3904
|
-
"member":{"shape":"WebACLSummary"}
|
3905
|
-
},
|
3906
|
-
"WebACLSummary":{
|
3907
|
-
"type":"structure",
|
3908
|
-
"required":[
|
3909
|
-
"WebACLId",
|
3910
|
-
"Name"
|
3911
|
-
],
|
3912
|
-
"members":{
|
3913
|
-
"WebACLId":{"shape":"ResourceId"},
|
3914
|
-
"Name":{"shape":"ResourceName"}
|
3915
|
-
}
|
3916
|
-
},
|
3917
|
-
"WebACLUpdate":{
|
3918
|
-
"type":"structure",
|
3919
|
-
"required":[
|
3920
|
-
"Action",
|
3921
|
-
"ActivatedRule"
|
3922
|
-
],
|
3923
|
-
"members":{
|
3924
|
-
"Action":{"shape":"ChangeAction"},
|
3925
|
-
"ActivatedRule":{"shape":"ActivatedRule"}
|
3926
|
-
}
|
3927
|
-
},
|
3928
|
-
"WebACLUpdates":{
|
3929
|
-
"type":"list",
|
3930
|
-
"member":{"shape":"WebACLUpdate"}
|
3931
|
-
},
|
3932
|
-
"XssMatchSet":{
|
3933
|
-
"type":"structure",
|
3934
|
-
"required":[
|
3935
|
-
"XssMatchSetId",
|
3936
|
-
"XssMatchTuples"
|
3937
|
-
],
|
3938
|
-
"members":{
|
3939
|
-
"XssMatchSetId":{"shape":"ResourceId"},
|
3940
|
-
"Name":{"shape":"ResourceName"},
|
3941
|
-
"XssMatchTuples":{"shape":"XssMatchTuples"}
|
3942
|
-
}
|
3943
|
-
},
|
3944
|
-
"XssMatchSetSummaries":{
|
3945
|
-
"type":"list",
|
3946
|
-
"member":{"shape":"XssMatchSetSummary"}
|
3947
|
-
},
|
3948
|
-
"XssMatchSetSummary":{
|
3949
|
-
"type":"structure",
|
3950
|
-
"required":[
|
3951
|
-
"XssMatchSetId",
|
3952
|
-
"Name"
|
3953
|
-
],
|
3954
|
-
"members":{
|
3955
|
-
"XssMatchSetId":{"shape":"ResourceId"},
|
3956
|
-
"Name":{"shape":"ResourceName"}
|
3957
|
-
}
|
3958
|
-
},
|
3959
|
-
"XssMatchSetUpdate":{
|
3960
|
-
"type":"structure",
|
3961
|
-
"required":[
|
3962
|
-
"Action",
|
3963
|
-
"XssMatchTuple"
|
3964
|
-
],
|
3965
|
-
"members":{
|
3966
|
-
"Action":{"shape":"ChangeAction"},
|
3967
|
-
"XssMatchTuple":{"shape":"XssMatchTuple"}
|
3968
|
-
}
|
3969
|
-
},
|
3970
|
-
"XssMatchSetUpdates":{
|
3971
|
-
"type":"list",
|
3972
|
-
"member":{"shape":"XssMatchSetUpdate"},
|
3973
|
-
"min":1
|
3974
|
-
},
|
3975
|
-
"XssMatchTuple":{
|
3976
|
-
"type":"structure",
|
3977
|
-
"required":[
|
3978
|
-
"FieldToMatch",
|
3979
|
-
"TextTransformation"
|
3980
|
-
],
|
3981
|
-
"members":{
|
3982
|
-
"FieldToMatch":{"shape":"FieldToMatch"},
|
3983
|
-
"TextTransformation":{"shape":"TextTransformation"}
|
3984
|
-
}
|
3985
|
-
},
|
3986
|
-
"XssMatchTuples":{
|
3987
|
-
"type":"list",
|
3988
|
-
"member":{"shape":"XssMatchTuple"}
|
3989
|
-
},
|
3990
|
-
"errorMessage":{"type":"string"}
|
3991
|
-
}
|
3992
|
-
}
|