aws-sdk-core 2.11.354 → 3.66.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -552
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -11
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1042
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3281
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2340
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1305
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -25410
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2899
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3152
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3470
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1881
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2514
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6577
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2138
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8914
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -505
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -857
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5163
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -769
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeInstanceHealth": {
|
4
|
-
"result_key": "InstanceStates"
|
5
|
-
},
|
6
|
-
"DescribeLoadBalancerPolicies": {
|
7
|
-
"result_key": "PolicyDescriptions"
|
8
|
-
},
|
9
|
-
"DescribeLoadBalancerPolicyTypes": {
|
10
|
-
"result_key": "PolicyTypeDescriptions"
|
11
|
-
},
|
12
|
-
"DescribeLoadBalancers": {
|
13
|
-
"input_token": "Marker",
|
14
|
-
"output_token": "NextMarker",
|
15
|
-
"result_key": "LoadBalancerDescriptions"
|
16
|
-
}
|
17
|
-
}
|
18
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "DescribeLoadBalancers",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "DescribeLoadBalancers",
|
12
|
-
"input": {
|
13
|
-
"LoadBalancerNames": [
|
14
|
-
"fake_load_balancer"
|
15
|
-
]
|
16
|
-
},
|
17
|
-
"errorExpectedFromService": true
|
18
|
-
}
|
19
|
-
]
|
20
|
-
}
|
@@ -1,54 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":2,
|
3
|
-
"waiters":{
|
4
|
-
"InstanceDeregistered": {
|
5
|
-
"delay": 15,
|
6
|
-
"operation": "DescribeInstanceHealth",
|
7
|
-
"maxAttempts": 40,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"expected": "OutOfService",
|
11
|
-
"matcher": "pathAll",
|
12
|
-
"state": "success",
|
13
|
-
"argument": "InstanceStates[].State"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"matcher": "error",
|
17
|
-
"expected": "InvalidInstance",
|
18
|
-
"state": "success"
|
19
|
-
}
|
20
|
-
]
|
21
|
-
},
|
22
|
-
"AnyInstanceInService":{
|
23
|
-
"acceptors":[
|
24
|
-
{
|
25
|
-
"argument":"InstanceStates[].State",
|
26
|
-
"expected":"InService",
|
27
|
-
"matcher":"pathAny",
|
28
|
-
"state":"success"
|
29
|
-
}
|
30
|
-
],
|
31
|
-
"delay":15,
|
32
|
-
"maxAttempts":40,
|
33
|
-
"operation":"DescribeInstanceHealth"
|
34
|
-
},
|
35
|
-
"InstanceInService":{
|
36
|
-
"acceptors":[
|
37
|
-
{
|
38
|
-
"argument":"InstanceStates[].State",
|
39
|
-
"expected":"InService",
|
40
|
-
"matcher":"pathAll",
|
41
|
-
"state":"success"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"matcher": "error",
|
45
|
-
"expected": "InvalidInstance",
|
46
|
-
"state": "retry"
|
47
|
-
}
|
48
|
-
],
|
49
|
-
"delay":15,
|
50
|
-
"maxAttempts":40,
|
51
|
-
"operation":"DescribeInstanceHealth"
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
@@ -1,2299 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2015-12-01",
|
5
|
-
"endpointPrefix":"elasticloadbalancing",
|
6
|
-
"protocol":"query",
|
7
|
-
"serviceAbbreviation":"Elastic Load Balancing v2",
|
8
|
-
"serviceFullName":"Elastic Load Balancing",
|
9
|
-
"serviceId":"Elastic Load Balancing v2",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"uid":"elasticloadbalancingv2-2015-12-01",
|
12
|
-
"xmlNamespace":"http://elasticloadbalancing.amazonaws.com/doc/2015-12-01/"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"AddListenerCertificates":{
|
16
|
-
"name":"AddListenerCertificates",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/"
|
20
|
-
},
|
21
|
-
"input":{"shape":"AddListenerCertificatesInput"},
|
22
|
-
"output":{
|
23
|
-
"shape":"AddListenerCertificatesOutput",
|
24
|
-
"resultWrapper":"AddListenerCertificatesResult"
|
25
|
-
},
|
26
|
-
"errors":[
|
27
|
-
{"shape":"ListenerNotFoundException"},
|
28
|
-
{"shape":"TooManyCertificatesException"},
|
29
|
-
{"shape":"CertificateNotFoundException"}
|
30
|
-
]
|
31
|
-
},
|
32
|
-
"AddTags":{
|
33
|
-
"name":"AddTags",
|
34
|
-
"http":{
|
35
|
-
"method":"POST",
|
36
|
-
"requestUri":"/"
|
37
|
-
},
|
38
|
-
"input":{"shape":"AddTagsInput"},
|
39
|
-
"output":{
|
40
|
-
"shape":"AddTagsOutput",
|
41
|
-
"resultWrapper":"AddTagsResult"
|
42
|
-
},
|
43
|
-
"errors":[
|
44
|
-
{"shape":"DuplicateTagKeysException"},
|
45
|
-
{"shape":"TooManyTagsException"},
|
46
|
-
{"shape":"LoadBalancerNotFoundException"},
|
47
|
-
{"shape":"TargetGroupNotFoundException"}
|
48
|
-
]
|
49
|
-
},
|
50
|
-
"CreateListener":{
|
51
|
-
"name":"CreateListener",
|
52
|
-
"http":{
|
53
|
-
"method":"POST",
|
54
|
-
"requestUri":"/"
|
55
|
-
},
|
56
|
-
"input":{"shape":"CreateListenerInput"},
|
57
|
-
"output":{
|
58
|
-
"shape":"CreateListenerOutput",
|
59
|
-
"resultWrapper":"CreateListenerResult"
|
60
|
-
},
|
61
|
-
"errors":[
|
62
|
-
{"shape":"DuplicateListenerException"},
|
63
|
-
{"shape":"TooManyListenersException"},
|
64
|
-
{"shape":"TooManyCertificatesException"},
|
65
|
-
{"shape":"LoadBalancerNotFoundException"},
|
66
|
-
{"shape":"TargetGroupNotFoundException"},
|
67
|
-
{"shape":"TargetGroupAssociationLimitException"},
|
68
|
-
{"shape":"InvalidConfigurationRequestException"},
|
69
|
-
{"shape":"IncompatibleProtocolsException"},
|
70
|
-
{"shape":"SSLPolicyNotFoundException"},
|
71
|
-
{"shape":"CertificateNotFoundException"},
|
72
|
-
{"shape":"UnsupportedProtocolException"},
|
73
|
-
{"shape":"TooManyRegistrationsForTargetIdException"},
|
74
|
-
{"shape":"TooManyTargetsException"},
|
75
|
-
{"shape":"TooManyActionsException"},
|
76
|
-
{"shape":"InvalidLoadBalancerActionException"}
|
77
|
-
]
|
78
|
-
},
|
79
|
-
"CreateLoadBalancer":{
|
80
|
-
"name":"CreateLoadBalancer",
|
81
|
-
"http":{
|
82
|
-
"method":"POST",
|
83
|
-
"requestUri":"/"
|
84
|
-
},
|
85
|
-
"input":{"shape":"CreateLoadBalancerInput"},
|
86
|
-
"output":{
|
87
|
-
"shape":"CreateLoadBalancerOutput",
|
88
|
-
"resultWrapper":"CreateLoadBalancerResult"
|
89
|
-
},
|
90
|
-
"errors":[
|
91
|
-
{"shape":"DuplicateLoadBalancerNameException"},
|
92
|
-
{"shape":"TooManyLoadBalancersException"},
|
93
|
-
{"shape":"InvalidConfigurationRequestException"},
|
94
|
-
{"shape":"SubnetNotFoundException"},
|
95
|
-
{"shape":"InvalidSubnetException"},
|
96
|
-
{"shape":"InvalidSecurityGroupException"},
|
97
|
-
{"shape":"InvalidSchemeException"},
|
98
|
-
{"shape":"TooManyTagsException"},
|
99
|
-
{"shape":"DuplicateTagKeysException"},
|
100
|
-
{"shape":"ResourceInUseException"},
|
101
|
-
{"shape":"AllocationIdNotFoundException"},
|
102
|
-
{"shape":"AvailabilityZoneNotSupportedException"},
|
103
|
-
{"shape":"OperationNotPermittedException"}
|
104
|
-
]
|
105
|
-
},
|
106
|
-
"CreateRule":{
|
107
|
-
"name":"CreateRule",
|
108
|
-
"http":{
|
109
|
-
"method":"POST",
|
110
|
-
"requestUri":"/"
|
111
|
-
},
|
112
|
-
"input":{"shape":"CreateRuleInput"},
|
113
|
-
"output":{
|
114
|
-
"shape":"CreateRuleOutput",
|
115
|
-
"resultWrapper":"CreateRuleResult"
|
116
|
-
},
|
117
|
-
"errors":[
|
118
|
-
{"shape":"PriorityInUseException"},
|
119
|
-
{"shape":"TooManyTargetGroupsException"},
|
120
|
-
{"shape":"TooManyRulesException"},
|
121
|
-
{"shape":"TargetGroupAssociationLimitException"},
|
122
|
-
{"shape":"IncompatibleProtocolsException"},
|
123
|
-
{"shape":"ListenerNotFoundException"},
|
124
|
-
{"shape":"TargetGroupNotFoundException"},
|
125
|
-
{"shape":"InvalidConfigurationRequestException"},
|
126
|
-
{"shape":"TooManyRegistrationsForTargetIdException"},
|
127
|
-
{"shape":"TooManyTargetsException"},
|
128
|
-
{"shape":"UnsupportedProtocolException"},
|
129
|
-
{"shape":"TooManyActionsException"},
|
130
|
-
{"shape":"InvalidLoadBalancerActionException"}
|
131
|
-
]
|
132
|
-
},
|
133
|
-
"CreateTargetGroup":{
|
134
|
-
"name":"CreateTargetGroup",
|
135
|
-
"http":{
|
136
|
-
"method":"POST",
|
137
|
-
"requestUri":"/"
|
138
|
-
},
|
139
|
-
"input":{"shape":"CreateTargetGroupInput"},
|
140
|
-
"output":{
|
141
|
-
"shape":"CreateTargetGroupOutput",
|
142
|
-
"resultWrapper":"CreateTargetGroupResult"
|
143
|
-
},
|
144
|
-
"errors":[
|
145
|
-
{"shape":"DuplicateTargetGroupNameException"},
|
146
|
-
{"shape":"TooManyTargetGroupsException"},
|
147
|
-
{"shape":"InvalidConfigurationRequestException"}
|
148
|
-
]
|
149
|
-
},
|
150
|
-
"DeleteListener":{
|
151
|
-
"name":"DeleteListener",
|
152
|
-
"http":{
|
153
|
-
"method":"POST",
|
154
|
-
"requestUri":"/"
|
155
|
-
},
|
156
|
-
"input":{"shape":"DeleteListenerInput"},
|
157
|
-
"output":{
|
158
|
-
"shape":"DeleteListenerOutput",
|
159
|
-
"resultWrapper":"DeleteListenerResult"
|
160
|
-
},
|
161
|
-
"errors":[
|
162
|
-
{"shape":"ListenerNotFoundException"}
|
163
|
-
]
|
164
|
-
},
|
165
|
-
"DeleteLoadBalancer":{
|
166
|
-
"name":"DeleteLoadBalancer",
|
167
|
-
"http":{
|
168
|
-
"method":"POST",
|
169
|
-
"requestUri":"/"
|
170
|
-
},
|
171
|
-
"input":{"shape":"DeleteLoadBalancerInput"},
|
172
|
-
"output":{
|
173
|
-
"shape":"DeleteLoadBalancerOutput",
|
174
|
-
"resultWrapper":"DeleteLoadBalancerResult"
|
175
|
-
},
|
176
|
-
"errors":[
|
177
|
-
{"shape":"LoadBalancerNotFoundException"},
|
178
|
-
{"shape":"OperationNotPermittedException"},
|
179
|
-
{"shape":"ResourceInUseException"}
|
180
|
-
]
|
181
|
-
},
|
182
|
-
"DeleteRule":{
|
183
|
-
"name":"DeleteRule",
|
184
|
-
"http":{
|
185
|
-
"method":"POST",
|
186
|
-
"requestUri":"/"
|
187
|
-
},
|
188
|
-
"input":{"shape":"DeleteRuleInput"},
|
189
|
-
"output":{
|
190
|
-
"shape":"DeleteRuleOutput",
|
191
|
-
"resultWrapper":"DeleteRuleResult"
|
192
|
-
},
|
193
|
-
"errors":[
|
194
|
-
{"shape":"RuleNotFoundException"},
|
195
|
-
{"shape":"OperationNotPermittedException"}
|
196
|
-
]
|
197
|
-
},
|
198
|
-
"DeleteTargetGroup":{
|
199
|
-
"name":"DeleteTargetGroup",
|
200
|
-
"http":{
|
201
|
-
"method":"POST",
|
202
|
-
"requestUri":"/"
|
203
|
-
},
|
204
|
-
"input":{"shape":"DeleteTargetGroupInput"},
|
205
|
-
"output":{
|
206
|
-
"shape":"DeleteTargetGroupOutput",
|
207
|
-
"resultWrapper":"DeleteTargetGroupResult"
|
208
|
-
},
|
209
|
-
"errors":[
|
210
|
-
{"shape":"ResourceInUseException"}
|
211
|
-
]
|
212
|
-
},
|
213
|
-
"DeregisterTargets":{
|
214
|
-
"name":"DeregisterTargets",
|
215
|
-
"http":{
|
216
|
-
"method":"POST",
|
217
|
-
"requestUri":"/"
|
218
|
-
},
|
219
|
-
"input":{"shape":"DeregisterTargetsInput"},
|
220
|
-
"output":{
|
221
|
-
"shape":"DeregisterTargetsOutput",
|
222
|
-
"resultWrapper":"DeregisterTargetsResult"
|
223
|
-
},
|
224
|
-
"errors":[
|
225
|
-
{"shape":"TargetGroupNotFoundException"},
|
226
|
-
{"shape":"InvalidTargetException"}
|
227
|
-
]
|
228
|
-
},
|
229
|
-
"DescribeAccountLimits":{
|
230
|
-
"name":"DescribeAccountLimits",
|
231
|
-
"http":{
|
232
|
-
"method":"POST",
|
233
|
-
"requestUri":"/"
|
234
|
-
},
|
235
|
-
"input":{"shape":"DescribeAccountLimitsInput"},
|
236
|
-
"output":{
|
237
|
-
"shape":"DescribeAccountLimitsOutput",
|
238
|
-
"resultWrapper":"DescribeAccountLimitsResult"
|
239
|
-
}
|
240
|
-
},
|
241
|
-
"DescribeListenerCertificates":{
|
242
|
-
"name":"DescribeListenerCertificates",
|
243
|
-
"http":{
|
244
|
-
"method":"POST",
|
245
|
-
"requestUri":"/"
|
246
|
-
},
|
247
|
-
"input":{"shape":"DescribeListenerCertificatesInput"},
|
248
|
-
"output":{
|
249
|
-
"shape":"DescribeListenerCertificatesOutput",
|
250
|
-
"resultWrapper":"DescribeListenerCertificatesResult"
|
251
|
-
},
|
252
|
-
"errors":[
|
253
|
-
{"shape":"ListenerNotFoundException"}
|
254
|
-
]
|
255
|
-
},
|
256
|
-
"DescribeListeners":{
|
257
|
-
"name":"DescribeListeners",
|
258
|
-
"http":{
|
259
|
-
"method":"POST",
|
260
|
-
"requestUri":"/"
|
261
|
-
},
|
262
|
-
"input":{"shape":"DescribeListenersInput"},
|
263
|
-
"output":{
|
264
|
-
"shape":"DescribeListenersOutput",
|
265
|
-
"resultWrapper":"DescribeListenersResult"
|
266
|
-
},
|
267
|
-
"errors":[
|
268
|
-
{"shape":"ListenerNotFoundException"},
|
269
|
-
{"shape":"LoadBalancerNotFoundException"},
|
270
|
-
{"shape":"UnsupportedProtocolException"}
|
271
|
-
]
|
272
|
-
},
|
273
|
-
"DescribeLoadBalancerAttributes":{
|
274
|
-
"name":"DescribeLoadBalancerAttributes",
|
275
|
-
"http":{
|
276
|
-
"method":"POST",
|
277
|
-
"requestUri":"/"
|
278
|
-
},
|
279
|
-
"input":{"shape":"DescribeLoadBalancerAttributesInput"},
|
280
|
-
"output":{
|
281
|
-
"shape":"DescribeLoadBalancerAttributesOutput",
|
282
|
-
"resultWrapper":"DescribeLoadBalancerAttributesResult"
|
283
|
-
},
|
284
|
-
"errors":[
|
285
|
-
{"shape":"LoadBalancerNotFoundException"}
|
286
|
-
]
|
287
|
-
},
|
288
|
-
"DescribeLoadBalancers":{
|
289
|
-
"name":"DescribeLoadBalancers",
|
290
|
-
"http":{
|
291
|
-
"method":"POST",
|
292
|
-
"requestUri":"/"
|
293
|
-
},
|
294
|
-
"input":{"shape":"DescribeLoadBalancersInput"},
|
295
|
-
"output":{
|
296
|
-
"shape":"DescribeLoadBalancersOutput",
|
297
|
-
"resultWrapper":"DescribeLoadBalancersResult"
|
298
|
-
},
|
299
|
-
"errors":[
|
300
|
-
{"shape":"LoadBalancerNotFoundException"}
|
301
|
-
]
|
302
|
-
},
|
303
|
-
"DescribeRules":{
|
304
|
-
"name":"DescribeRules",
|
305
|
-
"http":{
|
306
|
-
"method":"POST",
|
307
|
-
"requestUri":"/"
|
308
|
-
},
|
309
|
-
"input":{"shape":"DescribeRulesInput"},
|
310
|
-
"output":{
|
311
|
-
"shape":"DescribeRulesOutput",
|
312
|
-
"resultWrapper":"DescribeRulesResult"
|
313
|
-
},
|
314
|
-
"errors":[
|
315
|
-
{"shape":"ListenerNotFoundException"},
|
316
|
-
{"shape":"RuleNotFoundException"},
|
317
|
-
{"shape":"UnsupportedProtocolException"}
|
318
|
-
]
|
319
|
-
},
|
320
|
-
"DescribeSSLPolicies":{
|
321
|
-
"name":"DescribeSSLPolicies",
|
322
|
-
"http":{
|
323
|
-
"method":"POST",
|
324
|
-
"requestUri":"/"
|
325
|
-
},
|
326
|
-
"input":{"shape":"DescribeSSLPoliciesInput"},
|
327
|
-
"output":{
|
328
|
-
"shape":"DescribeSSLPoliciesOutput",
|
329
|
-
"resultWrapper":"DescribeSSLPoliciesResult"
|
330
|
-
},
|
331
|
-
"errors":[
|
332
|
-
{"shape":"SSLPolicyNotFoundException"}
|
333
|
-
]
|
334
|
-
},
|
335
|
-
"DescribeTags":{
|
336
|
-
"name":"DescribeTags",
|
337
|
-
"http":{
|
338
|
-
"method":"POST",
|
339
|
-
"requestUri":"/"
|
340
|
-
},
|
341
|
-
"input":{"shape":"DescribeTagsInput"},
|
342
|
-
"output":{
|
343
|
-
"shape":"DescribeTagsOutput",
|
344
|
-
"resultWrapper":"DescribeTagsResult"
|
345
|
-
},
|
346
|
-
"errors":[
|
347
|
-
{"shape":"LoadBalancerNotFoundException"},
|
348
|
-
{"shape":"TargetGroupNotFoundException"},
|
349
|
-
{"shape":"ListenerNotFoundException"},
|
350
|
-
{"shape":"RuleNotFoundException"}
|
351
|
-
]
|
352
|
-
},
|
353
|
-
"DescribeTargetGroupAttributes":{
|
354
|
-
"name":"DescribeTargetGroupAttributes",
|
355
|
-
"http":{
|
356
|
-
"method":"POST",
|
357
|
-
"requestUri":"/"
|
358
|
-
},
|
359
|
-
"input":{"shape":"DescribeTargetGroupAttributesInput"},
|
360
|
-
"output":{
|
361
|
-
"shape":"DescribeTargetGroupAttributesOutput",
|
362
|
-
"resultWrapper":"DescribeTargetGroupAttributesResult"
|
363
|
-
},
|
364
|
-
"errors":[
|
365
|
-
{"shape":"TargetGroupNotFoundException"}
|
366
|
-
]
|
367
|
-
},
|
368
|
-
"DescribeTargetGroups":{
|
369
|
-
"name":"DescribeTargetGroups",
|
370
|
-
"http":{
|
371
|
-
"method":"POST",
|
372
|
-
"requestUri":"/"
|
373
|
-
},
|
374
|
-
"input":{"shape":"DescribeTargetGroupsInput"},
|
375
|
-
"output":{
|
376
|
-
"shape":"DescribeTargetGroupsOutput",
|
377
|
-
"resultWrapper":"DescribeTargetGroupsResult"
|
378
|
-
},
|
379
|
-
"errors":[
|
380
|
-
{"shape":"LoadBalancerNotFoundException"},
|
381
|
-
{"shape":"TargetGroupNotFoundException"}
|
382
|
-
]
|
383
|
-
},
|
384
|
-
"DescribeTargetHealth":{
|
385
|
-
"name":"DescribeTargetHealth",
|
386
|
-
"http":{
|
387
|
-
"method":"POST",
|
388
|
-
"requestUri":"/"
|
389
|
-
},
|
390
|
-
"input":{"shape":"DescribeTargetHealthInput"},
|
391
|
-
"output":{
|
392
|
-
"shape":"DescribeTargetHealthOutput",
|
393
|
-
"resultWrapper":"DescribeTargetHealthResult"
|
394
|
-
},
|
395
|
-
"errors":[
|
396
|
-
{"shape":"InvalidTargetException"},
|
397
|
-
{"shape":"TargetGroupNotFoundException"},
|
398
|
-
{"shape":"HealthUnavailableException"}
|
399
|
-
]
|
400
|
-
},
|
401
|
-
"ModifyListener":{
|
402
|
-
"name":"ModifyListener",
|
403
|
-
"http":{
|
404
|
-
"method":"POST",
|
405
|
-
"requestUri":"/"
|
406
|
-
},
|
407
|
-
"input":{"shape":"ModifyListenerInput"},
|
408
|
-
"output":{
|
409
|
-
"shape":"ModifyListenerOutput",
|
410
|
-
"resultWrapper":"ModifyListenerResult"
|
411
|
-
},
|
412
|
-
"errors":[
|
413
|
-
{"shape":"DuplicateListenerException"},
|
414
|
-
{"shape":"TooManyListenersException"},
|
415
|
-
{"shape":"TooManyCertificatesException"},
|
416
|
-
{"shape":"ListenerNotFoundException"},
|
417
|
-
{"shape":"TargetGroupNotFoundException"},
|
418
|
-
{"shape":"TargetGroupAssociationLimitException"},
|
419
|
-
{"shape":"IncompatibleProtocolsException"},
|
420
|
-
{"shape":"SSLPolicyNotFoundException"},
|
421
|
-
{"shape":"CertificateNotFoundException"},
|
422
|
-
{"shape":"InvalidConfigurationRequestException"},
|
423
|
-
{"shape":"UnsupportedProtocolException"},
|
424
|
-
{"shape":"TooManyRegistrationsForTargetIdException"},
|
425
|
-
{"shape":"TooManyTargetsException"},
|
426
|
-
{"shape":"TooManyActionsException"},
|
427
|
-
{"shape":"InvalidLoadBalancerActionException"}
|
428
|
-
]
|
429
|
-
},
|
430
|
-
"ModifyLoadBalancerAttributes":{
|
431
|
-
"name":"ModifyLoadBalancerAttributes",
|
432
|
-
"http":{
|
433
|
-
"method":"POST",
|
434
|
-
"requestUri":"/"
|
435
|
-
},
|
436
|
-
"input":{"shape":"ModifyLoadBalancerAttributesInput"},
|
437
|
-
"output":{
|
438
|
-
"shape":"ModifyLoadBalancerAttributesOutput",
|
439
|
-
"resultWrapper":"ModifyLoadBalancerAttributesResult"
|
440
|
-
},
|
441
|
-
"errors":[
|
442
|
-
{"shape":"LoadBalancerNotFoundException"},
|
443
|
-
{"shape":"InvalidConfigurationRequestException"}
|
444
|
-
]
|
445
|
-
},
|
446
|
-
"ModifyRule":{
|
447
|
-
"name":"ModifyRule",
|
448
|
-
"http":{
|
449
|
-
"method":"POST",
|
450
|
-
"requestUri":"/"
|
451
|
-
},
|
452
|
-
"input":{"shape":"ModifyRuleInput"},
|
453
|
-
"output":{
|
454
|
-
"shape":"ModifyRuleOutput",
|
455
|
-
"resultWrapper":"ModifyRuleResult"
|
456
|
-
},
|
457
|
-
"errors":[
|
458
|
-
{"shape":"TargetGroupAssociationLimitException"},
|
459
|
-
{"shape":"IncompatibleProtocolsException"},
|
460
|
-
{"shape":"RuleNotFoundException"},
|
461
|
-
{"shape":"OperationNotPermittedException"},
|
462
|
-
{"shape":"TooManyRegistrationsForTargetIdException"},
|
463
|
-
{"shape":"TooManyTargetsException"},
|
464
|
-
{"shape":"TargetGroupNotFoundException"},
|
465
|
-
{"shape":"UnsupportedProtocolException"},
|
466
|
-
{"shape":"TooManyActionsException"},
|
467
|
-
{"shape":"InvalidLoadBalancerActionException"}
|
468
|
-
]
|
469
|
-
},
|
470
|
-
"ModifyTargetGroup":{
|
471
|
-
"name":"ModifyTargetGroup",
|
472
|
-
"http":{
|
473
|
-
"method":"POST",
|
474
|
-
"requestUri":"/"
|
475
|
-
},
|
476
|
-
"input":{"shape":"ModifyTargetGroupInput"},
|
477
|
-
"output":{
|
478
|
-
"shape":"ModifyTargetGroupOutput",
|
479
|
-
"resultWrapper":"ModifyTargetGroupResult"
|
480
|
-
},
|
481
|
-
"errors":[
|
482
|
-
{"shape":"TargetGroupNotFoundException"},
|
483
|
-
{"shape":"InvalidConfigurationRequestException"}
|
484
|
-
]
|
485
|
-
},
|
486
|
-
"ModifyTargetGroupAttributes":{
|
487
|
-
"name":"ModifyTargetGroupAttributes",
|
488
|
-
"http":{
|
489
|
-
"method":"POST",
|
490
|
-
"requestUri":"/"
|
491
|
-
},
|
492
|
-
"input":{"shape":"ModifyTargetGroupAttributesInput"},
|
493
|
-
"output":{
|
494
|
-
"shape":"ModifyTargetGroupAttributesOutput",
|
495
|
-
"resultWrapper":"ModifyTargetGroupAttributesResult"
|
496
|
-
},
|
497
|
-
"errors":[
|
498
|
-
{"shape":"TargetGroupNotFoundException"},
|
499
|
-
{"shape":"InvalidConfigurationRequestException"}
|
500
|
-
]
|
501
|
-
},
|
502
|
-
"RegisterTargets":{
|
503
|
-
"name":"RegisterTargets",
|
504
|
-
"http":{
|
505
|
-
"method":"POST",
|
506
|
-
"requestUri":"/"
|
507
|
-
},
|
508
|
-
"input":{"shape":"RegisterTargetsInput"},
|
509
|
-
"output":{
|
510
|
-
"shape":"RegisterTargetsOutput",
|
511
|
-
"resultWrapper":"RegisterTargetsResult"
|
512
|
-
},
|
513
|
-
"errors":[
|
514
|
-
{"shape":"TargetGroupNotFoundException"},
|
515
|
-
{"shape":"TooManyTargetsException"},
|
516
|
-
{"shape":"InvalidTargetException"},
|
517
|
-
{"shape":"TooManyRegistrationsForTargetIdException"}
|
518
|
-
]
|
519
|
-
},
|
520
|
-
"RemoveListenerCertificates":{
|
521
|
-
"name":"RemoveListenerCertificates",
|
522
|
-
"http":{
|
523
|
-
"method":"POST",
|
524
|
-
"requestUri":"/"
|
525
|
-
},
|
526
|
-
"input":{"shape":"RemoveListenerCertificatesInput"},
|
527
|
-
"output":{
|
528
|
-
"shape":"RemoveListenerCertificatesOutput",
|
529
|
-
"resultWrapper":"RemoveListenerCertificatesResult"
|
530
|
-
},
|
531
|
-
"errors":[
|
532
|
-
{"shape":"ListenerNotFoundException"},
|
533
|
-
{"shape":"OperationNotPermittedException"}
|
534
|
-
]
|
535
|
-
},
|
536
|
-
"RemoveTags":{
|
537
|
-
"name":"RemoveTags",
|
538
|
-
"http":{
|
539
|
-
"method":"POST",
|
540
|
-
"requestUri":"/"
|
541
|
-
},
|
542
|
-
"input":{"shape":"RemoveTagsInput"},
|
543
|
-
"output":{
|
544
|
-
"shape":"RemoveTagsOutput",
|
545
|
-
"resultWrapper":"RemoveTagsResult"
|
546
|
-
},
|
547
|
-
"errors":[
|
548
|
-
{"shape":"LoadBalancerNotFoundException"},
|
549
|
-
{"shape":"TargetGroupNotFoundException"},
|
550
|
-
{"shape":"ListenerNotFoundException"},
|
551
|
-
{"shape":"RuleNotFoundException"},
|
552
|
-
{"shape":"TooManyTagsException"}
|
553
|
-
]
|
554
|
-
},
|
555
|
-
"SetIpAddressType":{
|
556
|
-
"name":"SetIpAddressType",
|
557
|
-
"http":{
|
558
|
-
"method":"POST",
|
559
|
-
"requestUri":"/"
|
560
|
-
},
|
561
|
-
"input":{"shape":"SetIpAddressTypeInput"},
|
562
|
-
"output":{
|
563
|
-
"shape":"SetIpAddressTypeOutput",
|
564
|
-
"resultWrapper":"SetIpAddressTypeResult"
|
565
|
-
},
|
566
|
-
"errors":[
|
567
|
-
{"shape":"LoadBalancerNotFoundException"},
|
568
|
-
{"shape":"InvalidConfigurationRequestException"},
|
569
|
-
{"shape":"InvalidSubnetException"}
|
570
|
-
]
|
571
|
-
},
|
572
|
-
"SetRulePriorities":{
|
573
|
-
"name":"SetRulePriorities",
|
574
|
-
"http":{
|
575
|
-
"method":"POST",
|
576
|
-
"requestUri":"/"
|
577
|
-
},
|
578
|
-
"input":{"shape":"SetRulePrioritiesInput"},
|
579
|
-
"output":{
|
580
|
-
"shape":"SetRulePrioritiesOutput",
|
581
|
-
"resultWrapper":"SetRulePrioritiesResult"
|
582
|
-
},
|
583
|
-
"errors":[
|
584
|
-
{"shape":"RuleNotFoundException"},
|
585
|
-
{"shape":"PriorityInUseException"},
|
586
|
-
{"shape":"OperationNotPermittedException"}
|
587
|
-
]
|
588
|
-
},
|
589
|
-
"SetSecurityGroups":{
|
590
|
-
"name":"SetSecurityGroups",
|
591
|
-
"http":{
|
592
|
-
"method":"POST",
|
593
|
-
"requestUri":"/"
|
594
|
-
},
|
595
|
-
"input":{"shape":"SetSecurityGroupsInput"},
|
596
|
-
"output":{
|
597
|
-
"shape":"SetSecurityGroupsOutput",
|
598
|
-
"resultWrapper":"SetSecurityGroupsResult"
|
599
|
-
},
|
600
|
-
"errors":[
|
601
|
-
{"shape":"LoadBalancerNotFoundException"},
|
602
|
-
{"shape":"InvalidConfigurationRequestException"},
|
603
|
-
{"shape":"InvalidSecurityGroupException"}
|
604
|
-
]
|
605
|
-
},
|
606
|
-
"SetSubnets":{
|
607
|
-
"name":"SetSubnets",
|
608
|
-
"http":{
|
609
|
-
"method":"POST",
|
610
|
-
"requestUri":"/"
|
611
|
-
},
|
612
|
-
"input":{"shape":"SetSubnetsInput"},
|
613
|
-
"output":{
|
614
|
-
"shape":"SetSubnetsOutput",
|
615
|
-
"resultWrapper":"SetSubnetsResult"
|
616
|
-
},
|
617
|
-
"errors":[
|
618
|
-
{"shape":"LoadBalancerNotFoundException"},
|
619
|
-
{"shape":"InvalidConfigurationRequestException"},
|
620
|
-
{"shape":"SubnetNotFoundException"},
|
621
|
-
{"shape":"InvalidSubnetException"},
|
622
|
-
{"shape":"AllocationIdNotFoundException"},
|
623
|
-
{"shape":"AvailabilityZoneNotSupportedException"}
|
624
|
-
]
|
625
|
-
}
|
626
|
-
},
|
627
|
-
"shapes":{
|
628
|
-
"Action":{
|
629
|
-
"type":"structure",
|
630
|
-
"required":["Type"],
|
631
|
-
"members":{
|
632
|
-
"Type":{"shape":"ActionTypeEnum"},
|
633
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
634
|
-
"AuthenticateOidcConfig":{"shape":"AuthenticateOidcActionConfig"},
|
635
|
-
"AuthenticateCognitoConfig":{"shape":"AuthenticateCognitoActionConfig"},
|
636
|
-
"Order":{"shape":"ActionOrder"},
|
637
|
-
"RedirectConfig":{"shape":"RedirectActionConfig"},
|
638
|
-
"FixedResponseConfig":{"shape":"FixedResponseActionConfig"}
|
639
|
-
}
|
640
|
-
},
|
641
|
-
"ActionOrder":{
|
642
|
-
"type":"integer",
|
643
|
-
"max":50000,
|
644
|
-
"min":1
|
645
|
-
},
|
646
|
-
"ActionTypeEnum":{
|
647
|
-
"type":"string",
|
648
|
-
"enum":[
|
649
|
-
"forward",
|
650
|
-
"authenticate-oidc",
|
651
|
-
"authenticate-cognito",
|
652
|
-
"redirect",
|
653
|
-
"fixed-response"
|
654
|
-
]
|
655
|
-
},
|
656
|
-
"Actions":{
|
657
|
-
"type":"list",
|
658
|
-
"member":{"shape":"Action"}
|
659
|
-
},
|
660
|
-
"AddListenerCertificatesInput":{
|
661
|
-
"type":"structure",
|
662
|
-
"required":[
|
663
|
-
"ListenerArn",
|
664
|
-
"Certificates"
|
665
|
-
],
|
666
|
-
"members":{
|
667
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
668
|
-
"Certificates":{"shape":"CertificateList"}
|
669
|
-
}
|
670
|
-
},
|
671
|
-
"AddListenerCertificatesOutput":{
|
672
|
-
"type":"structure",
|
673
|
-
"members":{
|
674
|
-
"Certificates":{"shape":"CertificateList"}
|
675
|
-
}
|
676
|
-
},
|
677
|
-
"AddTagsInput":{
|
678
|
-
"type":"structure",
|
679
|
-
"required":[
|
680
|
-
"ResourceArns",
|
681
|
-
"Tags"
|
682
|
-
],
|
683
|
-
"members":{
|
684
|
-
"ResourceArns":{"shape":"ResourceArns"},
|
685
|
-
"Tags":{"shape":"TagList"}
|
686
|
-
}
|
687
|
-
},
|
688
|
-
"AddTagsOutput":{
|
689
|
-
"type":"structure",
|
690
|
-
"members":{
|
691
|
-
}
|
692
|
-
},
|
693
|
-
"AllocationId":{"type":"string"},
|
694
|
-
"AllocationIdNotFoundException":{
|
695
|
-
"type":"structure",
|
696
|
-
"members":{
|
697
|
-
},
|
698
|
-
"error":{
|
699
|
-
"code":"AllocationIdNotFound",
|
700
|
-
"httpStatusCode":400,
|
701
|
-
"senderFault":true
|
702
|
-
},
|
703
|
-
"exception":true
|
704
|
-
},
|
705
|
-
"AuthenticateCognitoActionAuthenticationRequestExtraParams":{
|
706
|
-
"type":"map",
|
707
|
-
"key":{"shape":"AuthenticateCognitoActionAuthenticationRequestParamName"},
|
708
|
-
"value":{"shape":"AuthenticateCognitoActionAuthenticationRequestParamValue"}
|
709
|
-
},
|
710
|
-
"AuthenticateCognitoActionAuthenticationRequestParamName":{"type":"string"},
|
711
|
-
"AuthenticateCognitoActionAuthenticationRequestParamValue":{"type":"string"},
|
712
|
-
"AuthenticateCognitoActionConditionalBehaviorEnum":{
|
713
|
-
"type":"string",
|
714
|
-
"enum":[
|
715
|
-
"deny",
|
716
|
-
"allow",
|
717
|
-
"authenticate"
|
718
|
-
]
|
719
|
-
},
|
720
|
-
"AuthenticateCognitoActionConfig":{
|
721
|
-
"type":"structure",
|
722
|
-
"required":[
|
723
|
-
"UserPoolArn",
|
724
|
-
"UserPoolClientId",
|
725
|
-
"UserPoolDomain"
|
726
|
-
],
|
727
|
-
"members":{
|
728
|
-
"UserPoolArn":{"shape":"AuthenticateCognitoActionUserPoolArn"},
|
729
|
-
"UserPoolClientId":{"shape":"AuthenticateCognitoActionUserPoolClientId"},
|
730
|
-
"UserPoolDomain":{"shape":"AuthenticateCognitoActionUserPoolDomain"},
|
731
|
-
"SessionCookieName":{"shape":"AuthenticateCognitoActionSessionCookieName"},
|
732
|
-
"Scope":{"shape":"AuthenticateCognitoActionScope"},
|
733
|
-
"SessionTimeout":{"shape":"AuthenticateCognitoActionSessionTimeout"},
|
734
|
-
"AuthenticationRequestExtraParams":{"shape":"AuthenticateCognitoActionAuthenticationRequestExtraParams"},
|
735
|
-
"OnUnauthenticatedRequest":{"shape":"AuthenticateCognitoActionConditionalBehaviorEnum"}
|
736
|
-
}
|
737
|
-
},
|
738
|
-
"AuthenticateCognitoActionScope":{"type":"string"},
|
739
|
-
"AuthenticateCognitoActionSessionCookieName":{"type":"string"},
|
740
|
-
"AuthenticateCognitoActionSessionTimeout":{"type":"long"},
|
741
|
-
"AuthenticateCognitoActionUserPoolArn":{"type":"string"},
|
742
|
-
"AuthenticateCognitoActionUserPoolClientId":{"type":"string"},
|
743
|
-
"AuthenticateCognitoActionUserPoolDomain":{"type":"string"},
|
744
|
-
"AuthenticateOidcActionAuthenticationRequestExtraParams":{
|
745
|
-
"type":"map",
|
746
|
-
"key":{"shape":"AuthenticateOidcActionAuthenticationRequestParamName"},
|
747
|
-
"value":{"shape":"AuthenticateOidcActionAuthenticationRequestParamValue"}
|
748
|
-
},
|
749
|
-
"AuthenticateOidcActionAuthenticationRequestParamName":{"type":"string"},
|
750
|
-
"AuthenticateOidcActionAuthenticationRequestParamValue":{"type":"string"},
|
751
|
-
"AuthenticateOidcActionAuthorizationEndpoint":{"type":"string"},
|
752
|
-
"AuthenticateOidcActionClientId":{"type":"string"},
|
753
|
-
"AuthenticateOidcActionClientSecret":{"type":"string"},
|
754
|
-
"AuthenticateOidcActionConditionalBehaviorEnum":{
|
755
|
-
"type":"string",
|
756
|
-
"enum":[
|
757
|
-
"deny",
|
758
|
-
"allow",
|
759
|
-
"authenticate"
|
760
|
-
]
|
761
|
-
},
|
762
|
-
"AuthenticateOidcActionConfig":{
|
763
|
-
"type":"structure",
|
764
|
-
"required":[
|
765
|
-
"Issuer",
|
766
|
-
"AuthorizationEndpoint",
|
767
|
-
"TokenEndpoint",
|
768
|
-
"UserInfoEndpoint",
|
769
|
-
"ClientId"
|
770
|
-
],
|
771
|
-
"members":{
|
772
|
-
"Issuer":{"shape":"AuthenticateOidcActionIssuer"},
|
773
|
-
"AuthorizationEndpoint":{"shape":"AuthenticateOidcActionAuthorizationEndpoint"},
|
774
|
-
"TokenEndpoint":{"shape":"AuthenticateOidcActionTokenEndpoint"},
|
775
|
-
"UserInfoEndpoint":{"shape":"AuthenticateOidcActionUserInfoEndpoint"},
|
776
|
-
"ClientId":{"shape":"AuthenticateOidcActionClientId"},
|
777
|
-
"ClientSecret":{"shape":"AuthenticateOidcActionClientSecret"},
|
778
|
-
"SessionCookieName":{"shape":"AuthenticateOidcActionSessionCookieName"},
|
779
|
-
"Scope":{"shape":"AuthenticateOidcActionScope"},
|
780
|
-
"SessionTimeout":{"shape":"AuthenticateOidcActionSessionTimeout"},
|
781
|
-
"AuthenticationRequestExtraParams":{"shape":"AuthenticateOidcActionAuthenticationRequestExtraParams"},
|
782
|
-
"OnUnauthenticatedRequest":{"shape":"AuthenticateOidcActionConditionalBehaviorEnum"},
|
783
|
-
"UseExistingClientSecret":{"shape":"AuthenticateOidcActionUseExistingClientSecret"}
|
784
|
-
}
|
785
|
-
},
|
786
|
-
"AuthenticateOidcActionIssuer":{"type":"string"},
|
787
|
-
"AuthenticateOidcActionScope":{"type":"string"},
|
788
|
-
"AuthenticateOidcActionSessionCookieName":{"type":"string"},
|
789
|
-
"AuthenticateOidcActionSessionTimeout":{"type":"long"},
|
790
|
-
"AuthenticateOidcActionTokenEndpoint":{"type":"string"},
|
791
|
-
"AuthenticateOidcActionUseExistingClientSecret":{"type":"boolean"},
|
792
|
-
"AuthenticateOidcActionUserInfoEndpoint":{"type":"string"},
|
793
|
-
"AvailabilityZone":{
|
794
|
-
"type":"structure",
|
795
|
-
"members":{
|
796
|
-
"ZoneName":{"shape":"ZoneName"},
|
797
|
-
"SubnetId":{"shape":"SubnetId"},
|
798
|
-
"LoadBalancerAddresses":{"shape":"LoadBalancerAddresses"}
|
799
|
-
}
|
800
|
-
},
|
801
|
-
"AvailabilityZoneNotSupportedException":{
|
802
|
-
"type":"structure",
|
803
|
-
"members":{
|
804
|
-
},
|
805
|
-
"error":{
|
806
|
-
"code":"AvailabilityZoneNotSupported",
|
807
|
-
"httpStatusCode":400,
|
808
|
-
"senderFault":true
|
809
|
-
},
|
810
|
-
"exception":true
|
811
|
-
},
|
812
|
-
"AvailabilityZones":{
|
813
|
-
"type":"list",
|
814
|
-
"member":{"shape":"AvailabilityZone"}
|
815
|
-
},
|
816
|
-
"CanonicalHostedZoneId":{"type":"string"},
|
817
|
-
"Certificate":{
|
818
|
-
"type":"structure",
|
819
|
-
"members":{
|
820
|
-
"CertificateArn":{"shape":"CertificateArn"},
|
821
|
-
"IsDefault":{"shape":"Default"}
|
822
|
-
}
|
823
|
-
},
|
824
|
-
"CertificateArn":{"type":"string"},
|
825
|
-
"CertificateList":{
|
826
|
-
"type":"list",
|
827
|
-
"member":{"shape":"Certificate"}
|
828
|
-
},
|
829
|
-
"CertificateNotFoundException":{
|
830
|
-
"type":"structure",
|
831
|
-
"members":{
|
832
|
-
},
|
833
|
-
"error":{
|
834
|
-
"code":"CertificateNotFound",
|
835
|
-
"httpStatusCode":400,
|
836
|
-
"senderFault":true
|
837
|
-
},
|
838
|
-
"exception":true
|
839
|
-
},
|
840
|
-
"Cipher":{
|
841
|
-
"type":"structure",
|
842
|
-
"members":{
|
843
|
-
"Name":{"shape":"CipherName"},
|
844
|
-
"Priority":{"shape":"CipherPriority"}
|
845
|
-
}
|
846
|
-
},
|
847
|
-
"CipherName":{"type":"string"},
|
848
|
-
"CipherPriority":{"type":"integer"},
|
849
|
-
"Ciphers":{
|
850
|
-
"type":"list",
|
851
|
-
"member":{"shape":"Cipher"}
|
852
|
-
},
|
853
|
-
"ConditionFieldName":{
|
854
|
-
"type":"string",
|
855
|
-
"max":64
|
856
|
-
},
|
857
|
-
"CreateListenerInput":{
|
858
|
-
"type":"structure",
|
859
|
-
"required":[
|
860
|
-
"LoadBalancerArn",
|
861
|
-
"Protocol",
|
862
|
-
"Port",
|
863
|
-
"DefaultActions"
|
864
|
-
],
|
865
|
-
"members":{
|
866
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
867
|
-
"Protocol":{"shape":"ProtocolEnum"},
|
868
|
-
"Port":{"shape":"Port"},
|
869
|
-
"SslPolicy":{"shape":"SslPolicyName"},
|
870
|
-
"Certificates":{"shape":"CertificateList"},
|
871
|
-
"DefaultActions":{"shape":"Actions"}
|
872
|
-
}
|
873
|
-
},
|
874
|
-
"CreateListenerOutput":{
|
875
|
-
"type":"structure",
|
876
|
-
"members":{
|
877
|
-
"Listeners":{"shape":"Listeners"}
|
878
|
-
}
|
879
|
-
},
|
880
|
-
"CreateLoadBalancerInput":{
|
881
|
-
"type":"structure",
|
882
|
-
"required":["Name"],
|
883
|
-
"members":{
|
884
|
-
"Name":{"shape":"LoadBalancerName"},
|
885
|
-
"Subnets":{"shape":"Subnets"},
|
886
|
-
"SubnetMappings":{"shape":"SubnetMappings"},
|
887
|
-
"SecurityGroups":{"shape":"SecurityGroups"},
|
888
|
-
"Scheme":{"shape":"LoadBalancerSchemeEnum"},
|
889
|
-
"Tags":{"shape":"TagList"},
|
890
|
-
"Type":{"shape":"LoadBalancerTypeEnum"},
|
891
|
-
"IpAddressType":{"shape":"IpAddressType"}
|
892
|
-
}
|
893
|
-
},
|
894
|
-
"CreateLoadBalancerOutput":{
|
895
|
-
"type":"structure",
|
896
|
-
"members":{
|
897
|
-
"LoadBalancers":{"shape":"LoadBalancers"}
|
898
|
-
}
|
899
|
-
},
|
900
|
-
"CreateRuleInput":{
|
901
|
-
"type":"structure",
|
902
|
-
"required":[
|
903
|
-
"ListenerArn",
|
904
|
-
"Conditions",
|
905
|
-
"Priority",
|
906
|
-
"Actions"
|
907
|
-
],
|
908
|
-
"members":{
|
909
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
910
|
-
"Conditions":{"shape":"RuleConditionList"},
|
911
|
-
"Priority":{"shape":"RulePriority"},
|
912
|
-
"Actions":{"shape":"Actions"}
|
913
|
-
}
|
914
|
-
},
|
915
|
-
"CreateRuleOutput":{
|
916
|
-
"type":"structure",
|
917
|
-
"members":{
|
918
|
-
"Rules":{"shape":"Rules"}
|
919
|
-
}
|
920
|
-
},
|
921
|
-
"CreateTargetGroupInput":{
|
922
|
-
"type":"structure",
|
923
|
-
"required":["Name"],
|
924
|
-
"members":{
|
925
|
-
"Name":{"shape":"TargetGroupName"},
|
926
|
-
"Protocol":{"shape":"ProtocolEnum"},
|
927
|
-
"Port":{"shape":"Port"},
|
928
|
-
"VpcId":{"shape":"VpcId"},
|
929
|
-
"HealthCheckProtocol":{"shape":"ProtocolEnum"},
|
930
|
-
"HealthCheckPort":{"shape":"HealthCheckPort"},
|
931
|
-
"HealthCheckEnabled":{"shape":"HealthCheckEnabled"},
|
932
|
-
"HealthCheckPath":{"shape":"Path"},
|
933
|
-
"HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
|
934
|
-
"HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
|
935
|
-
"HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
936
|
-
"UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
937
|
-
"Matcher":{"shape":"Matcher"},
|
938
|
-
"TargetType":{"shape":"TargetTypeEnum"}
|
939
|
-
}
|
940
|
-
},
|
941
|
-
"CreateTargetGroupOutput":{
|
942
|
-
"type":"structure",
|
943
|
-
"members":{
|
944
|
-
"TargetGroups":{"shape":"TargetGroups"}
|
945
|
-
}
|
946
|
-
},
|
947
|
-
"CreatedTime":{"type":"timestamp"},
|
948
|
-
"DNSName":{"type":"string"},
|
949
|
-
"Default":{"type":"boolean"},
|
950
|
-
"DeleteListenerInput":{
|
951
|
-
"type":"structure",
|
952
|
-
"required":["ListenerArn"],
|
953
|
-
"members":{
|
954
|
-
"ListenerArn":{"shape":"ListenerArn"}
|
955
|
-
}
|
956
|
-
},
|
957
|
-
"DeleteListenerOutput":{
|
958
|
-
"type":"structure",
|
959
|
-
"members":{
|
960
|
-
}
|
961
|
-
},
|
962
|
-
"DeleteLoadBalancerInput":{
|
963
|
-
"type":"structure",
|
964
|
-
"required":["LoadBalancerArn"],
|
965
|
-
"members":{
|
966
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"}
|
967
|
-
}
|
968
|
-
},
|
969
|
-
"DeleteLoadBalancerOutput":{
|
970
|
-
"type":"structure",
|
971
|
-
"members":{
|
972
|
-
}
|
973
|
-
},
|
974
|
-
"DeleteRuleInput":{
|
975
|
-
"type":"structure",
|
976
|
-
"required":["RuleArn"],
|
977
|
-
"members":{
|
978
|
-
"RuleArn":{"shape":"RuleArn"}
|
979
|
-
}
|
980
|
-
},
|
981
|
-
"DeleteRuleOutput":{
|
982
|
-
"type":"structure",
|
983
|
-
"members":{
|
984
|
-
}
|
985
|
-
},
|
986
|
-
"DeleteTargetGroupInput":{
|
987
|
-
"type":"structure",
|
988
|
-
"required":["TargetGroupArn"],
|
989
|
-
"members":{
|
990
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"}
|
991
|
-
}
|
992
|
-
},
|
993
|
-
"DeleteTargetGroupOutput":{
|
994
|
-
"type":"structure",
|
995
|
-
"members":{
|
996
|
-
}
|
997
|
-
},
|
998
|
-
"DeregisterTargetsInput":{
|
999
|
-
"type":"structure",
|
1000
|
-
"required":[
|
1001
|
-
"TargetGroupArn",
|
1002
|
-
"Targets"
|
1003
|
-
],
|
1004
|
-
"members":{
|
1005
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
1006
|
-
"Targets":{"shape":"TargetDescriptions"}
|
1007
|
-
}
|
1008
|
-
},
|
1009
|
-
"DeregisterTargetsOutput":{
|
1010
|
-
"type":"structure",
|
1011
|
-
"members":{
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
"DescribeAccountLimitsInput":{
|
1015
|
-
"type":"structure",
|
1016
|
-
"members":{
|
1017
|
-
"Marker":{"shape":"Marker"},
|
1018
|
-
"PageSize":{"shape":"PageSize"}
|
1019
|
-
}
|
1020
|
-
},
|
1021
|
-
"DescribeAccountLimitsOutput":{
|
1022
|
-
"type":"structure",
|
1023
|
-
"members":{
|
1024
|
-
"Limits":{"shape":"Limits"},
|
1025
|
-
"NextMarker":{"shape":"Marker"}
|
1026
|
-
}
|
1027
|
-
},
|
1028
|
-
"DescribeListenerCertificatesInput":{
|
1029
|
-
"type":"structure",
|
1030
|
-
"required":["ListenerArn"],
|
1031
|
-
"members":{
|
1032
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
1033
|
-
"Marker":{"shape":"Marker"},
|
1034
|
-
"PageSize":{"shape":"PageSize"}
|
1035
|
-
}
|
1036
|
-
},
|
1037
|
-
"DescribeListenerCertificatesOutput":{
|
1038
|
-
"type":"structure",
|
1039
|
-
"members":{
|
1040
|
-
"Certificates":{"shape":"CertificateList"},
|
1041
|
-
"NextMarker":{"shape":"Marker"}
|
1042
|
-
}
|
1043
|
-
},
|
1044
|
-
"DescribeListenersInput":{
|
1045
|
-
"type":"structure",
|
1046
|
-
"members":{
|
1047
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1048
|
-
"ListenerArns":{"shape":"ListenerArns"},
|
1049
|
-
"Marker":{"shape":"Marker"},
|
1050
|
-
"PageSize":{"shape":"PageSize"}
|
1051
|
-
}
|
1052
|
-
},
|
1053
|
-
"DescribeListenersOutput":{
|
1054
|
-
"type":"structure",
|
1055
|
-
"members":{
|
1056
|
-
"Listeners":{"shape":"Listeners"},
|
1057
|
-
"NextMarker":{"shape":"Marker"}
|
1058
|
-
}
|
1059
|
-
},
|
1060
|
-
"DescribeLoadBalancerAttributesInput":{
|
1061
|
-
"type":"structure",
|
1062
|
-
"required":["LoadBalancerArn"],
|
1063
|
-
"members":{
|
1064
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"}
|
1065
|
-
}
|
1066
|
-
},
|
1067
|
-
"DescribeLoadBalancerAttributesOutput":{
|
1068
|
-
"type":"structure",
|
1069
|
-
"members":{
|
1070
|
-
"Attributes":{"shape":"LoadBalancerAttributes"}
|
1071
|
-
}
|
1072
|
-
},
|
1073
|
-
"DescribeLoadBalancersInput":{
|
1074
|
-
"type":"structure",
|
1075
|
-
"members":{
|
1076
|
-
"LoadBalancerArns":{"shape":"LoadBalancerArns"},
|
1077
|
-
"Names":{"shape":"LoadBalancerNames"},
|
1078
|
-
"Marker":{"shape":"Marker"},
|
1079
|
-
"PageSize":{"shape":"PageSize"}
|
1080
|
-
}
|
1081
|
-
},
|
1082
|
-
"DescribeLoadBalancersOutput":{
|
1083
|
-
"type":"structure",
|
1084
|
-
"members":{
|
1085
|
-
"LoadBalancers":{"shape":"LoadBalancers"},
|
1086
|
-
"NextMarker":{"shape":"Marker"}
|
1087
|
-
}
|
1088
|
-
},
|
1089
|
-
"DescribeRulesInput":{
|
1090
|
-
"type":"structure",
|
1091
|
-
"members":{
|
1092
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
1093
|
-
"RuleArns":{"shape":"RuleArns"},
|
1094
|
-
"Marker":{"shape":"Marker"},
|
1095
|
-
"PageSize":{"shape":"PageSize"}
|
1096
|
-
}
|
1097
|
-
},
|
1098
|
-
"DescribeRulesOutput":{
|
1099
|
-
"type":"structure",
|
1100
|
-
"members":{
|
1101
|
-
"Rules":{"shape":"Rules"},
|
1102
|
-
"NextMarker":{"shape":"Marker"}
|
1103
|
-
}
|
1104
|
-
},
|
1105
|
-
"DescribeSSLPoliciesInput":{
|
1106
|
-
"type":"structure",
|
1107
|
-
"members":{
|
1108
|
-
"Names":{"shape":"SslPolicyNames"},
|
1109
|
-
"Marker":{"shape":"Marker"},
|
1110
|
-
"PageSize":{"shape":"PageSize"}
|
1111
|
-
}
|
1112
|
-
},
|
1113
|
-
"DescribeSSLPoliciesOutput":{
|
1114
|
-
"type":"structure",
|
1115
|
-
"members":{
|
1116
|
-
"SslPolicies":{"shape":"SslPolicies"},
|
1117
|
-
"NextMarker":{"shape":"Marker"}
|
1118
|
-
}
|
1119
|
-
},
|
1120
|
-
"DescribeTagsInput":{
|
1121
|
-
"type":"structure",
|
1122
|
-
"required":["ResourceArns"],
|
1123
|
-
"members":{
|
1124
|
-
"ResourceArns":{"shape":"ResourceArns"}
|
1125
|
-
}
|
1126
|
-
},
|
1127
|
-
"DescribeTagsOutput":{
|
1128
|
-
"type":"structure",
|
1129
|
-
"members":{
|
1130
|
-
"TagDescriptions":{"shape":"TagDescriptions"}
|
1131
|
-
}
|
1132
|
-
},
|
1133
|
-
"DescribeTargetGroupAttributesInput":{
|
1134
|
-
"type":"structure",
|
1135
|
-
"required":["TargetGroupArn"],
|
1136
|
-
"members":{
|
1137
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"}
|
1138
|
-
}
|
1139
|
-
},
|
1140
|
-
"DescribeTargetGroupAttributesOutput":{
|
1141
|
-
"type":"structure",
|
1142
|
-
"members":{
|
1143
|
-
"Attributes":{"shape":"TargetGroupAttributes"}
|
1144
|
-
}
|
1145
|
-
},
|
1146
|
-
"DescribeTargetGroupsInput":{
|
1147
|
-
"type":"structure",
|
1148
|
-
"members":{
|
1149
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1150
|
-
"TargetGroupArns":{"shape":"TargetGroupArns"},
|
1151
|
-
"Names":{"shape":"TargetGroupNames"},
|
1152
|
-
"Marker":{"shape":"Marker"},
|
1153
|
-
"PageSize":{"shape":"PageSize"}
|
1154
|
-
}
|
1155
|
-
},
|
1156
|
-
"DescribeTargetGroupsOutput":{
|
1157
|
-
"type":"structure",
|
1158
|
-
"members":{
|
1159
|
-
"TargetGroups":{"shape":"TargetGroups"},
|
1160
|
-
"NextMarker":{"shape":"Marker"}
|
1161
|
-
}
|
1162
|
-
},
|
1163
|
-
"DescribeTargetHealthInput":{
|
1164
|
-
"type":"structure",
|
1165
|
-
"required":["TargetGroupArn"],
|
1166
|
-
"members":{
|
1167
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
1168
|
-
"Targets":{"shape":"TargetDescriptions"}
|
1169
|
-
}
|
1170
|
-
},
|
1171
|
-
"DescribeTargetHealthOutput":{
|
1172
|
-
"type":"structure",
|
1173
|
-
"members":{
|
1174
|
-
"TargetHealthDescriptions":{"shape":"TargetHealthDescriptions"}
|
1175
|
-
}
|
1176
|
-
},
|
1177
|
-
"Description":{"type":"string"},
|
1178
|
-
"DuplicateListenerException":{
|
1179
|
-
"type":"structure",
|
1180
|
-
"members":{
|
1181
|
-
},
|
1182
|
-
"error":{
|
1183
|
-
"code":"DuplicateListener",
|
1184
|
-
"httpStatusCode":400,
|
1185
|
-
"senderFault":true
|
1186
|
-
},
|
1187
|
-
"exception":true
|
1188
|
-
},
|
1189
|
-
"DuplicateLoadBalancerNameException":{
|
1190
|
-
"type":"structure",
|
1191
|
-
"members":{
|
1192
|
-
},
|
1193
|
-
"error":{
|
1194
|
-
"code":"DuplicateLoadBalancerName",
|
1195
|
-
"httpStatusCode":400,
|
1196
|
-
"senderFault":true
|
1197
|
-
},
|
1198
|
-
"exception":true
|
1199
|
-
},
|
1200
|
-
"DuplicateTagKeysException":{
|
1201
|
-
"type":"structure",
|
1202
|
-
"members":{
|
1203
|
-
},
|
1204
|
-
"error":{
|
1205
|
-
"code":"DuplicateTagKeys",
|
1206
|
-
"httpStatusCode":400,
|
1207
|
-
"senderFault":true
|
1208
|
-
},
|
1209
|
-
"exception":true
|
1210
|
-
},
|
1211
|
-
"DuplicateTargetGroupNameException":{
|
1212
|
-
"type":"structure",
|
1213
|
-
"members":{
|
1214
|
-
},
|
1215
|
-
"error":{
|
1216
|
-
"code":"DuplicateTargetGroupName",
|
1217
|
-
"httpStatusCode":400,
|
1218
|
-
"senderFault":true
|
1219
|
-
},
|
1220
|
-
"exception":true
|
1221
|
-
},
|
1222
|
-
"FixedResponseActionConfig":{
|
1223
|
-
"type":"structure",
|
1224
|
-
"required":["StatusCode"],
|
1225
|
-
"members":{
|
1226
|
-
"MessageBody":{"shape":"FixedResponseActionMessage"},
|
1227
|
-
"StatusCode":{"shape":"FixedResponseActionStatusCode"},
|
1228
|
-
"ContentType":{"shape":"FixedResponseActionContentType"}
|
1229
|
-
}
|
1230
|
-
},
|
1231
|
-
"FixedResponseActionContentType":{
|
1232
|
-
"type":"string",
|
1233
|
-
"max":32,
|
1234
|
-
"min":0
|
1235
|
-
},
|
1236
|
-
"FixedResponseActionMessage":{
|
1237
|
-
"type":"string",
|
1238
|
-
"max":1024,
|
1239
|
-
"min":0
|
1240
|
-
},
|
1241
|
-
"FixedResponseActionStatusCode":{
|
1242
|
-
"type":"string",
|
1243
|
-
"pattern":"^(2|4|5)\\d\\d$"
|
1244
|
-
},
|
1245
|
-
"HealthCheckEnabled":{"type":"boolean"},
|
1246
|
-
"HealthCheckIntervalSeconds":{
|
1247
|
-
"type":"integer",
|
1248
|
-
"max":300,
|
1249
|
-
"min":5
|
1250
|
-
},
|
1251
|
-
"HealthCheckPort":{"type":"string"},
|
1252
|
-
"HealthCheckThresholdCount":{
|
1253
|
-
"type":"integer",
|
1254
|
-
"max":10,
|
1255
|
-
"min":2
|
1256
|
-
},
|
1257
|
-
"HealthCheckTimeoutSeconds":{
|
1258
|
-
"type":"integer",
|
1259
|
-
"max":120,
|
1260
|
-
"min":2
|
1261
|
-
},
|
1262
|
-
"HealthUnavailableException":{
|
1263
|
-
"type":"structure",
|
1264
|
-
"members":{
|
1265
|
-
},
|
1266
|
-
"error":{
|
1267
|
-
"code":"HealthUnavailable",
|
1268
|
-
"httpStatusCode":500
|
1269
|
-
},
|
1270
|
-
"exception":true
|
1271
|
-
},
|
1272
|
-
"HostHeaderConditionConfig":{
|
1273
|
-
"type":"structure",
|
1274
|
-
"members":{
|
1275
|
-
"Values":{"shape":"ListOfString"}
|
1276
|
-
}
|
1277
|
-
},
|
1278
|
-
"HttpCode":{"type":"string"},
|
1279
|
-
"HttpHeaderConditionConfig":{
|
1280
|
-
"type":"structure",
|
1281
|
-
"members":{
|
1282
|
-
"HttpHeaderName":{"shape":"HttpHeaderConditionName"},
|
1283
|
-
"Values":{"shape":"ListOfString"}
|
1284
|
-
}
|
1285
|
-
},
|
1286
|
-
"HttpHeaderConditionName":{"type":"string"},
|
1287
|
-
"HttpRequestMethodConditionConfig":{
|
1288
|
-
"type":"structure",
|
1289
|
-
"members":{
|
1290
|
-
"Values":{"shape":"ListOfString"}
|
1291
|
-
}
|
1292
|
-
},
|
1293
|
-
"IncompatibleProtocolsException":{
|
1294
|
-
"type":"structure",
|
1295
|
-
"members":{
|
1296
|
-
},
|
1297
|
-
"error":{
|
1298
|
-
"code":"IncompatibleProtocols",
|
1299
|
-
"httpStatusCode":400,
|
1300
|
-
"senderFault":true
|
1301
|
-
},
|
1302
|
-
"exception":true
|
1303
|
-
},
|
1304
|
-
"InvalidConfigurationRequestException":{
|
1305
|
-
"type":"structure",
|
1306
|
-
"members":{
|
1307
|
-
},
|
1308
|
-
"error":{
|
1309
|
-
"code":"InvalidConfigurationRequest",
|
1310
|
-
"httpStatusCode":400,
|
1311
|
-
"senderFault":true
|
1312
|
-
},
|
1313
|
-
"exception":true
|
1314
|
-
},
|
1315
|
-
"InvalidLoadBalancerActionException":{
|
1316
|
-
"type":"structure",
|
1317
|
-
"members":{
|
1318
|
-
},
|
1319
|
-
"error":{
|
1320
|
-
"code":"InvalidLoadBalancerAction",
|
1321
|
-
"httpStatusCode":400,
|
1322
|
-
"senderFault":true
|
1323
|
-
},
|
1324
|
-
"exception":true
|
1325
|
-
},
|
1326
|
-
"InvalidSchemeException":{
|
1327
|
-
"type":"structure",
|
1328
|
-
"members":{
|
1329
|
-
},
|
1330
|
-
"error":{
|
1331
|
-
"code":"InvalidScheme",
|
1332
|
-
"httpStatusCode":400,
|
1333
|
-
"senderFault":true
|
1334
|
-
},
|
1335
|
-
"exception":true
|
1336
|
-
},
|
1337
|
-
"InvalidSecurityGroupException":{
|
1338
|
-
"type":"structure",
|
1339
|
-
"members":{
|
1340
|
-
},
|
1341
|
-
"error":{
|
1342
|
-
"code":"InvalidSecurityGroup",
|
1343
|
-
"httpStatusCode":400,
|
1344
|
-
"senderFault":true
|
1345
|
-
},
|
1346
|
-
"exception":true
|
1347
|
-
},
|
1348
|
-
"InvalidSubnetException":{
|
1349
|
-
"type":"structure",
|
1350
|
-
"members":{
|
1351
|
-
},
|
1352
|
-
"error":{
|
1353
|
-
"code":"InvalidSubnet",
|
1354
|
-
"httpStatusCode":400,
|
1355
|
-
"senderFault":true
|
1356
|
-
},
|
1357
|
-
"exception":true
|
1358
|
-
},
|
1359
|
-
"InvalidTargetException":{
|
1360
|
-
"type":"structure",
|
1361
|
-
"members":{
|
1362
|
-
},
|
1363
|
-
"error":{
|
1364
|
-
"code":"InvalidTarget",
|
1365
|
-
"httpStatusCode":400,
|
1366
|
-
"senderFault":true
|
1367
|
-
},
|
1368
|
-
"exception":true
|
1369
|
-
},
|
1370
|
-
"IpAddress":{"type":"string"},
|
1371
|
-
"IpAddressType":{
|
1372
|
-
"type":"string",
|
1373
|
-
"enum":[
|
1374
|
-
"ipv4",
|
1375
|
-
"dualstack"
|
1376
|
-
]
|
1377
|
-
},
|
1378
|
-
"IsDefault":{"type":"boolean"},
|
1379
|
-
"Limit":{
|
1380
|
-
"type":"structure",
|
1381
|
-
"members":{
|
1382
|
-
"Name":{"shape":"Name"},
|
1383
|
-
"Max":{"shape":"Max"}
|
1384
|
-
}
|
1385
|
-
},
|
1386
|
-
"Limits":{
|
1387
|
-
"type":"list",
|
1388
|
-
"member":{"shape":"Limit"}
|
1389
|
-
},
|
1390
|
-
"ListOfString":{
|
1391
|
-
"type":"list",
|
1392
|
-
"member":{"shape":"StringValue"}
|
1393
|
-
},
|
1394
|
-
"Listener":{
|
1395
|
-
"type":"structure",
|
1396
|
-
"members":{
|
1397
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
1398
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1399
|
-
"Port":{"shape":"Port"},
|
1400
|
-
"Protocol":{"shape":"ProtocolEnum"},
|
1401
|
-
"Certificates":{"shape":"CertificateList"},
|
1402
|
-
"SslPolicy":{"shape":"SslPolicyName"},
|
1403
|
-
"DefaultActions":{"shape":"Actions"}
|
1404
|
-
}
|
1405
|
-
},
|
1406
|
-
"ListenerArn":{"type":"string"},
|
1407
|
-
"ListenerArns":{
|
1408
|
-
"type":"list",
|
1409
|
-
"member":{"shape":"ListenerArn"}
|
1410
|
-
},
|
1411
|
-
"ListenerNotFoundException":{
|
1412
|
-
"type":"structure",
|
1413
|
-
"members":{
|
1414
|
-
},
|
1415
|
-
"error":{
|
1416
|
-
"code":"ListenerNotFound",
|
1417
|
-
"httpStatusCode":400,
|
1418
|
-
"senderFault":true
|
1419
|
-
},
|
1420
|
-
"exception":true
|
1421
|
-
},
|
1422
|
-
"Listeners":{
|
1423
|
-
"type":"list",
|
1424
|
-
"member":{"shape":"Listener"}
|
1425
|
-
},
|
1426
|
-
"LoadBalancer":{
|
1427
|
-
"type":"structure",
|
1428
|
-
"members":{
|
1429
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1430
|
-
"DNSName":{"shape":"DNSName"},
|
1431
|
-
"CanonicalHostedZoneId":{"shape":"CanonicalHostedZoneId"},
|
1432
|
-
"CreatedTime":{"shape":"CreatedTime"},
|
1433
|
-
"LoadBalancerName":{"shape":"LoadBalancerName"},
|
1434
|
-
"Scheme":{"shape":"LoadBalancerSchemeEnum"},
|
1435
|
-
"VpcId":{"shape":"VpcId"},
|
1436
|
-
"State":{"shape":"LoadBalancerState"},
|
1437
|
-
"Type":{"shape":"LoadBalancerTypeEnum"},
|
1438
|
-
"AvailabilityZones":{"shape":"AvailabilityZones"},
|
1439
|
-
"SecurityGroups":{"shape":"SecurityGroups"},
|
1440
|
-
"IpAddressType":{"shape":"IpAddressType"}
|
1441
|
-
}
|
1442
|
-
},
|
1443
|
-
"LoadBalancerAddress":{
|
1444
|
-
"type":"structure",
|
1445
|
-
"members":{
|
1446
|
-
"IpAddress":{"shape":"IpAddress"},
|
1447
|
-
"AllocationId":{"shape":"AllocationId"}
|
1448
|
-
}
|
1449
|
-
},
|
1450
|
-
"LoadBalancerAddresses":{
|
1451
|
-
"type":"list",
|
1452
|
-
"member":{"shape":"LoadBalancerAddress"}
|
1453
|
-
},
|
1454
|
-
"LoadBalancerArn":{"type":"string"},
|
1455
|
-
"LoadBalancerArns":{
|
1456
|
-
"type":"list",
|
1457
|
-
"member":{"shape":"LoadBalancerArn"}
|
1458
|
-
},
|
1459
|
-
"LoadBalancerAttribute":{
|
1460
|
-
"type":"structure",
|
1461
|
-
"members":{
|
1462
|
-
"Key":{"shape":"LoadBalancerAttributeKey"},
|
1463
|
-
"Value":{"shape":"LoadBalancerAttributeValue"}
|
1464
|
-
}
|
1465
|
-
},
|
1466
|
-
"LoadBalancerAttributeKey":{
|
1467
|
-
"type":"string",
|
1468
|
-
"max":256,
|
1469
|
-
"pattern":"^[a-zA-Z0-9._]+$"
|
1470
|
-
},
|
1471
|
-
"LoadBalancerAttributeValue":{
|
1472
|
-
"type":"string",
|
1473
|
-
"max":1024
|
1474
|
-
},
|
1475
|
-
"LoadBalancerAttributes":{
|
1476
|
-
"type":"list",
|
1477
|
-
"member":{"shape":"LoadBalancerAttribute"},
|
1478
|
-
"max":20
|
1479
|
-
},
|
1480
|
-
"LoadBalancerName":{"type":"string"},
|
1481
|
-
"LoadBalancerNames":{
|
1482
|
-
"type":"list",
|
1483
|
-
"member":{"shape":"LoadBalancerName"}
|
1484
|
-
},
|
1485
|
-
"LoadBalancerNotFoundException":{
|
1486
|
-
"type":"structure",
|
1487
|
-
"members":{
|
1488
|
-
},
|
1489
|
-
"error":{
|
1490
|
-
"code":"LoadBalancerNotFound",
|
1491
|
-
"httpStatusCode":400,
|
1492
|
-
"senderFault":true
|
1493
|
-
},
|
1494
|
-
"exception":true
|
1495
|
-
},
|
1496
|
-
"LoadBalancerSchemeEnum":{
|
1497
|
-
"type":"string",
|
1498
|
-
"enum":[
|
1499
|
-
"internet-facing",
|
1500
|
-
"internal"
|
1501
|
-
]
|
1502
|
-
},
|
1503
|
-
"LoadBalancerState":{
|
1504
|
-
"type":"structure",
|
1505
|
-
"members":{
|
1506
|
-
"Code":{"shape":"LoadBalancerStateEnum"},
|
1507
|
-
"Reason":{"shape":"StateReason"}
|
1508
|
-
}
|
1509
|
-
},
|
1510
|
-
"LoadBalancerStateEnum":{
|
1511
|
-
"type":"string",
|
1512
|
-
"enum":[
|
1513
|
-
"active",
|
1514
|
-
"provisioning",
|
1515
|
-
"active_impaired",
|
1516
|
-
"failed"
|
1517
|
-
]
|
1518
|
-
},
|
1519
|
-
"LoadBalancerTypeEnum":{
|
1520
|
-
"type":"string",
|
1521
|
-
"enum":[
|
1522
|
-
"application",
|
1523
|
-
"network"
|
1524
|
-
]
|
1525
|
-
},
|
1526
|
-
"LoadBalancers":{
|
1527
|
-
"type":"list",
|
1528
|
-
"member":{"shape":"LoadBalancer"}
|
1529
|
-
},
|
1530
|
-
"Marker":{"type":"string"},
|
1531
|
-
"Matcher":{
|
1532
|
-
"type":"structure",
|
1533
|
-
"required":["HttpCode"],
|
1534
|
-
"members":{
|
1535
|
-
"HttpCode":{"shape":"HttpCode"}
|
1536
|
-
}
|
1537
|
-
},
|
1538
|
-
"Max":{"type":"string"},
|
1539
|
-
"ModifyListenerInput":{
|
1540
|
-
"type":"structure",
|
1541
|
-
"required":["ListenerArn"],
|
1542
|
-
"members":{
|
1543
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
1544
|
-
"Port":{"shape":"Port"},
|
1545
|
-
"Protocol":{"shape":"ProtocolEnum"},
|
1546
|
-
"SslPolicy":{"shape":"SslPolicyName"},
|
1547
|
-
"Certificates":{"shape":"CertificateList"},
|
1548
|
-
"DefaultActions":{"shape":"Actions"}
|
1549
|
-
}
|
1550
|
-
},
|
1551
|
-
"ModifyListenerOutput":{
|
1552
|
-
"type":"structure",
|
1553
|
-
"members":{
|
1554
|
-
"Listeners":{"shape":"Listeners"}
|
1555
|
-
}
|
1556
|
-
},
|
1557
|
-
"ModifyLoadBalancerAttributesInput":{
|
1558
|
-
"type":"structure",
|
1559
|
-
"required":[
|
1560
|
-
"LoadBalancerArn",
|
1561
|
-
"Attributes"
|
1562
|
-
],
|
1563
|
-
"members":{
|
1564
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1565
|
-
"Attributes":{"shape":"LoadBalancerAttributes"}
|
1566
|
-
}
|
1567
|
-
},
|
1568
|
-
"ModifyLoadBalancerAttributesOutput":{
|
1569
|
-
"type":"structure",
|
1570
|
-
"members":{
|
1571
|
-
"Attributes":{"shape":"LoadBalancerAttributes"}
|
1572
|
-
}
|
1573
|
-
},
|
1574
|
-
"ModifyRuleInput":{
|
1575
|
-
"type":"structure",
|
1576
|
-
"required":["RuleArn"],
|
1577
|
-
"members":{
|
1578
|
-
"RuleArn":{"shape":"RuleArn"},
|
1579
|
-
"Conditions":{"shape":"RuleConditionList"},
|
1580
|
-
"Actions":{"shape":"Actions"}
|
1581
|
-
}
|
1582
|
-
},
|
1583
|
-
"ModifyRuleOutput":{
|
1584
|
-
"type":"structure",
|
1585
|
-
"members":{
|
1586
|
-
"Rules":{"shape":"Rules"}
|
1587
|
-
}
|
1588
|
-
},
|
1589
|
-
"ModifyTargetGroupAttributesInput":{
|
1590
|
-
"type":"structure",
|
1591
|
-
"required":[
|
1592
|
-
"TargetGroupArn",
|
1593
|
-
"Attributes"
|
1594
|
-
],
|
1595
|
-
"members":{
|
1596
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
1597
|
-
"Attributes":{"shape":"TargetGroupAttributes"}
|
1598
|
-
}
|
1599
|
-
},
|
1600
|
-
"ModifyTargetGroupAttributesOutput":{
|
1601
|
-
"type":"structure",
|
1602
|
-
"members":{
|
1603
|
-
"Attributes":{"shape":"TargetGroupAttributes"}
|
1604
|
-
}
|
1605
|
-
},
|
1606
|
-
"ModifyTargetGroupInput":{
|
1607
|
-
"type":"structure",
|
1608
|
-
"required":["TargetGroupArn"],
|
1609
|
-
"members":{
|
1610
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
1611
|
-
"HealthCheckProtocol":{"shape":"ProtocolEnum"},
|
1612
|
-
"HealthCheckPort":{"shape":"HealthCheckPort"},
|
1613
|
-
"HealthCheckPath":{"shape":"Path"},
|
1614
|
-
"HealthCheckEnabled":{"shape":"HealthCheckEnabled"},
|
1615
|
-
"HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
|
1616
|
-
"HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
|
1617
|
-
"HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
1618
|
-
"UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
1619
|
-
"Matcher":{"shape":"Matcher"}
|
1620
|
-
}
|
1621
|
-
},
|
1622
|
-
"ModifyTargetGroupOutput":{
|
1623
|
-
"type":"structure",
|
1624
|
-
"members":{
|
1625
|
-
"TargetGroups":{"shape":"TargetGroups"}
|
1626
|
-
}
|
1627
|
-
},
|
1628
|
-
"Name":{"type":"string"},
|
1629
|
-
"OperationNotPermittedException":{
|
1630
|
-
"type":"structure",
|
1631
|
-
"members":{
|
1632
|
-
},
|
1633
|
-
"error":{
|
1634
|
-
"code":"OperationNotPermitted",
|
1635
|
-
"httpStatusCode":400,
|
1636
|
-
"senderFault":true
|
1637
|
-
},
|
1638
|
-
"exception":true
|
1639
|
-
},
|
1640
|
-
"PageSize":{
|
1641
|
-
"type":"integer",
|
1642
|
-
"max":400,
|
1643
|
-
"min":1
|
1644
|
-
},
|
1645
|
-
"Path":{
|
1646
|
-
"type":"string",
|
1647
|
-
"max":1024,
|
1648
|
-
"min":1
|
1649
|
-
},
|
1650
|
-
"PathPatternConditionConfig":{
|
1651
|
-
"type":"structure",
|
1652
|
-
"members":{
|
1653
|
-
"Values":{"shape":"ListOfString"}
|
1654
|
-
}
|
1655
|
-
},
|
1656
|
-
"Port":{
|
1657
|
-
"type":"integer",
|
1658
|
-
"max":65535,
|
1659
|
-
"min":1
|
1660
|
-
},
|
1661
|
-
"PriorityInUseException":{
|
1662
|
-
"type":"structure",
|
1663
|
-
"members":{
|
1664
|
-
},
|
1665
|
-
"error":{
|
1666
|
-
"code":"PriorityInUse",
|
1667
|
-
"httpStatusCode":400,
|
1668
|
-
"senderFault":true
|
1669
|
-
},
|
1670
|
-
"exception":true
|
1671
|
-
},
|
1672
|
-
"ProtocolEnum":{
|
1673
|
-
"type":"string",
|
1674
|
-
"enum":[
|
1675
|
-
"HTTP",
|
1676
|
-
"HTTPS",
|
1677
|
-
"TCP",
|
1678
|
-
"TLS",
|
1679
|
-
"UDP",
|
1680
|
-
"TCP_UDP"
|
1681
|
-
]
|
1682
|
-
},
|
1683
|
-
"QueryStringConditionConfig":{
|
1684
|
-
"type":"structure",
|
1685
|
-
"members":{
|
1686
|
-
"Values":{"shape":"QueryStringKeyValuePairList"}
|
1687
|
-
}
|
1688
|
-
},
|
1689
|
-
"QueryStringKeyValuePair":{
|
1690
|
-
"type":"structure",
|
1691
|
-
"members":{
|
1692
|
-
"Key":{"shape":"StringValue"},
|
1693
|
-
"Value":{"shape":"StringValue"}
|
1694
|
-
}
|
1695
|
-
},
|
1696
|
-
"QueryStringKeyValuePairList":{
|
1697
|
-
"type":"list",
|
1698
|
-
"member":{"shape":"QueryStringKeyValuePair"}
|
1699
|
-
},
|
1700
|
-
"RedirectActionConfig":{
|
1701
|
-
"type":"structure",
|
1702
|
-
"required":["StatusCode"],
|
1703
|
-
"members":{
|
1704
|
-
"Protocol":{"shape":"RedirectActionProtocol"},
|
1705
|
-
"Port":{"shape":"RedirectActionPort"},
|
1706
|
-
"Host":{"shape":"RedirectActionHost"},
|
1707
|
-
"Path":{"shape":"RedirectActionPath"},
|
1708
|
-
"Query":{"shape":"RedirectActionQuery"},
|
1709
|
-
"StatusCode":{"shape":"RedirectActionStatusCodeEnum"}
|
1710
|
-
}
|
1711
|
-
},
|
1712
|
-
"RedirectActionHost":{
|
1713
|
-
"type":"string",
|
1714
|
-
"max":128,
|
1715
|
-
"min":1
|
1716
|
-
},
|
1717
|
-
"RedirectActionPath":{
|
1718
|
-
"type":"string",
|
1719
|
-
"max":128,
|
1720
|
-
"min":1
|
1721
|
-
},
|
1722
|
-
"RedirectActionPort":{"type":"string"},
|
1723
|
-
"RedirectActionProtocol":{
|
1724
|
-
"type":"string",
|
1725
|
-
"pattern":"^(HTTPS?|#\\{protocol\\})$"
|
1726
|
-
},
|
1727
|
-
"RedirectActionQuery":{
|
1728
|
-
"type":"string",
|
1729
|
-
"max":128,
|
1730
|
-
"min":0
|
1731
|
-
},
|
1732
|
-
"RedirectActionStatusCodeEnum":{
|
1733
|
-
"type":"string",
|
1734
|
-
"enum":[
|
1735
|
-
"HTTP_301",
|
1736
|
-
"HTTP_302"
|
1737
|
-
]
|
1738
|
-
},
|
1739
|
-
"RegisterTargetsInput":{
|
1740
|
-
"type":"structure",
|
1741
|
-
"required":[
|
1742
|
-
"TargetGroupArn",
|
1743
|
-
"Targets"
|
1744
|
-
],
|
1745
|
-
"members":{
|
1746
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
1747
|
-
"Targets":{"shape":"TargetDescriptions"}
|
1748
|
-
}
|
1749
|
-
},
|
1750
|
-
"RegisterTargetsOutput":{
|
1751
|
-
"type":"structure",
|
1752
|
-
"members":{
|
1753
|
-
}
|
1754
|
-
},
|
1755
|
-
"RemoveListenerCertificatesInput":{
|
1756
|
-
"type":"structure",
|
1757
|
-
"required":[
|
1758
|
-
"ListenerArn",
|
1759
|
-
"Certificates"
|
1760
|
-
],
|
1761
|
-
"members":{
|
1762
|
-
"ListenerArn":{"shape":"ListenerArn"},
|
1763
|
-
"Certificates":{"shape":"CertificateList"}
|
1764
|
-
}
|
1765
|
-
},
|
1766
|
-
"RemoveListenerCertificatesOutput":{
|
1767
|
-
"type":"structure",
|
1768
|
-
"members":{
|
1769
|
-
}
|
1770
|
-
},
|
1771
|
-
"RemoveTagsInput":{
|
1772
|
-
"type":"structure",
|
1773
|
-
"required":[
|
1774
|
-
"ResourceArns",
|
1775
|
-
"TagKeys"
|
1776
|
-
],
|
1777
|
-
"members":{
|
1778
|
-
"ResourceArns":{"shape":"ResourceArns"},
|
1779
|
-
"TagKeys":{"shape":"TagKeys"}
|
1780
|
-
}
|
1781
|
-
},
|
1782
|
-
"RemoveTagsOutput":{
|
1783
|
-
"type":"structure",
|
1784
|
-
"members":{
|
1785
|
-
}
|
1786
|
-
},
|
1787
|
-
"ResourceArn":{"type":"string"},
|
1788
|
-
"ResourceArns":{
|
1789
|
-
"type":"list",
|
1790
|
-
"member":{"shape":"ResourceArn"}
|
1791
|
-
},
|
1792
|
-
"ResourceInUseException":{
|
1793
|
-
"type":"structure",
|
1794
|
-
"members":{
|
1795
|
-
},
|
1796
|
-
"error":{
|
1797
|
-
"code":"ResourceInUse",
|
1798
|
-
"httpStatusCode":400,
|
1799
|
-
"senderFault":true
|
1800
|
-
},
|
1801
|
-
"exception":true
|
1802
|
-
},
|
1803
|
-
"Rule":{
|
1804
|
-
"type":"structure",
|
1805
|
-
"members":{
|
1806
|
-
"RuleArn":{"shape":"RuleArn"},
|
1807
|
-
"Priority":{"shape":"String"},
|
1808
|
-
"Conditions":{"shape":"RuleConditionList"},
|
1809
|
-
"Actions":{"shape":"Actions"},
|
1810
|
-
"IsDefault":{"shape":"IsDefault"}
|
1811
|
-
}
|
1812
|
-
},
|
1813
|
-
"RuleArn":{"type":"string"},
|
1814
|
-
"RuleArns":{
|
1815
|
-
"type":"list",
|
1816
|
-
"member":{"shape":"RuleArn"}
|
1817
|
-
},
|
1818
|
-
"RuleCondition":{
|
1819
|
-
"type":"structure",
|
1820
|
-
"members":{
|
1821
|
-
"Field":{"shape":"ConditionFieldName"},
|
1822
|
-
"Values":{"shape":"ListOfString"},
|
1823
|
-
"HostHeaderConfig":{"shape":"HostHeaderConditionConfig"},
|
1824
|
-
"PathPatternConfig":{"shape":"PathPatternConditionConfig"},
|
1825
|
-
"HttpHeaderConfig":{"shape":"HttpHeaderConditionConfig"},
|
1826
|
-
"QueryStringConfig":{"shape":"QueryStringConditionConfig"},
|
1827
|
-
"HttpRequestMethodConfig":{"shape":"HttpRequestMethodConditionConfig"},
|
1828
|
-
"SourceIpConfig":{"shape":"SourceIpConditionConfig"}
|
1829
|
-
}
|
1830
|
-
},
|
1831
|
-
"RuleConditionList":{
|
1832
|
-
"type":"list",
|
1833
|
-
"member":{"shape":"RuleCondition"}
|
1834
|
-
},
|
1835
|
-
"RuleNotFoundException":{
|
1836
|
-
"type":"structure",
|
1837
|
-
"members":{
|
1838
|
-
},
|
1839
|
-
"error":{
|
1840
|
-
"code":"RuleNotFound",
|
1841
|
-
"httpStatusCode":400,
|
1842
|
-
"senderFault":true
|
1843
|
-
},
|
1844
|
-
"exception":true
|
1845
|
-
},
|
1846
|
-
"RulePriority":{
|
1847
|
-
"type":"integer",
|
1848
|
-
"max":50000,
|
1849
|
-
"min":1
|
1850
|
-
},
|
1851
|
-
"RulePriorityList":{
|
1852
|
-
"type":"list",
|
1853
|
-
"member":{"shape":"RulePriorityPair"}
|
1854
|
-
},
|
1855
|
-
"RulePriorityPair":{
|
1856
|
-
"type":"structure",
|
1857
|
-
"members":{
|
1858
|
-
"RuleArn":{"shape":"RuleArn"},
|
1859
|
-
"Priority":{"shape":"RulePriority"}
|
1860
|
-
}
|
1861
|
-
},
|
1862
|
-
"Rules":{
|
1863
|
-
"type":"list",
|
1864
|
-
"member":{"shape":"Rule"}
|
1865
|
-
},
|
1866
|
-
"SSLPolicyNotFoundException":{
|
1867
|
-
"type":"structure",
|
1868
|
-
"members":{
|
1869
|
-
},
|
1870
|
-
"error":{
|
1871
|
-
"code":"SSLPolicyNotFound",
|
1872
|
-
"httpStatusCode":400,
|
1873
|
-
"senderFault":true
|
1874
|
-
},
|
1875
|
-
"exception":true
|
1876
|
-
},
|
1877
|
-
"SecurityGroupId":{"type":"string"},
|
1878
|
-
"SecurityGroups":{
|
1879
|
-
"type":"list",
|
1880
|
-
"member":{"shape":"SecurityGroupId"}
|
1881
|
-
},
|
1882
|
-
"SetIpAddressTypeInput":{
|
1883
|
-
"type":"structure",
|
1884
|
-
"required":[
|
1885
|
-
"LoadBalancerArn",
|
1886
|
-
"IpAddressType"
|
1887
|
-
],
|
1888
|
-
"members":{
|
1889
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1890
|
-
"IpAddressType":{"shape":"IpAddressType"}
|
1891
|
-
}
|
1892
|
-
},
|
1893
|
-
"SetIpAddressTypeOutput":{
|
1894
|
-
"type":"structure",
|
1895
|
-
"members":{
|
1896
|
-
"IpAddressType":{"shape":"IpAddressType"}
|
1897
|
-
}
|
1898
|
-
},
|
1899
|
-
"SetRulePrioritiesInput":{
|
1900
|
-
"type":"structure",
|
1901
|
-
"required":["RulePriorities"],
|
1902
|
-
"members":{
|
1903
|
-
"RulePriorities":{"shape":"RulePriorityList"}
|
1904
|
-
}
|
1905
|
-
},
|
1906
|
-
"SetRulePrioritiesOutput":{
|
1907
|
-
"type":"structure",
|
1908
|
-
"members":{
|
1909
|
-
"Rules":{"shape":"Rules"}
|
1910
|
-
}
|
1911
|
-
},
|
1912
|
-
"SetSecurityGroupsInput":{
|
1913
|
-
"type":"structure",
|
1914
|
-
"required":[
|
1915
|
-
"LoadBalancerArn",
|
1916
|
-
"SecurityGroups"
|
1917
|
-
],
|
1918
|
-
"members":{
|
1919
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1920
|
-
"SecurityGroups":{"shape":"SecurityGroups"}
|
1921
|
-
}
|
1922
|
-
},
|
1923
|
-
"SetSecurityGroupsOutput":{
|
1924
|
-
"type":"structure",
|
1925
|
-
"members":{
|
1926
|
-
"SecurityGroupIds":{"shape":"SecurityGroups"}
|
1927
|
-
}
|
1928
|
-
},
|
1929
|
-
"SetSubnetsInput":{
|
1930
|
-
"type":"structure",
|
1931
|
-
"required":["LoadBalancerArn"],
|
1932
|
-
"members":{
|
1933
|
-
"LoadBalancerArn":{"shape":"LoadBalancerArn"},
|
1934
|
-
"Subnets":{"shape":"Subnets"},
|
1935
|
-
"SubnetMappings":{"shape":"SubnetMappings"}
|
1936
|
-
}
|
1937
|
-
},
|
1938
|
-
"SetSubnetsOutput":{
|
1939
|
-
"type":"structure",
|
1940
|
-
"members":{
|
1941
|
-
"AvailabilityZones":{"shape":"AvailabilityZones"}
|
1942
|
-
}
|
1943
|
-
},
|
1944
|
-
"SourceIpConditionConfig":{
|
1945
|
-
"type":"structure",
|
1946
|
-
"members":{
|
1947
|
-
"Values":{"shape":"ListOfString"}
|
1948
|
-
}
|
1949
|
-
},
|
1950
|
-
"SslPolicies":{
|
1951
|
-
"type":"list",
|
1952
|
-
"member":{"shape":"SslPolicy"}
|
1953
|
-
},
|
1954
|
-
"SslPolicy":{
|
1955
|
-
"type":"structure",
|
1956
|
-
"members":{
|
1957
|
-
"SslProtocols":{"shape":"SslProtocols"},
|
1958
|
-
"Ciphers":{"shape":"Ciphers"},
|
1959
|
-
"Name":{"shape":"SslPolicyName"}
|
1960
|
-
}
|
1961
|
-
},
|
1962
|
-
"SslPolicyName":{"type":"string"},
|
1963
|
-
"SslPolicyNames":{
|
1964
|
-
"type":"list",
|
1965
|
-
"member":{"shape":"SslPolicyName"}
|
1966
|
-
},
|
1967
|
-
"SslProtocol":{"type":"string"},
|
1968
|
-
"SslProtocols":{
|
1969
|
-
"type":"list",
|
1970
|
-
"member":{"shape":"SslProtocol"}
|
1971
|
-
},
|
1972
|
-
"StateReason":{"type":"string"},
|
1973
|
-
"String":{"type":"string"},
|
1974
|
-
"StringValue":{"type":"string"},
|
1975
|
-
"SubnetId":{"type":"string"},
|
1976
|
-
"SubnetMapping":{
|
1977
|
-
"type":"structure",
|
1978
|
-
"members":{
|
1979
|
-
"SubnetId":{"shape":"SubnetId"},
|
1980
|
-
"AllocationId":{"shape":"AllocationId"}
|
1981
|
-
}
|
1982
|
-
},
|
1983
|
-
"SubnetMappings":{
|
1984
|
-
"type":"list",
|
1985
|
-
"member":{"shape":"SubnetMapping"}
|
1986
|
-
},
|
1987
|
-
"SubnetNotFoundException":{
|
1988
|
-
"type":"structure",
|
1989
|
-
"members":{
|
1990
|
-
},
|
1991
|
-
"error":{
|
1992
|
-
"code":"SubnetNotFound",
|
1993
|
-
"httpStatusCode":400,
|
1994
|
-
"senderFault":true
|
1995
|
-
},
|
1996
|
-
"exception":true
|
1997
|
-
},
|
1998
|
-
"Subnets":{
|
1999
|
-
"type":"list",
|
2000
|
-
"member":{"shape":"SubnetId"}
|
2001
|
-
},
|
2002
|
-
"Tag":{
|
2003
|
-
"type":"structure",
|
2004
|
-
"required":["Key"],
|
2005
|
-
"members":{
|
2006
|
-
"Key":{"shape":"TagKey"},
|
2007
|
-
"Value":{"shape":"TagValue"}
|
2008
|
-
}
|
2009
|
-
},
|
2010
|
-
"TagDescription":{
|
2011
|
-
"type":"structure",
|
2012
|
-
"members":{
|
2013
|
-
"ResourceArn":{"shape":"ResourceArn"},
|
2014
|
-
"Tags":{"shape":"TagList"}
|
2015
|
-
}
|
2016
|
-
},
|
2017
|
-
"TagDescriptions":{
|
2018
|
-
"type":"list",
|
2019
|
-
"member":{"shape":"TagDescription"}
|
2020
|
-
},
|
2021
|
-
"TagKey":{
|
2022
|
-
"type":"string",
|
2023
|
-
"max":128,
|
2024
|
-
"min":1,
|
2025
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
2026
|
-
},
|
2027
|
-
"TagKeys":{
|
2028
|
-
"type":"list",
|
2029
|
-
"member":{"shape":"TagKey"}
|
2030
|
-
},
|
2031
|
-
"TagList":{
|
2032
|
-
"type":"list",
|
2033
|
-
"member":{"shape":"Tag"},
|
2034
|
-
"min":1
|
2035
|
-
},
|
2036
|
-
"TagValue":{
|
2037
|
-
"type":"string",
|
2038
|
-
"max":256,
|
2039
|
-
"min":0,
|
2040
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
2041
|
-
},
|
2042
|
-
"TargetDescription":{
|
2043
|
-
"type":"structure",
|
2044
|
-
"required":["Id"],
|
2045
|
-
"members":{
|
2046
|
-
"Id":{"shape":"TargetId"},
|
2047
|
-
"Port":{"shape":"Port"},
|
2048
|
-
"AvailabilityZone":{"shape":"ZoneName"}
|
2049
|
-
}
|
2050
|
-
},
|
2051
|
-
"TargetDescriptions":{
|
2052
|
-
"type":"list",
|
2053
|
-
"member":{"shape":"TargetDescription"}
|
2054
|
-
},
|
2055
|
-
"TargetGroup":{
|
2056
|
-
"type":"structure",
|
2057
|
-
"members":{
|
2058
|
-
"TargetGroupArn":{"shape":"TargetGroupArn"},
|
2059
|
-
"TargetGroupName":{"shape":"TargetGroupName"},
|
2060
|
-
"Protocol":{"shape":"ProtocolEnum"},
|
2061
|
-
"Port":{"shape":"Port"},
|
2062
|
-
"VpcId":{"shape":"VpcId"},
|
2063
|
-
"HealthCheckProtocol":{"shape":"ProtocolEnum"},
|
2064
|
-
"HealthCheckPort":{"shape":"HealthCheckPort"},
|
2065
|
-
"HealthCheckEnabled":{"shape":"HealthCheckEnabled"},
|
2066
|
-
"HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
|
2067
|
-
"HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
|
2068
|
-
"HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
2069
|
-
"UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
|
2070
|
-
"HealthCheckPath":{"shape":"Path"},
|
2071
|
-
"Matcher":{"shape":"Matcher"},
|
2072
|
-
"LoadBalancerArns":{"shape":"LoadBalancerArns"},
|
2073
|
-
"TargetType":{"shape":"TargetTypeEnum"}
|
2074
|
-
}
|
2075
|
-
},
|
2076
|
-
"TargetGroupArn":{"type":"string"},
|
2077
|
-
"TargetGroupArns":{
|
2078
|
-
"type":"list",
|
2079
|
-
"member":{"shape":"TargetGroupArn"}
|
2080
|
-
},
|
2081
|
-
"TargetGroupAssociationLimitException":{
|
2082
|
-
"type":"structure",
|
2083
|
-
"members":{
|
2084
|
-
},
|
2085
|
-
"error":{
|
2086
|
-
"code":"TargetGroupAssociationLimit",
|
2087
|
-
"httpStatusCode":400,
|
2088
|
-
"senderFault":true
|
2089
|
-
},
|
2090
|
-
"exception":true
|
2091
|
-
},
|
2092
|
-
"TargetGroupAttribute":{
|
2093
|
-
"type":"structure",
|
2094
|
-
"members":{
|
2095
|
-
"Key":{"shape":"TargetGroupAttributeKey"},
|
2096
|
-
"Value":{"shape":"TargetGroupAttributeValue"}
|
2097
|
-
}
|
2098
|
-
},
|
2099
|
-
"TargetGroupAttributeKey":{
|
2100
|
-
"type":"string",
|
2101
|
-
"max":256,
|
2102
|
-
"pattern":"^[a-zA-Z0-9._]+$"
|
2103
|
-
},
|
2104
|
-
"TargetGroupAttributeValue":{"type":"string"},
|
2105
|
-
"TargetGroupAttributes":{
|
2106
|
-
"type":"list",
|
2107
|
-
"member":{"shape":"TargetGroupAttribute"}
|
2108
|
-
},
|
2109
|
-
"TargetGroupName":{"type":"string"},
|
2110
|
-
"TargetGroupNames":{
|
2111
|
-
"type":"list",
|
2112
|
-
"member":{"shape":"TargetGroupName"}
|
2113
|
-
},
|
2114
|
-
"TargetGroupNotFoundException":{
|
2115
|
-
"type":"structure",
|
2116
|
-
"members":{
|
2117
|
-
},
|
2118
|
-
"error":{
|
2119
|
-
"code":"TargetGroupNotFound",
|
2120
|
-
"httpStatusCode":400,
|
2121
|
-
"senderFault":true
|
2122
|
-
},
|
2123
|
-
"exception":true
|
2124
|
-
},
|
2125
|
-
"TargetGroups":{
|
2126
|
-
"type":"list",
|
2127
|
-
"member":{"shape":"TargetGroup"}
|
2128
|
-
},
|
2129
|
-
"TargetHealth":{
|
2130
|
-
"type":"structure",
|
2131
|
-
"members":{
|
2132
|
-
"State":{"shape":"TargetHealthStateEnum"},
|
2133
|
-
"Reason":{"shape":"TargetHealthReasonEnum"},
|
2134
|
-
"Description":{"shape":"Description"}
|
2135
|
-
}
|
2136
|
-
},
|
2137
|
-
"TargetHealthDescription":{
|
2138
|
-
"type":"structure",
|
2139
|
-
"members":{
|
2140
|
-
"Target":{"shape":"TargetDescription"},
|
2141
|
-
"HealthCheckPort":{"shape":"HealthCheckPort"},
|
2142
|
-
"TargetHealth":{"shape":"TargetHealth"}
|
2143
|
-
}
|
2144
|
-
},
|
2145
|
-
"TargetHealthDescriptions":{
|
2146
|
-
"type":"list",
|
2147
|
-
"member":{"shape":"TargetHealthDescription"}
|
2148
|
-
},
|
2149
|
-
"TargetHealthReasonEnum":{
|
2150
|
-
"type":"string",
|
2151
|
-
"enum":[
|
2152
|
-
"Elb.RegistrationInProgress",
|
2153
|
-
"Elb.InitialHealthChecking",
|
2154
|
-
"Target.ResponseCodeMismatch",
|
2155
|
-
"Target.Timeout",
|
2156
|
-
"Target.FailedHealthChecks",
|
2157
|
-
"Target.NotRegistered",
|
2158
|
-
"Target.NotInUse",
|
2159
|
-
"Target.DeregistrationInProgress",
|
2160
|
-
"Target.InvalidState",
|
2161
|
-
"Target.IpUnusable",
|
2162
|
-
"Target.HealthCheckDisabled",
|
2163
|
-
"Elb.InternalError"
|
2164
|
-
]
|
2165
|
-
},
|
2166
|
-
"TargetHealthStateEnum":{
|
2167
|
-
"type":"string",
|
2168
|
-
"enum":[
|
2169
|
-
"initial",
|
2170
|
-
"healthy",
|
2171
|
-
"unhealthy",
|
2172
|
-
"unused",
|
2173
|
-
"draining",
|
2174
|
-
"unavailable"
|
2175
|
-
]
|
2176
|
-
},
|
2177
|
-
"TargetId":{"type":"string"},
|
2178
|
-
"TargetTypeEnum":{
|
2179
|
-
"type":"string",
|
2180
|
-
"enum":[
|
2181
|
-
"instance",
|
2182
|
-
"ip",
|
2183
|
-
"lambda"
|
2184
|
-
]
|
2185
|
-
},
|
2186
|
-
"TooManyActionsException":{
|
2187
|
-
"type":"structure",
|
2188
|
-
"members":{
|
2189
|
-
},
|
2190
|
-
"error":{
|
2191
|
-
"code":"TooManyActions",
|
2192
|
-
"httpStatusCode":400,
|
2193
|
-
"senderFault":true
|
2194
|
-
},
|
2195
|
-
"exception":true
|
2196
|
-
},
|
2197
|
-
"TooManyCertificatesException":{
|
2198
|
-
"type":"structure",
|
2199
|
-
"members":{
|
2200
|
-
},
|
2201
|
-
"error":{
|
2202
|
-
"code":"TooManyCertificates",
|
2203
|
-
"httpStatusCode":400,
|
2204
|
-
"senderFault":true
|
2205
|
-
},
|
2206
|
-
"exception":true
|
2207
|
-
},
|
2208
|
-
"TooManyListenersException":{
|
2209
|
-
"type":"structure",
|
2210
|
-
"members":{
|
2211
|
-
},
|
2212
|
-
"error":{
|
2213
|
-
"code":"TooManyListeners",
|
2214
|
-
"httpStatusCode":400,
|
2215
|
-
"senderFault":true
|
2216
|
-
},
|
2217
|
-
"exception":true
|
2218
|
-
},
|
2219
|
-
"TooManyLoadBalancersException":{
|
2220
|
-
"type":"structure",
|
2221
|
-
"members":{
|
2222
|
-
},
|
2223
|
-
"error":{
|
2224
|
-
"code":"TooManyLoadBalancers",
|
2225
|
-
"httpStatusCode":400,
|
2226
|
-
"senderFault":true
|
2227
|
-
},
|
2228
|
-
"exception":true
|
2229
|
-
},
|
2230
|
-
"TooManyRegistrationsForTargetIdException":{
|
2231
|
-
"type":"structure",
|
2232
|
-
"members":{
|
2233
|
-
},
|
2234
|
-
"error":{
|
2235
|
-
"code":"TooManyRegistrationsForTargetId",
|
2236
|
-
"httpStatusCode":400,
|
2237
|
-
"senderFault":true
|
2238
|
-
},
|
2239
|
-
"exception":true
|
2240
|
-
},
|
2241
|
-
"TooManyRulesException":{
|
2242
|
-
"type":"structure",
|
2243
|
-
"members":{
|
2244
|
-
},
|
2245
|
-
"error":{
|
2246
|
-
"code":"TooManyRules",
|
2247
|
-
"httpStatusCode":400,
|
2248
|
-
"senderFault":true
|
2249
|
-
},
|
2250
|
-
"exception":true
|
2251
|
-
},
|
2252
|
-
"TooManyTagsException":{
|
2253
|
-
"type":"structure",
|
2254
|
-
"members":{
|
2255
|
-
},
|
2256
|
-
"error":{
|
2257
|
-
"code":"TooManyTags",
|
2258
|
-
"httpStatusCode":400,
|
2259
|
-
"senderFault":true
|
2260
|
-
},
|
2261
|
-
"exception":true
|
2262
|
-
},
|
2263
|
-
"TooManyTargetGroupsException":{
|
2264
|
-
"type":"structure",
|
2265
|
-
"members":{
|
2266
|
-
},
|
2267
|
-
"error":{
|
2268
|
-
"code":"TooManyTargetGroups",
|
2269
|
-
"httpStatusCode":400,
|
2270
|
-
"senderFault":true
|
2271
|
-
},
|
2272
|
-
"exception":true
|
2273
|
-
},
|
2274
|
-
"TooManyTargetsException":{
|
2275
|
-
"type":"structure",
|
2276
|
-
"members":{
|
2277
|
-
},
|
2278
|
-
"error":{
|
2279
|
-
"code":"TooManyTargets",
|
2280
|
-
"httpStatusCode":400,
|
2281
|
-
"senderFault":true
|
2282
|
-
},
|
2283
|
-
"exception":true
|
2284
|
-
},
|
2285
|
-
"UnsupportedProtocolException":{
|
2286
|
-
"type":"structure",
|
2287
|
-
"members":{
|
2288
|
-
},
|
2289
|
-
"error":{
|
2290
|
-
"code":"UnsupportedProtocol",
|
2291
|
-
"httpStatusCode":400,
|
2292
|
-
"senderFault":true
|
2293
|
-
},
|
2294
|
-
"exception":true
|
2295
|
-
},
|
2296
|
-
"VpcId":{"type":"string"},
|
2297
|
-
"ZoneName":{"type":"string"}
|
2298
|
-
}
|
2299
|
-
}
|