aws-sdk-core 2.11.335 → 3.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -547
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +147 -10
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1021
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3994
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3202
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2304
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3270
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -16
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -247
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1204
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -24837
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2809
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -597
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -4
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3131
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3447
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2345
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -8711
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2490
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6575
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2093
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2095
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1078
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8913
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1372
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -504
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -851
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -4601
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -749
@@ -1,77 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"GetOfferingStatus": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"output_token": "nextToken",
|
6
|
-
"result_key": [
|
7
|
-
"current",
|
8
|
-
"nextPeriod"
|
9
|
-
]
|
10
|
-
},
|
11
|
-
"ListArtifacts": {
|
12
|
-
"input_token": "nextToken",
|
13
|
-
"output_token": "nextToken",
|
14
|
-
"result_key": "artifacts"
|
15
|
-
},
|
16
|
-
"ListDevicePools": {
|
17
|
-
"input_token": "nextToken",
|
18
|
-
"output_token": "nextToken",
|
19
|
-
"result_key": "devicePools"
|
20
|
-
},
|
21
|
-
"ListDevices": {
|
22
|
-
"input_token": "nextToken",
|
23
|
-
"output_token": "nextToken",
|
24
|
-
"result_key": "devices"
|
25
|
-
},
|
26
|
-
"ListJobs": {
|
27
|
-
"input_token": "nextToken",
|
28
|
-
"output_token": "nextToken",
|
29
|
-
"result_key": "jobs"
|
30
|
-
},
|
31
|
-
"ListOfferingTransactions": {
|
32
|
-
"input_token": "nextToken",
|
33
|
-
"output_token": "nextToken",
|
34
|
-
"result_key": "offeringTransactions"
|
35
|
-
},
|
36
|
-
"ListOfferings": {
|
37
|
-
"input_token": "nextToken",
|
38
|
-
"output_token": "nextToken",
|
39
|
-
"result_key": "offerings"
|
40
|
-
},
|
41
|
-
"ListProjects": {
|
42
|
-
"input_token": "nextToken",
|
43
|
-
"output_token": "nextToken",
|
44
|
-
"result_key": "projects"
|
45
|
-
},
|
46
|
-
"ListRuns": {
|
47
|
-
"input_token": "nextToken",
|
48
|
-
"output_token": "nextToken",
|
49
|
-
"result_key": "runs"
|
50
|
-
},
|
51
|
-
"ListSamples": {
|
52
|
-
"input_token": "nextToken",
|
53
|
-
"output_token": "nextToken",
|
54
|
-
"result_key": "samples"
|
55
|
-
},
|
56
|
-
"ListSuites": {
|
57
|
-
"input_token": "nextToken",
|
58
|
-
"output_token": "nextToken",
|
59
|
-
"result_key": "suites"
|
60
|
-
},
|
61
|
-
"ListTests": {
|
62
|
-
"input_token": "nextToken",
|
63
|
-
"output_token": "nextToken",
|
64
|
-
"result_key": "tests"
|
65
|
-
},
|
66
|
-
"ListUniqueProblems": {
|
67
|
-
"input_token": "nextToken",
|
68
|
-
"output_token": "nextToken",
|
69
|
-
"result_key": "uniqueProblems"
|
70
|
-
},
|
71
|
-
"ListUploads": {
|
72
|
-
"input_token": "nextToken",
|
73
|
-
"output_token": "nextToken",
|
74
|
-
"result_key": "uploads"
|
75
|
-
}
|
76
|
-
}
|
77
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "ListDevices",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "GetDevice",
|
12
|
-
"input": {
|
13
|
-
"arn": "arn:aws:devicefarm:us-west-2::device:000000000000000000000000fake-arn"
|
14
|
-
},
|
15
|
-
"errorExpectedFromService": true
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,2066 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2012-10-25",
|
5
|
-
"endpointPrefix":"directconnect",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceFullName":"AWS Direct Connect",
|
9
|
-
"serviceId":"Direct Connect",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"targetPrefix":"OvertureService",
|
12
|
-
"uid":"directconnect-2012-10-25"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"AcceptDirectConnectGatewayAssociationProposal":{
|
16
|
-
"name":"AcceptDirectConnectGatewayAssociationProposal",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/"
|
20
|
-
},
|
21
|
-
"input":{"shape":"AcceptDirectConnectGatewayAssociationProposalRequest"},
|
22
|
-
"output":{"shape":"AcceptDirectConnectGatewayAssociationProposalResult"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"DirectConnectServerException"},
|
25
|
-
{"shape":"DirectConnectClientException"}
|
26
|
-
]
|
27
|
-
},
|
28
|
-
"AllocateConnectionOnInterconnect":{
|
29
|
-
"name":"AllocateConnectionOnInterconnect",
|
30
|
-
"http":{
|
31
|
-
"method":"POST",
|
32
|
-
"requestUri":"/"
|
33
|
-
},
|
34
|
-
"input":{"shape":"AllocateConnectionOnInterconnectRequest"},
|
35
|
-
"output":{"shape":"Connection"},
|
36
|
-
"errors":[
|
37
|
-
{"shape":"DirectConnectServerException"},
|
38
|
-
{"shape":"DirectConnectClientException"}
|
39
|
-
],
|
40
|
-
"deprecated":true
|
41
|
-
},
|
42
|
-
"AllocateHostedConnection":{
|
43
|
-
"name":"AllocateHostedConnection",
|
44
|
-
"http":{
|
45
|
-
"method":"POST",
|
46
|
-
"requestUri":"/"
|
47
|
-
},
|
48
|
-
"input":{"shape":"AllocateHostedConnectionRequest"},
|
49
|
-
"output":{"shape":"Connection"},
|
50
|
-
"errors":[
|
51
|
-
{"shape":"DuplicateTagKeysException"},
|
52
|
-
{"shape":"TooManyTagsException"},
|
53
|
-
{"shape":"DirectConnectServerException"},
|
54
|
-
{"shape":"DirectConnectClientException"}
|
55
|
-
]
|
56
|
-
},
|
57
|
-
"AllocatePrivateVirtualInterface":{
|
58
|
-
"name":"AllocatePrivateVirtualInterface",
|
59
|
-
"http":{
|
60
|
-
"method":"POST",
|
61
|
-
"requestUri":"/"
|
62
|
-
},
|
63
|
-
"input":{"shape":"AllocatePrivateVirtualInterfaceRequest"},
|
64
|
-
"output":{"shape":"VirtualInterface"},
|
65
|
-
"errors":[
|
66
|
-
{"shape":"DuplicateTagKeysException"},
|
67
|
-
{"shape":"TooManyTagsException"},
|
68
|
-
{"shape":"DirectConnectServerException"},
|
69
|
-
{"shape":"DirectConnectClientException"}
|
70
|
-
]
|
71
|
-
},
|
72
|
-
"AllocatePublicVirtualInterface":{
|
73
|
-
"name":"AllocatePublicVirtualInterface",
|
74
|
-
"http":{
|
75
|
-
"method":"POST",
|
76
|
-
"requestUri":"/"
|
77
|
-
},
|
78
|
-
"input":{"shape":"AllocatePublicVirtualInterfaceRequest"},
|
79
|
-
"output":{"shape":"VirtualInterface"},
|
80
|
-
"errors":[
|
81
|
-
{"shape":"DuplicateTagKeysException"},
|
82
|
-
{"shape":"TooManyTagsException"},
|
83
|
-
{"shape":"DirectConnectServerException"},
|
84
|
-
{"shape":"DirectConnectClientException"}
|
85
|
-
]
|
86
|
-
},
|
87
|
-
"AllocateTransitVirtualInterface":{
|
88
|
-
"name":"AllocateTransitVirtualInterface",
|
89
|
-
"http":{
|
90
|
-
"method":"POST",
|
91
|
-
"requestUri":"/"
|
92
|
-
},
|
93
|
-
"input":{"shape":"AllocateTransitVirtualInterfaceRequest"},
|
94
|
-
"output":{"shape":"AllocateTransitVirtualInterfaceResult"},
|
95
|
-
"errors":[
|
96
|
-
{"shape":"DuplicateTagKeysException"},
|
97
|
-
{"shape":"TooManyTagsException"},
|
98
|
-
{"shape":"DirectConnectServerException"},
|
99
|
-
{"shape":"DirectConnectClientException"}
|
100
|
-
]
|
101
|
-
},
|
102
|
-
"AssociateConnectionWithLag":{
|
103
|
-
"name":"AssociateConnectionWithLag",
|
104
|
-
"http":{
|
105
|
-
"method":"POST",
|
106
|
-
"requestUri":"/"
|
107
|
-
},
|
108
|
-
"input":{"shape":"AssociateConnectionWithLagRequest"},
|
109
|
-
"output":{"shape":"Connection"},
|
110
|
-
"errors":[
|
111
|
-
{"shape":"DirectConnectServerException"},
|
112
|
-
{"shape":"DirectConnectClientException"}
|
113
|
-
]
|
114
|
-
},
|
115
|
-
"AssociateHostedConnection":{
|
116
|
-
"name":"AssociateHostedConnection",
|
117
|
-
"http":{
|
118
|
-
"method":"POST",
|
119
|
-
"requestUri":"/"
|
120
|
-
},
|
121
|
-
"input":{"shape":"AssociateHostedConnectionRequest"},
|
122
|
-
"output":{"shape":"Connection"},
|
123
|
-
"errors":[
|
124
|
-
{"shape":"DirectConnectServerException"},
|
125
|
-
{"shape":"DirectConnectClientException"}
|
126
|
-
]
|
127
|
-
},
|
128
|
-
"AssociateVirtualInterface":{
|
129
|
-
"name":"AssociateVirtualInterface",
|
130
|
-
"http":{
|
131
|
-
"method":"POST",
|
132
|
-
"requestUri":"/"
|
133
|
-
},
|
134
|
-
"input":{"shape":"AssociateVirtualInterfaceRequest"},
|
135
|
-
"output":{"shape":"VirtualInterface"},
|
136
|
-
"errors":[
|
137
|
-
{"shape":"DirectConnectServerException"},
|
138
|
-
{"shape":"DirectConnectClientException"}
|
139
|
-
]
|
140
|
-
},
|
141
|
-
"ConfirmConnection":{
|
142
|
-
"name":"ConfirmConnection",
|
143
|
-
"http":{
|
144
|
-
"method":"POST",
|
145
|
-
"requestUri":"/"
|
146
|
-
},
|
147
|
-
"input":{"shape":"ConfirmConnectionRequest"},
|
148
|
-
"output":{"shape":"ConfirmConnectionResponse"},
|
149
|
-
"errors":[
|
150
|
-
{"shape":"DirectConnectServerException"},
|
151
|
-
{"shape":"DirectConnectClientException"}
|
152
|
-
]
|
153
|
-
},
|
154
|
-
"ConfirmPrivateVirtualInterface":{
|
155
|
-
"name":"ConfirmPrivateVirtualInterface",
|
156
|
-
"http":{
|
157
|
-
"method":"POST",
|
158
|
-
"requestUri":"/"
|
159
|
-
},
|
160
|
-
"input":{"shape":"ConfirmPrivateVirtualInterfaceRequest"},
|
161
|
-
"output":{"shape":"ConfirmPrivateVirtualInterfaceResponse"},
|
162
|
-
"errors":[
|
163
|
-
{"shape":"DirectConnectServerException"},
|
164
|
-
{"shape":"DirectConnectClientException"}
|
165
|
-
]
|
166
|
-
},
|
167
|
-
"ConfirmPublicVirtualInterface":{
|
168
|
-
"name":"ConfirmPublicVirtualInterface",
|
169
|
-
"http":{
|
170
|
-
"method":"POST",
|
171
|
-
"requestUri":"/"
|
172
|
-
},
|
173
|
-
"input":{"shape":"ConfirmPublicVirtualInterfaceRequest"},
|
174
|
-
"output":{"shape":"ConfirmPublicVirtualInterfaceResponse"},
|
175
|
-
"errors":[
|
176
|
-
{"shape":"DirectConnectServerException"},
|
177
|
-
{"shape":"DirectConnectClientException"}
|
178
|
-
]
|
179
|
-
},
|
180
|
-
"ConfirmTransitVirtualInterface":{
|
181
|
-
"name":"ConfirmTransitVirtualInterface",
|
182
|
-
"http":{
|
183
|
-
"method":"POST",
|
184
|
-
"requestUri":"/"
|
185
|
-
},
|
186
|
-
"input":{"shape":"ConfirmTransitVirtualInterfaceRequest"},
|
187
|
-
"output":{"shape":"ConfirmTransitVirtualInterfaceResponse"},
|
188
|
-
"errors":[
|
189
|
-
{"shape":"DirectConnectServerException"},
|
190
|
-
{"shape":"DirectConnectClientException"}
|
191
|
-
]
|
192
|
-
},
|
193
|
-
"CreateBGPPeer":{
|
194
|
-
"name":"CreateBGPPeer",
|
195
|
-
"http":{
|
196
|
-
"method":"POST",
|
197
|
-
"requestUri":"/"
|
198
|
-
},
|
199
|
-
"input":{"shape":"CreateBGPPeerRequest"},
|
200
|
-
"output":{"shape":"CreateBGPPeerResponse"},
|
201
|
-
"errors":[
|
202
|
-
{"shape":"DirectConnectServerException"},
|
203
|
-
{"shape":"DirectConnectClientException"}
|
204
|
-
]
|
205
|
-
},
|
206
|
-
"CreateConnection":{
|
207
|
-
"name":"CreateConnection",
|
208
|
-
"http":{
|
209
|
-
"method":"POST",
|
210
|
-
"requestUri":"/"
|
211
|
-
},
|
212
|
-
"input":{"shape":"CreateConnectionRequest"},
|
213
|
-
"output":{"shape":"Connection"},
|
214
|
-
"errors":[
|
215
|
-
{"shape":"DuplicateTagKeysException"},
|
216
|
-
{"shape":"TooManyTagsException"},
|
217
|
-
{"shape":"DirectConnectServerException"},
|
218
|
-
{"shape":"DirectConnectClientException"}
|
219
|
-
]
|
220
|
-
},
|
221
|
-
"CreateDirectConnectGateway":{
|
222
|
-
"name":"CreateDirectConnectGateway",
|
223
|
-
"http":{
|
224
|
-
"method":"POST",
|
225
|
-
"requestUri":"/"
|
226
|
-
},
|
227
|
-
"input":{"shape":"CreateDirectConnectGatewayRequest"},
|
228
|
-
"output":{"shape":"CreateDirectConnectGatewayResult"},
|
229
|
-
"errors":[
|
230
|
-
{"shape":"DirectConnectServerException"},
|
231
|
-
{"shape":"DirectConnectClientException"}
|
232
|
-
]
|
233
|
-
},
|
234
|
-
"CreateDirectConnectGatewayAssociation":{
|
235
|
-
"name":"CreateDirectConnectGatewayAssociation",
|
236
|
-
"http":{
|
237
|
-
"method":"POST",
|
238
|
-
"requestUri":"/"
|
239
|
-
},
|
240
|
-
"input":{"shape":"CreateDirectConnectGatewayAssociationRequest"},
|
241
|
-
"output":{"shape":"CreateDirectConnectGatewayAssociationResult"},
|
242
|
-
"errors":[
|
243
|
-
{"shape":"DirectConnectServerException"},
|
244
|
-
{"shape":"DirectConnectClientException"}
|
245
|
-
]
|
246
|
-
},
|
247
|
-
"CreateDirectConnectGatewayAssociationProposal":{
|
248
|
-
"name":"CreateDirectConnectGatewayAssociationProposal",
|
249
|
-
"http":{
|
250
|
-
"method":"POST",
|
251
|
-
"requestUri":"/"
|
252
|
-
},
|
253
|
-
"input":{"shape":"CreateDirectConnectGatewayAssociationProposalRequest"},
|
254
|
-
"output":{"shape":"CreateDirectConnectGatewayAssociationProposalResult"},
|
255
|
-
"errors":[
|
256
|
-
{"shape":"DirectConnectServerException"},
|
257
|
-
{"shape":"DirectConnectClientException"}
|
258
|
-
]
|
259
|
-
},
|
260
|
-
"CreateInterconnect":{
|
261
|
-
"name":"CreateInterconnect",
|
262
|
-
"http":{
|
263
|
-
"method":"POST",
|
264
|
-
"requestUri":"/"
|
265
|
-
},
|
266
|
-
"input":{"shape":"CreateInterconnectRequest"},
|
267
|
-
"output":{"shape":"Interconnect"},
|
268
|
-
"errors":[
|
269
|
-
{"shape":"DuplicateTagKeysException"},
|
270
|
-
{"shape":"TooManyTagsException"},
|
271
|
-
{"shape":"DirectConnectServerException"},
|
272
|
-
{"shape":"DirectConnectClientException"}
|
273
|
-
]
|
274
|
-
},
|
275
|
-
"CreateLag":{
|
276
|
-
"name":"CreateLag",
|
277
|
-
"http":{
|
278
|
-
"method":"POST",
|
279
|
-
"requestUri":"/"
|
280
|
-
},
|
281
|
-
"input":{"shape":"CreateLagRequest"},
|
282
|
-
"output":{"shape":"Lag"},
|
283
|
-
"errors":[
|
284
|
-
{"shape":"DuplicateTagKeysException"},
|
285
|
-
{"shape":"TooManyTagsException"},
|
286
|
-
{"shape":"DirectConnectServerException"},
|
287
|
-
{"shape":"DirectConnectClientException"}
|
288
|
-
]
|
289
|
-
},
|
290
|
-
"CreatePrivateVirtualInterface":{
|
291
|
-
"name":"CreatePrivateVirtualInterface",
|
292
|
-
"http":{
|
293
|
-
"method":"POST",
|
294
|
-
"requestUri":"/"
|
295
|
-
},
|
296
|
-
"input":{"shape":"CreatePrivateVirtualInterfaceRequest"},
|
297
|
-
"output":{"shape":"VirtualInterface"},
|
298
|
-
"errors":[
|
299
|
-
{"shape":"DuplicateTagKeysException"},
|
300
|
-
{"shape":"TooManyTagsException"},
|
301
|
-
{"shape":"DirectConnectServerException"},
|
302
|
-
{"shape":"DirectConnectClientException"}
|
303
|
-
]
|
304
|
-
},
|
305
|
-
"CreatePublicVirtualInterface":{
|
306
|
-
"name":"CreatePublicVirtualInterface",
|
307
|
-
"http":{
|
308
|
-
"method":"POST",
|
309
|
-
"requestUri":"/"
|
310
|
-
},
|
311
|
-
"input":{"shape":"CreatePublicVirtualInterfaceRequest"},
|
312
|
-
"output":{"shape":"VirtualInterface"},
|
313
|
-
"errors":[
|
314
|
-
{"shape":"DuplicateTagKeysException"},
|
315
|
-
{"shape":"TooManyTagsException"},
|
316
|
-
{"shape":"DirectConnectServerException"},
|
317
|
-
{"shape":"DirectConnectClientException"}
|
318
|
-
]
|
319
|
-
},
|
320
|
-
"CreateTransitVirtualInterface":{
|
321
|
-
"name":"CreateTransitVirtualInterface",
|
322
|
-
"http":{
|
323
|
-
"method":"POST",
|
324
|
-
"requestUri":"/"
|
325
|
-
},
|
326
|
-
"input":{"shape":"CreateTransitVirtualInterfaceRequest"},
|
327
|
-
"output":{"shape":"CreateTransitVirtualInterfaceResult"},
|
328
|
-
"errors":[
|
329
|
-
{"shape":"DuplicateTagKeysException"},
|
330
|
-
{"shape":"TooManyTagsException"},
|
331
|
-
{"shape":"DirectConnectServerException"},
|
332
|
-
{"shape":"DirectConnectClientException"}
|
333
|
-
]
|
334
|
-
},
|
335
|
-
"DeleteBGPPeer":{
|
336
|
-
"name":"DeleteBGPPeer",
|
337
|
-
"http":{
|
338
|
-
"method":"POST",
|
339
|
-
"requestUri":"/"
|
340
|
-
},
|
341
|
-
"input":{"shape":"DeleteBGPPeerRequest"},
|
342
|
-
"output":{"shape":"DeleteBGPPeerResponse"},
|
343
|
-
"errors":[
|
344
|
-
{"shape":"DirectConnectServerException"},
|
345
|
-
{"shape":"DirectConnectClientException"}
|
346
|
-
]
|
347
|
-
},
|
348
|
-
"DeleteConnection":{
|
349
|
-
"name":"DeleteConnection",
|
350
|
-
"http":{
|
351
|
-
"method":"POST",
|
352
|
-
"requestUri":"/"
|
353
|
-
},
|
354
|
-
"input":{"shape":"DeleteConnectionRequest"},
|
355
|
-
"output":{"shape":"Connection"},
|
356
|
-
"errors":[
|
357
|
-
{"shape":"DirectConnectServerException"},
|
358
|
-
{"shape":"DirectConnectClientException"}
|
359
|
-
]
|
360
|
-
},
|
361
|
-
"DeleteDirectConnectGateway":{
|
362
|
-
"name":"DeleteDirectConnectGateway",
|
363
|
-
"http":{
|
364
|
-
"method":"POST",
|
365
|
-
"requestUri":"/"
|
366
|
-
},
|
367
|
-
"input":{"shape":"DeleteDirectConnectGatewayRequest"},
|
368
|
-
"output":{"shape":"DeleteDirectConnectGatewayResult"},
|
369
|
-
"errors":[
|
370
|
-
{"shape":"DirectConnectServerException"},
|
371
|
-
{"shape":"DirectConnectClientException"}
|
372
|
-
]
|
373
|
-
},
|
374
|
-
"DeleteDirectConnectGatewayAssociation":{
|
375
|
-
"name":"DeleteDirectConnectGatewayAssociation",
|
376
|
-
"http":{
|
377
|
-
"method":"POST",
|
378
|
-
"requestUri":"/"
|
379
|
-
},
|
380
|
-
"input":{"shape":"DeleteDirectConnectGatewayAssociationRequest"},
|
381
|
-
"output":{"shape":"DeleteDirectConnectGatewayAssociationResult"},
|
382
|
-
"errors":[
|
383
|
-
{"shape":"DirectConnectServerException"},
|
384
|
-
{"shape":"DirectConnectClientException"}
|
385
|
-
]
|
386
|
-
},
|
387
|
-
"DeleteDirectConnectGatewayAssociationProposal":{
|
388
|
-
"name":"DeleteDirectConnectGatewayAssociationProposal",
|
389
|
-
"http":{
|
390
|
-
"method":"POST",
|
391
|
-
"requestUri":"/"
|
392
|
-
},
|
393
|
-
"input":{"shape":"DeleteDirectConnectGatewayAssociationProposalRequest"},
|
394
|
-
"output":{"shape":"DeleteDirectConnectGatewayAssociationProposalResult"},
|
395
|
-
"errors":[
|
396
|
-
{"shape":"DirectConnectServerException"},
|
397
|
-
{"shape":"DirectConnectClientException"}
|
398
|
-
]
|
399
|
-
},
|
400
|
-
"DeleteInterconnect":{
|
401
|
-
"name":"DeleteInterconnect",
|
402
|
-
"http":{
|
403
|
-
"method":"POST",
|
404
|
-
"requestUri":"/"
|
405
|
-
},
|
406
|
-
"input":{"shape":"DeleteInterconnectRequest"},
|
407
|
-
"output":{"shape":"DeleteInterconnectResponse"},
|
408
|
-
"errors":[
|
409
|
-
{"shape":"DirectConnectServerException"},
|
410
|
-
{"shape":"DirectConnectClientException"}
|
411
|
-
]
|
412
|
-
},
|
413
|
-
"DeleteLag":{
|
414
|
-
"name":"DeleteLag",
|
415
|
-
"http":{
|
416
|
-
"method":"POST",
|
417
|
-
"requestUri":"/"
|
418
|
-
},
|
419
|
-
"input":{"shape":"DeleteLagRequest"},
|
420
|
-
"output":{"shape":"Lag"},
|
421
|
-
"errors":[
|
422
|
-
{"shape":"DirectConnectServerException"},
|
423
|
-
{"shape":"DirectConnectClientException"}
|
424
|
-
]
|
425
|
-
},
|
426
|
-
"DeleteVirtualInterface":{
|
427
|
-
"name":"DeleteVirtualInterface",
|
428
|
-
"http":{
|
429
|
-
"method":"POST",
|
430
|
-
"requestUri":"/"
|
431
|
-
},
|
432
|
-
"input":{"shape":"DeleteVirtualInterfaceRequest"},
|
433
|
-
"output":{"shape":"DeleteVirtualInterfaceResponse"},
|
434
|
-
"errors":[
|
435
|
-
{"shape":"DirectConnectServerException"},
|
436
|
-
{"shape":"DirectConnectClientException"}
|
437
|
-
]
|
438
|
-
},
|
439
|
-
"DescribeConnectionLoa":{
|
440
|
-
"name":"DescribeConnectionLoa",
|
441
|
-
"http":{
|
442
|
-
"method":"POST",
|
443
|
-
"requestUri":"/"
|
444
|
-
},
|
445
|
-
"input":{"shape":"DescribeConnectionLoaRequest"},
|
446
|
-
"output":{"shape":"DescribeConnectionLoaResponse"},
|
447
|
-
"errors":[
|
448
|
-
{"shape":"DirectConnectServerException"},
|
449
|
-
{"shape":"DirectConnectClientException"}
|
450
|
-
],
|
451
|
-
"deprecated":true
|
452
|
-
},
|
453
|
-
"DescribeConnections":{
|
454
|
-
"name":"DescribeConnections",
|
455
|
-
"http":{
|
456
|
-
"method":"POST",
|
457
|
-
"requestUri":"/"
|
458
|
-
},
|
459
|
-
"input":{"shape":"DescribeConnectionsRequest"},
|
460
|
-
"output":{"shape":"Connections"},
|
461
|
-
"errors":[
|
462
|
-
{"shape":"DirectConnectServerException"},
|
463
|
-
{"shape":"DirectConnectClientException"}
|
464
|
-
]
|
465
|
-
},
|
466
|
-
"DescribeConnectionsOnInterconnect":{
|
467
|
-
"name":"DescribeConnectionsOnInterconnect",
|
468
|
-
"http":{
|
469
|
-
"method":"POST",
|
470
|
-
"requestUri":"/"
|
471
|
-
},
|
472
|
-
"input":{"shape":"DescribeConnectionsOnInterconnectRequest"},
|
473
|
-
"output":{"shape":"Connections"},
|
474
|
-
"errors":[
|
475
|
-
{"shape":"DirectConnectServerException"},
|
476
|
-
{"shape":"DirectConnectClientException"}
|
477
|
-
],
|
478
|
-
"deprecated":true
|
479
|
-
},
|
480
|
-
"DescribeDirectConnectGatewayAssociationProposals":{
|
481
|
-
"name":"DescribeDirectConnectGatewayAssociationProposals",
|
482
|
-
"http":{
|
483
|
-
"method":"POST",
|
484
|
-
"requestUri":"/"
|
485
|
-
},
|
486
|
-
"input":{"shape":"DescribeDirectConnectGatewayAssociationProposalsRequest"},
|
487
|
-
"output":{"shape":"DescribeDirectConnectGatewayAssociationProposalsResult"},
|
488
|
-
"errors":[
|
489
|
-
{"shape":"DirectConnectServerException"},
|
490
|
-
{"shape":"DirectConnectClientException"}
|
491
|
-
]
|
492
|
-
},
|
493
|
-
"DescribeDirectConnectGatewayAssociations":{
|
494
|
-
"name":"DescribeDirectConnectGatewayAssociations",
|
495
|
-
"http":{
|
496
|
-
"method":"POST",
|
497
|
-
"requestUri":"/"
|
498
|
-
},
|
499
|
-
"input":{"shape":"DescribeDirectConnectGatewayAssociationsRequest"},
|
500
|
-
"output":{"shape":"DescribeDirectConnectGatewayAssociationsResult"},
|
501
|
-
"errors":[
|
502
|
-
{"shape":"DirectConnectServerException"},
|
503
|
-
{"shape":"DirectConnectClientException"}
|
504
|
-
]
|
505
|
-
},
|
506
|
-
"DescribeDirectConnectGatewayAttachments":{
|
507
|
-
"name":"DescribeDirectConnectGatewayAttachments",
|
508
|
-
"http":{
|
509
|
-
"method":"POST",
|
510
|
-
"requestUri":"/"
|
511
|
-
},
|
512
|
-
"input":{"shape":"DescribeDirectConnectGatewayAttachmentsRequest"},
|
513
|
-
"output":{"shape":"DescribeDirectConnectGatewayAttachmentsResult"},
|
514
|
-
"errors":[
|
515
|
-
{"shape":"DirectConnectServerException"},
|
516
|
-
{"shape":"DirectConnectClientException"}
|
517
|
-
]
|
518
|
-
},
|
519
|
-
"DescribeDirectConnectGateways":{
|
520
|
-
"name":"DescribeDirectConnectGateways",
|
521
|
-
"http":{
|
522
|
-
"method":"POST",
|
523
|
-
"requestUri":"/"
|
524
|
-
},
|
525
|
-
"input":{"shape":"DescribeDirectConnectGatewaysRequest"},
|
526
|
-
"output":{"shape":"DescribeDirectConnectGatewaysResult"},
|
527
|
-
"errors":[
|
528
|
-
{"shape":"DirectConnectServerException"},
|
529
|
-
{"shape":"DirectConnectClientException"}
|
530
|
-
]
|
531
|
-
},
|
532
|
-
"DescribeHostedConnections":{
|
533
|
-
"name":"DescribeHostedConnections",
|
534
|
-
"http":{
|
535
|
-
"method":"POST",
|
536
|
-
"requestUri":"/"
|
537
|
-
},
|
538
|
-
"input":{"shape":"DescribeHostedConnectionsRequest"},
|
539
|
-
"output":{"shape":"Connections"},
|
540
|
-
"errors":[
|
541
|
-
{"shape":"DirectConnectServerException"},
|
542
|
-
{"shape":"DirectConnectClientException"}
|
543
|
-
]
|
544
|
-
},
|
545
|
-
"DescribeInterconnectLoa":{
|
546
|
-
"name":"DescribeInterconnectLoa",
|
547
|
-
"http":{
|
548
|
-
"method":"POST",
|
549
|
-
"requestUri":"/"
|
550
|
-
},
|
551
|
-
"input":{"shape":"DescribeInterconnectLoaRequest"},
|
552
|
-
"output":{"shape":"DescribeInterconnectLoaResponse"},
|
553
|
-
"errors":[
|
554
|
-
{"shape":"DirectConnectServerException"},
|
555
|
-
{"shape":"DirectConnectClientException"}
|
556
|
-
],
|
557
|
-
"deprecated":true
|
558
|
-
},
|
559
|
-
"DescribeInterconnects":{
|
560
|
-
"name":"DescribeInterconnects",
|
561
|
-
"http":{
|
562
|
-
"method":"POST",
|
563
|
-
"requestUri":"/"
|
564
|
-
},
|
565
|
-
"input":{"shape":"DescribeInterconnectsRequest"},
|
566
|
-
"output":{"shape":"Interconnects"},
|
567
|
-
"errors":[
|
568
|
-
{"shape":"DirectConnectServerException"},
|
569
|
-
{"shape":"DirectConnectClientException"}
|
570
|
-
]
|
571
|
-
},
|
572
|
-
"DescribeLags":{
|
573
|
-
"name":"DescribeLags",
|
574
|
-
"http":{
|
575
|
-
"method":"POST",
|
576
|
-
"requestUri":"/"
|
577
|
-
},
|
578
|
-
"input":{"shape":"DescribeLagsRequest"},
|
579
|
-
"output":{"shape":"Lags"},
|
580
|
-
"errors":[
|
581
|
-
{"shape":"DirectConnectServerException"},
|
582
|
-
{"shape":"DirectConnectClientException"}
|
583
|
-
]
|
584
|
-
},
|
585
|
-
"DescribeLoa":{
|
586
|
-
"name":"DescribeLoa",
|
587
|
-
"http":{
|
588
|
-
"method":"POST",
|
589
|
-
"requestUri":"/"
|
590
|
-
},
|
591
|
-
"input":{"shape":"DescribeLoaRequest"},
|
592
|
-
"output":{"shape":"Loa"},
|
593
|
-
"errors":[
|
594
|
-
{"shape":"DirectConnectServerException"},
|
595
|
-
{"shape":"DirectConnectClientException"}
|
596
|
-
]
|
597
|
-
},
|
598
|
-
"DescribeLocations":{
|
599
|
-
"name":"DescribeLocations",
|
600
|
-
"http":{
|
601
|
-
"method":"POST",
|
602
|
-
"requestUri":"/"
|
603
|
-
},
|
604
|
-
"output":{"shape":"Locations"},
|
605
|
-
"errors":[
|
606
|
-
{"shape":"DirectConnectServerException"},
|
607
|
-
{"shape":"DirectConnectClientException"}
|
608
|
-
]
|
609
|
-
},
|
610
|
-
"DescribeTags":{
|
611
|
-
"name":"DescribeTags",
|
612
|
-
"http":{
|
613
|
-
"method":"POST",
|
614
|
-
"requestUri":"/"
|
615
|
-
},
|
616
|
-
"input":{"shape":"DescribeTagsRequest"},
|
617
|
-
"output":{"shape":"DescribeTagsResponse"},
|
618
|
-
"errors":[
|
619
|
-
{"shape":"DirectConnectServerException"},
|
620
|
-
{"shape":"DirectConnectClientException"}
|
621
|
-
]
|
622
|
-
},
|
623
|
-
"DescribeVirtualGateways":{
|
624
|
-
"name":"DescribeVirtualGateways",
|
625
|
-
"http":{
|
626
|
-
"method":"POST",
|
627
|
-
"requestUri":"/"
|
628
|
-
},
|
629
|
-
"output":{"shape":"VirtualGateways"},
|
630
|
-
"errors":[
|
631
|
-
{"shape":"DirectConnectServerException"},
|
632
|
-
{"shape":"DirectConnectClientException"}
|
633
|
-
]
|
634
|
-
},
|
635
|
-
"DescribeVirtualInterfaces":{
|
636
|
-
"name":"DescribeVirtualInterfaces",
|
637
|
-
"http":{
|
638
|
-
"method":"POST",
|
639
|
-
"requestUri":"/"
|
640
|
-
},
|
641
|
-
"input":{"shape":"DescribeVirtualInterfacesRequest"},
|
642
|
-
"output":{"shape":"VirtualInterfaces"},
|
643
|
-
"errors":[
|
644
|
-
{"shape":"DirectConnectServerException"},
|
645
|
-
{"shape":"DirectConnectClientException"}
|
646
|
-
]
|
647
|
-
},
|
648
|
-
"DisassociateConnectionFromLag":{
|
649
|
-
"name":"DisassociateConnectionFromLag",
|
650
|
-
"http":{
|
651
|
-
"method":"POST",
|
652
|
-
"requestUri":"/"
|
653
|
-
},
|
654
|
-
"input":{"shape":"DisassociateConnectionFromLagRequest"},
|
655
|
-
"output":{"shape":"Connection"},
|
656
|
-
"errors":[
|
657
|
-
{"shape":"DirectConnectServerException"},
|
658
|
-
{"shape":"DirectConnectClientException"}
|
659
|
-
]
|
660
|
-
},
|
661
|
-
"TagResource":{
|
662
|
-
"name":"TagResource",
|
663
|
-
"http":{
|
664
|
-
"method":"POST",
|
665
|
-
"requestUri":"/"
|
666
|
-
},
|
667
|
-
"input":{"shape":"TagResourceRequest"},
|
668
|
-
"output":{"shape":"TagResourceResponse"},
|
669
|
-
"errors":[
|
670
|
-
{"shape":"DuplicateTagKeysException"},
|
671
|
-
{"shape":"TooManyTagsException"},
|
672
|
-
{"shape":"DirectConnectServerException"},
|
673
|
-
{"shape":"DirectConnectClientException"}
|
674
|
-
]
|
675
|
-
},
|
676
|
-
"UntagResource":{
|
677
|
-
"name":"UntagResource",
|
678
|
-
"http":{
|
679
|
-
"method":"POST",
|
680
|
-
"requestUri":"/"
|
681
|
-
},
|
682
|
-
"input":{"shape":"UntagResourceRequest"},
|
683
|
-
"output":{"shape":"UntagResourceResponse"},
|
684
|
-
"errors":[
|
685
|
-
{"shape":"DirectConnectServerException"},
|
686
|
-
{"shape":"DirectConnectClientException"}
|
687
|
-
]
|
688
|
-
},
|
689
|
-
"UpdateDirectConnectGatewayAssociation":{
|
690
|
-
"name":"UpdateDirectConnectGatewayAssociation",
|
691
|
-
"http":{
|
692
|
-
"method":"POST",
|
693
|
-
"requestUri":"/"
|
694
|
-
},
|
695
|
-
"input":{"shape":"UpdateDirectConnectGatewayAssociationRequest"},
|
696
|
-
"output":{"shape":"UpdateDirectConnectGatewayAssociationResult"},
|
697
|
-
"errors":[
|
698
|
-
{"shape":"DirectConnectServerException"},
|
699
|
-
{"shape":"DirectConnectClientException"}
|
700
|
-
]
|
701
|
-
},
|
702
|
-
"UpdateLag":{
|
703
|
-
"name":"UpdateLag",
|
704
|
-
"http":{
|
705
|
-
"method":"POST",
|
706
|
-
"requestUri":"/"
|
707
|
-
},
|
708
|
-
"input":{"shape":"UpdateLagRequest"},
|
709
|
-
"output":{"shape":"Lag"},
|
710
|
-
"errors":[
|
711
|
-
{"shape":"DirectConnectServerException"},
|
712
|
-
{"shape":"DirectConnectClientException"}
|
713
|
-
]
|
714
|
-
},
|
715
|
-
"UpdateVirtualInterfaceAttributes":{
|
716
|
-
"name":"UpdateVirtualInterfaceAttributes",
|
717
|
-
"http":{
|
718
|
-
"method":"POST",
|
719
|
-
"requestUri":"/"
|
720
|
-
},
|
721
|
-
"input":{"shape":"UpdateVirtualInterfaceAttributesRequest"},
|
722
|
-
"output":{"shape":"VirtualInterface"},
|
723
|
-
"errors":[
|
724
|
-
{"shape":"DirectConnectServerException"},
|
725
|
-
{"shape":"DirectConnectClientException"}
|
726
|
-
]
|
727
|
-
}
|
728
|
-
},
|
729
|
-
"shapes":{
|
730
|
-
"ASN":{"type":"integer"},
|
731
|
-
"AcceptDirectConnectGatewayAssociationProposalRequest":{
|
732
|
-
"type":"structure",
|
733
|
-
"required":[
|
734
|
-
"directConnectGatewayId",
|
735
|
-
"proposalId",
|
736
|
-
"associatedGatewayOwnerAccount"
|
737
|
-
],
|
738
|
-
"members":{
|
739
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
740
|
-
"proposalId":{"shape":"DirectConnectGatewayAssociationProposalId"},
|
741
|
-
"associatedGatewayOwnerAccount":{"shape":"OwnerAccount"},
|
742
|
-
"overrideAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"}
|
743
|
-
}
|
744
|
-
},
|
745
|
-
"AcceptDirectConnectGatewayAssociationProposalResult":{
|
746
|
-
"type":"structure",
|
747
|
-
"members":{
|
748
|
-
"directConnectGatewayAssociation":{"shape":"DirectConnectGatewayAssociation"}
|
749
|
-
}
|
750
|
-
},
|
751
|
-
"AddressFamily":{
|
752
|
-
"type":"string",
|
753
|
-
"enum":[
|
754
|
-
"ipv4",
|
755
|
-
"ipv6"
|
756
|
-
]
|
757
|
-
},
|
758
|
-
"AllocateConnectionOnInterconnectRequest":{
|
759
|
-
"type":"structure",
|
760
|
-
"required":[
|
761
|
-
"bandwidth",
|
762
|
-
"connectionName",
|
763
|
-
"ownerAccount",
|
764
|
-
"interconnectId",
|
765
|
-
"vlan"
|
766
|
-
],
|
767
|
-
"members":{
|
768
|
-
"bandwidth":{"shape":"Bandwidth"},
|
769
|
-
"connectionName":{"shape":"ConnectionName"},
|
770
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
771
|
-
"interconnectId":{"shape":"InterconnectId"},
|
772
|
-
"vlan":{"shape":"VLAN"}
|
773
|
-
}
|
774
|
-
},
|
775
|
-
"AllocateHostedConnectionRequest":{
|
776
|
-
"type":"structure",
|
777
|
-
"required":[
|
778
|
-
"connectionId",
|
779
|
-
"ownerAccount",
|
780
|
-
"bandwidth",
|
781
|
-
"connectionName",
|
782
|
-
"vlan"
|
783
|
-
],
|
784
|
-
"members":{
|
785
|
-
"connectionId":{"shape":"ConnectionId"},
|
786
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
787
|
-
"bandwidth":{"shape":"Bandwidth"},
|
788
|
-
"connectionName":{"shape":"ConnectionName"},
|
789
|
-
"vlan":{"shape":"VLAN"},
|
790
|
-
"tags":{"shape":"TagList"}
|
791
|
-
}
|
792
|
-
},
|
793
|
-
"AllocatePrivateVirtualInterfaceRequest":{
|
794
|
-
"type":"structure",
|
795
|
-
"required":[
|
796
|
-
"connectionId",
|
797
|
-
"ownerAccount",
|
798
|
-
"newPrivateVirtualInterfaceAllocation"
|
799
|
-
],
|
800
|
-
"members":{
|
801
|
-
"connectionId":{"shape":"ConnectionId"},
|
802
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
803
|
-
"newPrivateVirtualInterfaceAllocation":{"shape":"NewPrivateVirtualInterfaceAllocation"}
|
804
|
-
}
|
805
|
-
},
|
806
|
-
"AllocatePublicVirtualInterfaceRequest":{
|
807
|
-
"type":"structure",
|
808
|
-
"required":[
|
809
|
-
"connectionId",
|
810
|
-
"ownerAccount",
|
811
|
-
"newPublicVirtualInterfaceAllocation"
|
812
|
-
],
|
813
|
-
"members":{
|
814
|
-
"connectionId":{"shape":"ConnectionId"},
|
815
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
816
|
-
"newPublicVirtualInterfaceAllocation":{"shape":"NewPublicVirtualInterfaceAllocation"}
|
817
|
-
}
|
818
|
-
},
|
819
|
-
"AllocateTransitVirtualInterfaceRequest":{
|
820
|
-
"type":"structure",
|
821
|
-
"required":[
|
822
|
-
"connectionId",
|
823
|
-
"ownerAccount",
|
824
|
-
"newTransitVirtualInterfaceAllocation"
|
825
|
-
],
|
826
|
-
"members":{
|
827
|
-
"connectionId":{"shape":"ConnectionId"},
|
828
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
829
|
-
"newTransitVirtualInterfaceAllocation":{"shape":"NewTransitVirtualInterfaceAllocation"}
|
830
|
-
}
|
831
|
-
},
|
832
|
-
"AllocateTransitVirtualInterfaceResult":{
|
833
|
-
"type":"structure",
|
834
|
-
"members":{
|
835
|
-
"virtualInterface":{"shape":"VirtualInterface"}
|
836
|
-
}
|
837
|
-
},
|
838
|
-
"AmazonAddress":{"type":"string"},
|
839
|
-
"AssociateConnectionWithLagRequest":{
|
840
|
-
"type":"structure",
|
841
|
-
"required":[
|
842
|
-
"connectionId",
|
843
|
-
"lagId"
|
844
|
-
],
|
845
|
-
"members":{
|
846
|
-
"connectionId":{"shape":"ConnectionId"},
|
847
|
-
"lagId":{"shape":"LagId"}
|
848
|
-
}
|
849
|
-
},
|
850
|
-
"AssociateHostedConnectionRequest":{
|
851
|
-
"type":"structure",
|
852
|
-
"required":[
|
853
|
-
"connectionId",
|
854
|
-
"parentConnectionId"
|
855
|
-
],
|
856
|
-
"members":{
|
857
|
-
"connectionId":{"shape":"ConnectionId"},
|
858
|
-
"parentConnectionId":{"shape":"ConnectionId"}
|
859
|
-
}
|
860
|
-
},
|
861
|
-
"AssociateVirtualInterfaceRequest":{
|
862
|
-
"type":"structure",
|
863
|
-
"required":[
|
864
|
-
"virtualInterfaceId",
|
865
|
-
"connectionId"
|
866
|
-
],
|
867
|
-
"members":{
|
868
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
869
|
-
"connectionId":{"shape":"ConnectionId"}
|
870
|
-
}
|
871
|
-
},
|
872
|
-
"AssociatedGateway":{
|
873
|
-
"type":"structure",
|
874
|
-
"members":{
|
875
|
-
"id":{"shape":"GatewayIdentifier"},
|
876
|
-
"type":{"shape":"GatewayType"},
|
877
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
878
|
-
"region":{"shape":"Region"}
|
879
|
-
}
|
880
|
-
},
|
881
|
-
"AssociatedGatewayId":{"type":"string"},
|
882
|
-
"AvailablePortSpeeds":{
|
883
|
-
"type":"list",
|
884
|
-
"member":{"shape":"PortSpeed"}
|
885
|
-
},
|
886
|
-
"AwsDevice":{
|
887
|
-
"type":"string",
|
888
|
-
"deprecated":true
|
889
|
-
},
|
890
|
-
"AwsDeviceV2":{"type":"string"},
|
891
|
-
"BGPAuthKey":{"type":"string"},
|
892
|
-
"BGPPeer":{
|
893
|
-
"type":"structure",
|
894
|
-
"members":{
|
895
|
-
"bgpPeerId":{"shape":"BGPPeerId"},
|
896
|
-
"asn":{"shape":"ASN"},
|
897
|
-
"authKey":{"shape":"BGPAuthKey"},
|
898
|
-
"addressFamily":{"shape":"AddressFamily"},
|
899
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
900
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
901
|
-
"bgpPeerState":{"shape":"BGPPeerState"},
|
902
|
-
"bgpStatus":{"shape":"BGPStatus"},
|
903
|
-
"awsDeviceV2":{"shape":"AwsDeviceV2"}
|
904
|
-
}
|
905
|
-
},
|
906
|
-
"BGPPeerId":{"type":"string"},
|
907
|
-
"BGPPeerList":{
|
908
|
-
"type":"list",
|
909
|
-
"member":{"shape":"BGPPeer"}
|
910
|
-
},
|
911
|
-
"BGPPeerState":{
|
912
|
-
"type":"string",
|
913
|
-
"enum":[
|
914
|
-
"verifying",
|
915
|
-
"pending",
|
916
|
-
"available",
|
917
|
-
"deleting",
|
918
|
-
"deleted"
|
919
|
-
]
|
920
|
-
},
|
921
|
-
"BGPStatus":{
|
922
|
-
"type":"string",
|
923
|
-
"enum":[
|
924
|
-
"up",
|
925
|
-
"down",
|
926
|
-
"unknown"
|
927
|
-
]
|
928
|
-
},
|
929
|
-
"Bandwidth":{"type":"string"},
|
930
|
-
"BooleanFlag":{"type":"boolean"},
|
931
|
-
"CIDR":{"type":"string"},
|
932
|
-
"ConfirmConnectionRequest":{
|
933
|
-
"type":"structure",
|
934
|
-
"required":["connectionId"],
|
935
|
-
"members":{
|
936
|
-
"connectionId":{"shape":"ConnectionId"}
|
937
|
-
}
|
938
|
-
},
|
939
|
-
"ConfirmConnectionResponse":{
|
940
|
-
"type":"structure",
|
941
|
-
"members":{
|
942
|
-
"connectionState":{"shape":"ConnectionState"}
|
943
|
-
}
|
944
|
-
},
|
945
|
-
"ConfirmPrivateVirtualInterfaceRequest":{
|
946
|
-
"type":"structure",
|
947
|
-
"required":["virtualInterfaceId"],
|
948
|
-
"members":{
|
949
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
950
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"},
|
951
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"}
|
952
|
-
}
|
953
|
-
},
|
954
|
-
"ConfirmPrivateVirtualInterfaceResponse":{
|
955
|
-
"type":"structure",
|
956
|
-
"members":{
|
957
|
-
"virtualInterfaceState":{"shape":"VirtualInterfaceState"}
|
958
|
-
}
|
959
|
-
},
|
960
|
-
"ConfirmPublicVirtualInterfaceRequest":{
|
961
|
-
"type":"structure",
|
962
|
-
"required":["virtualInterfaceId"],
|
963
|
-
"members":{
|
964
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"}
|
965
|
-
}
|
966
|
-
},
|
967
|
-
"ConfirmPublicVirtualInterfaceResponse":{
|
968
|
-
"type":"structure",
|
969
|
-
"members":{
|
970
|
-
"virtualInterfaceState":{"shape":"VirtualInterfaceState"}
|
971
|
-
}
|
972
|
-
},
|
973
|
-
"ConfirmTransitVirtualInterfaceRequest":{
|
974
|
-
"type":"structure",
|
975
|
-
"required":[
|
976
|
-
"virtualInterfaceId",
|
977
|
-
"directConnectGatewayId"
|
978
|
-
],
|
979
|
-
"members":{
|
980
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
981
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"}
|
982
|
-
}
|
983
|
-
},
|
984
|
-
"ConfirmTransitVirtualInterfaceResponse":{
|
985
|
-
"type":"structure",
|
986
|
-
"members":{
|
987
|
-
"virtualInterfaceState":{"shape":"VirtualInterfaceState"}
|
988
|
-
}
|
989
|
-
},
|
990
|
-
"Connection":{
|
991
|
-
"type":"structure",
|
992
|
-
"members":{
|
993
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
994
|
-
"connectionId":{"shape":"ConnectionId"},
|
995
|
-
"connectionName":{"shape":"ConnectionName"},
|
996
|
-
"connectionState":{"shape":"ConnectionState"},
|
997
|
-
"region":{"shape":"Region"},
|
998
|
-
"location":{"shape":"LocationCode"},
|
999
|
-
"bandwidth":{"shape":"Bandwidth"},
|
1000
|
-
"vlan":{"shape":"VLAN"},
|
1001
|
-
"partnerName":{"shape":"PartnerName"},
|
1002
|
-
"loaIssueTime":{"shape":"LoaIssueTime"},
|
1003
|
-
"lagId":{"shape":"LagId"},
|
1004
|
-
"awsDevice":{"shape":"AwsDevice"},
|
1005
|
-
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
|
1006
|
-
"awsDeviceV2":{"shape":"AwsDeviceV2"},
|
1007
|
-
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
|
1008
|
-
"tags":{"shape":"TagList"}
|
1009
|
-
}
|
1010
|
-
},
|
1011
|
-
"ConnectionId":{"type":"string"},
|
1012
|
-
"ConnectionList":{
|
1013
|
-
"type":"list",
|
1014
|
-
"member":{"shape":"Connection"}
|
1015
|
-
},
|
1016
|
-
"ConnectionName":{"type":"string"},
|
1017
|
-
"ConnectionState":{
|
1018
|
-
"type":"string",
|
1019
|
-
"enum":[
|
1020
|
-
"ordering",
|
1021
|
-
"requested",
|
1022
|
-
"pending",
|
1023
|
-
"available",
|
1024
|
-
"down",
|
1025
|
-
"deleting",
|
1026
|
-
"deleted",
|
1027
|
-
"rejected",
|
1028
|
-
"unknown"
|
1029
|
-
]
|
1030
|
-
},
|
1031
|
-
"Connections":{
|
1032
|
-
"type":"structure",
|
1033
|
-
"members":{
|
1034
|
-
"connections":{"shape":"ConnectionList"}
|
1035
|
-
}
|
1036
|
-
},
|
1037
|
-
"Count":{"type":"integer"},
|
1038
|
-
"CreateBGPPeerRequest":{
|
1039
|
-
"type":"structure",
|
1040
|
-
"members":{
|
1041
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
1042
|
-
"newBGPPeer":{"shape":"NewBGPPeer"}
|
1043
|
-
}
|
1044
|
-
},
|
1045
|
-
"CreateBGPPeerResponse":{
|
1046
|
-
"type":"structure",
|
1047
|
-
"members":{
|
1048
|
-
"virtualInterface":{"shape":"VirtualInterface"}
|
1049
|
-
}
|
1050
|
-
},
|
1051
|
-
"CreateConnectionRequest":{
|
1052
|
-
"type":"structure",
|
1053
|
-
"required":[
|
1054
|
-
"location",
|
1055
|
-
"bandwidth",
|
1056
|
-
"connectionName"
|
1057
|
-
],
|
1058
|
-
"members":{
|
1059
|
-
"location":{"shape":"LocationCode"},
|
1060
|
-
"bandwidth":{"shape":"Bandwidth"},
|
1061
|
-
"connectionName":{"shape":"ConnectionName"},
|
1062
|
-
"lagId":{"shape":"LagId"},
|
1063
|
-
"tags":{"shape":"TagList"}
|
1064
|
-
}
|
1065
|
-
},
|
1066
|
-
"CreateDirectConnectGatewayAssociationProposalRequest":{
|
1067
|
-
"type":"structure",
|
1068
|
-
"required":[
|
1069
|
-
"directConnectGatewayId",
|
1070
|
-
"directConnectGatewayOwnerAccount",
|
1071
|
-
"gatewayId"
|
1072
|
-
],
|
1073
|
-
"members":{
|
1074
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1075
|
-
"directConnectGatewayOwnerAccount":{"shape":"OwnerAccount"},
|
1076
|
-
"gatewayId":{"shape":"GatewayIdToAssociate"},
|
1077
|
-
"addAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"},
|
1078
|
-
"removeAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"}
|
1079
|
-
}
|
1080
|
-
},
|
1081
|
-
"CreateDirectConnectGatewayAssociationProposalResult":{
|
1082
|
-
"type":"structure",
|
1083
|
-
"members":{
|
1084
|
-
"directConnectGatewayAssociationProposal":{"shape":"DirectConnectGatewayAssociationProposal"}
|
1085
|
-
}
|
1086
|
-
},
|
1087
|
-
"CreateDirectConnectGatewayAssociationRequest":{
|
1088
|
-
"type":"structure",
|
1089
|
-
"required":["directConnectGatewayId"],
|
1090
|
-
"members":{
|
1091
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1092
|
-
"gatewayId":{"shape":"GatewayIdToAssociate"},
|
1093
|
-
"addAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"},
|
1094
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"}
|
1095
|
-
}
|
1096
|
-
},
|
1097
|
-
"CreateDirectConnectGatewayAssociationResult":{
|
1098
|
-
"type":"structure",
|
1099
|
-
"members":{
|
1100
|
-
"directConnectGatewayAssociation":{"shape":"DirectConnectGatewayAssociation"}
|
1101
|
-
}
|
1102
|
-
},
|
1103
|
-
"CreateDirectConnectGatewayRequest":{
|
1104
|
-
"type":"structure",
|
1105
|
-
"required":["directConnectGatewayName"],
|
1106
|
-
"members":{
|
1107
|
-
"directConnectGatewayName":{"shape":"DirectConnectGatewayName"},
|
1108
|
-
"amazonSideAsn":{"shape":"LongAsn"}
|
1109
|
-
}
|
1110
|
-
},
|
1111
|
-
"CreateDirectConnectGatewayResult":{
|
1112
|
-
"type":"structure",
|
1113
|
-
"members":{
|
1114
|
-
"directConnectGateway":{"shape":"DirectConnectGateway"}
|
1115
|
-
}
|
1116
|
-
},
|
1117
|
-
"CreateInterconnectRequest":{
|
1118
|
-
"type":"structure",
|
1119
|
-
"required":[
|
1120
|
-
"interconnectName",
|
1121
|
-
"bandwidth",
|
1122
|
-
"location"
|
1123
|
-
],
|
1124
|
-
"members":{
|
1125
|
-
"interconnectName":{"shape":"InterconnectName"},
|
1126
|
-
"bandwidth":{"shape":"Bandwidth"},
|
1127
|
-
"location":{"shape":"LocationCode"},
|
1128
|
-
"lagId":{"shape":"LagId"},
|
1129
|
-
"tags":{"shape":"TagList"}
|
1130
|
-
}
|
1131
|
-
},
|
1132
|
-
"CreateLagRequest":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"required":[
|
1135
|
-
"numberOfConnections",
|
1136
|
-
"location",
|
1137
|
-
"connectionsBandwidth",
|
1138
|
-
"lagName"
|
1139
|
-
],
|
1140
|
-
"members":{
|
1141
|
-
"numberOfConnections":{"shape":"Count"},
|
1142
|
-
"location":{"shape":"LocationCode"},
|
1143
|
-
"connectionsBandwidth":{"shape":"Bandwidth"},
|
1144
|
-
"lagName":{"shape":"LagName"},
|
1145
|
-
"connectionId":{"shape":"ConnectionId"},
|
1146
|
-
"tags":{"shape":"TagList"},
|
1147
|
-
"childConnectionTags":{"shape":"TagList"}
|
1148
|
-
}
|
1149
|
-
},
|
1150
|
-
"CreatePrivateVirtualInterfaceRequest":{
|
1151
|
-
"type":"structure",
|
1152
|
-
"required":[
|
1153
|
-
"connectionId",
|
1154
|
-
"newPrivateVirtualInterface"
|
1155
|
-
],
|
1156
|
-
"members":{
|
1157
|
-
"connectionId":{"shape":"ConnectionId"},
|
1158
|
-
"newPrivateVirtualInterface":{"shape":"NewPrivateVirtualInterface"}
|
1159
|
-
}
|
1160
|
-
},
|
1161
|
-
"CreatePublicVirtualInterfaceRequest":{
|
1162
|
-
"type":"structure",
|
1163
|
-
"required":[
|
1164
|
-
"connectionId",
|
1165
|
-
"newPublicVirtualInterface"
|
1166
|
-
],
|
1167
|
-
"members":{
|
1168
|
-
"connectionId":{"shape":"ConnectionId"},
|
1169
|
-
"newPublicVirtualInterface":{"shape":"NewPublicVirtualInterface"}
|
1170
|
-
}
|
1171
|
-
},
|
1172
|
-
"CreateTransitVirtualInterfaceRequest":{
|
1173
|
-
"type":"structure",
|
1174
|
-
"required":[
|
1175
|
-
"connectionId",
|
1176
|
-
"newTransitVirtualInterface"
|
1177
|
-
],
|
1178
|
-
"members":{
|
1179
|
-
"connectionId":{"shape":"ConnectionId"},
|
1180
|
-
"newTransitVirtualInterface":{"shape":"NewTransitVirtualInterface"}
|
1181
|
-
}
|
1182
|
-
},
|
1183
|
-
"CreateTransitVirtualInterfaceResult":{
|
1184
|
-
"type":"structure",
|
1185
|
-
"members":{
|
1186
|
-
"virtualInterface":{"shape":"VirtualInterface"}
|
1187
|
-
}
|
1188
|
-
},
|
1189
|
-
"CustomerAddress":{"type":"string"},
|
1190
|
-
"DeleteBGPPeerRequest":{
|
1191
|
-
"type":"structure",
|
1192
|
-
"members":{
|
1193
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
1194
|
-
"asn":{"shape":"ASN"},
|
1195
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1196
|
-
"bgpPeerId":{"shape":"BGPPeerId"}
|
1197
|
-
}
|
1198
|
-
},
|
1199
|
-
"DeleteBGPPeerResponse":{
|
1200
|
-
"type":"structure",
|
1201
|
-
"members":{
|
1202
|
-
"virtualInterface":{"shape":"VirtualInterface"}
|
1203
|
-
}
|
1204
|
-
},
|
1205
|
-
"DeleteConnectionRequest":{
|
1206
|
-
"type":"structure",
|
1207
|
-
"required":["connectionId"],
|
1208
|
-
"members":{
|
1209
|
-
"connectionId":{"shape":"ConnectionId"}
|
1210
|
-
}
|
1211
|
-
},
|
1212
|
-
"DeleteDirectConnectGatewayAssociationProposalRequest":{
|
1213
|
-
"type":"structure",
|
1214
|
-
"required":["proposalId"],
|
1215
|
-
"members":{
|
1216
|
-
"proposalId":{"shape":"DirectConnectGatewayAssociationProposalId"}
|
1217
|
-
}
|
1218
|
-
},
|
1219
|
-
"DeleteDirectConnectGatewayAssociationProposalResult":{
|
1220
|
-
"type":"structure",
|
1221
|
-
"members":{
|
1222
|
-
"directConnectGatewayAssociationProposal":{"shape":"DirectConnectGatewayAssociationProposal"}
|
1223
|
-
}
|
1224
|
-
},
|
1225
|
-
"DeleteDirectConnectGatewayAssociationRequest":{
|
1226
|
-
"type":"structure",
|
1227
|
-
"members":{
|
1228
|
-
"associationId":{"shape":"DirectConnectGatewayAssociationId"},
|
1229
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1230
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"}
|
1231
|
-
}
|
1232
|
-
},
|
1233
|
-
"DeleteDirectConnectGatewayAssociationResult":{
|
1234
|
-
"type":"structure",
|
1235
|
-
"members":{
|
1236
|
-
"directConnectGatewayAssociation":{"shape":"DirectConnectGatewayAssociation"}
|
1237
|
-
}
|
1238
|
-
},
|
1239
|
-
"DeleteDirectConnectGatewayRequest":{
|
1240
|
-
"type":"structure",
|
1241
|
-
"required":["directConnectGatewayId"],
|
1242
|
-
"members":{
|
1243
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"}
|
1244
|
-
}
|
1245
|
-
},
|
1246
|
-
"DeleteDirectConnectGatewayResult":{
|
1247
|
-
"type":"structure",
|
1248
|
-
"members":{
|
1249
|
-
"directConnectGateway":{"shape":"DirectConnectGateway"}
|
1250
|
-
}
|
1251
|
-
},
|
1252
|
-
"DeleteInterconnectRequest":{
|
1253
|
-
"type":"structure",
|
1254
|
-
"required":["interconnectId"],
|
1255
|
-
"members":{
|
1256
|
-
"interconnectId":{"shape":"InterconnectId"}
|
1257
|
-
}
|
1258
|
-
},
|
1259
|
-
"DeleteInterconnectResponse":{
|
1260
|
-
"type":"structure",
|
1261
|
-
"members":{
|
1262
|
-
"interconnectState":{"shape":"InterconnectState"}
|
1263
|
-
}
|
1264
|
-
},
|
1265
|
-
"DeleteLagRequest":{
|
1266
|
-
"type":"structure",
|
1267
|
-
"required":["lagId"],
|
1268
|
-
"members":{
|
1269
|
-
"lagId":{"shape":"LagId"}
|
1270
|
-
}
|
1271
|
-
},
|
1272
|
-
"DeleteVirtualInterfaceRequest":{
|
1273
|
-
"type":"structure",
|
1274
|
-
"required":["virtualInterfaceId"],
|
1275
|
-
"members":{
|
1276
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"}
|
1277
|
-
}
|
1278
|
-
},
|
1279
|
-
"DeleteVirtualInterfaceResponse":{
|
1280
|
-
"type":"structure",
|
1281
|
-
"members":{
|
1282
|
-
"virtualInterfaceState":{"shape":"VirtualInterfaceState"}
|
1283
|
-
}
|
1284
|
-
},
|
1285
|
-
"DescribeConnectionLoaRequest":{
|
1286
|
-
"type":"structure",
|
1287
|
-
"required":["connectionId"],
|
1288
|
-
"members":{
|
1289
|
-
"connectionId":{"shape":"ConnectionId"},
|
1290
|
-
"providerName":{"shape":"ProviderName"},
|
1291
|
-
"loaContentType":{"shape":"LoaContentType"}
|
1292
|
-
}
|
1293
|
-
},
|
1294
|
-
"DescribeConnectionLoaResponse":{
|
1295
|
-
"type":"structure",
|
1296
|
-
"members":{
|
1297
|
-
"loa":{"shape":"Loa"}
|
1298
|
-
}
|
1299
|
-
},
|
1300
|
-
"DescribeConnectionsOnInterconnectRequest":{
|
1301
|
-
"type":"structure",
|
1302
|
-
"required":["interconnectId"],
|
1303
|
-
"members":{
|
1304
|
-
"interconnectId":{"shape":"InterconnectId"}
|
1305
|
-
}
|
1306
|
-
},
|
1307
|
-
"DescribeConnectionsRequest":{
|
1308
|
-
"type":"structure",
|
1309
|
-
"members":{
|
1310
|
-
"connectionId":{"shape":"ConnectionId"}
|
1311
|
-
}
|
1312
|
-
},
|
1313
|
-
"DescribeDirectConnectGatewayAssociationProposalsRequest":{
|
1314
|
-
"type":"structure",
|
1315
|
-
"members":{
|
1316
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1317
|
-
"proposalId":{"shape":"DirectConnectGatewayAssociationProposalId"},
|
1318
|
-
"associatedGatewayId":{"shape":"AssociatedGatewayId"},
|
1319
|
-
"maxResults":{"shape":"MaxResultSetSize"},
|
1320
|
-
"nextToken":{"shape":"PaginationToken"}
|
1321
|
-
}
|
1322
|
-
},
|
1323
|
-
"DescribeDirectConnectGatewayAssociationProposalsResult":{
|
1324
|
-
"type":"structure",
|
1325
|
-
"members":{
|
1326
|
-
"directConnectGatewayAssociationProposals":{"shape":"DirectConnectGatewayAssociationProposalList"},
|
1327
|
-
"nextToken":{"shape":"PaginationToken"}
|
1328
|
-
}
|
1329
|
-
},
|
1330
|
-
"DescribeDirectConnectGatewayAssociationsRequest":{
|
1331
|
-
"type":"structure",
|
1332
|
-
"members":{
|
1333
|
-
"associationId":{"shape":"DirectConnectGatewayAssociationId"},
|
1334
|
-
"associatedGatewayId":{"shape":"AssociatedGatewayId"},
|
1335
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1336
|
-
"maxResults":{"shape":"MaxResultSetSize"},
|
1337
|
-
"nextToken":{"shape":"PaginationToken"},
|
1338
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"}
|
1339
|
-
}
|
1340
|
-
},
|
1341
|
-
"DescribeDirectConnectGatewayAssociationsResult":{
|
1342
|
-
"type":"structure",
|
1343
|
-
"members":{
|
1344
|
-
"directConnectGatewayAssociations":{"shape":"DirectConnectGatewayAssociationList"},
|
1345
|
-
"nextToken":{"shape":"PaginationToken"}
|
1346
|
-
}
|
1347
|
-
},
|
1348
|
-
"DescribeDirectConnectGatewayAttachmentsRequest":{
|
1349
|
-
"type":"structure",
|
1350
|
-
"members":{
|
1351
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1352
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
1353
|
-
"maxResults":{"shape":"MaxResultSetSize"},
|
1354
|
-
"nextToken":{"shape":"PaginationToken"}
|
1355
|
-
}
|
1356
|
-
},
|
1357
|
-
"DescribeDirectConnectGatewayAttachmentsResult":{
|
1358
|
-
"type":"structure",
|
1359
|
-
"members":{
|
1360
|
-
"directConnectGatewayAttachments":{"shape":"DirectConnectGatewayAttachmentList"},
|
1361
|
-
"nextToken":{"shape":"PaginationToken"}
|
1362
|
-
}
|
1363
|
-
},
|
1364
|
-
"DescribeDirectConnectGatewaysRequest":{
|
1365
|
-
"type":"structure",
|
1366
|
-
"members":{
|
1367
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1368
|
-
"maxResults":{"shape":"MaxResultSetSize"},
|
1369
|
-
"nextToken":{"shape":"PaginationToken"}
|
1370
|
-
}
|
1371
|
-
},
|
1372
|
-
"DescribeDirectConnectGatewaysResult":{
|
1373
|
-
"type":"structure",
|
1374
|
-
"members":{
|
1375
|
-
"directConnectGateways":{"shape":"DirectConnectGatewayList"},
|
1376
|
-
"nextToken":{"shape":"PaginationToken"}
|
1377
|
-
}
|
1378
|
-
},
|
1379
|
-
"DescribeHostedConnectionsRequest":{
|
1380
|
-
"type":"structure",
|
1381
|
-
"required":["connectionId"],
|
1382
|
-
"members":{
|
1383
|
-
"connectionId":{"shape":"ConnectionId"}
|
1384
|
-
}
|
1385
|
-
},
|
1386
|
-
"DescribeInterconnectLoaRequest":{
|
1387
|
-
"type":"structure",
|
1388
|
-
"required":["interconnectId"],
|
1389
|
-
"members":{
|
1390
|
-
"interconnectId":{"shape":"InterconnectId"},
|
1391
|
-
"providerName":{"shape":"ProviderName"},
|
1392
|
-
"loaContentType":{"shape":"LoaContentType"}
|
1393
|
-
}
|
1394
|
-
},
|
1395
|
-
"DescribeInterconnectLoaResponse":{
|
1396
|
-
"type":"structure",
|
1397
|
-
"members":{
|
1398
|
-
"loa":{"shape":"Loa"}
|
1399
|
-
}
|
1400
|
-
},
|
1401
|
-
"DescribeInterconnectsRequest":{
|
1402
|
-
"type":"structure",
|
1403
|
-
"members":{
|
1404
|
-
"interconnectId":{"shape":"InterconnectId"}
|
1405
|
-
}
|
1406
|
-
},
|
1407
|
-
"DescribeLagsRequest":{
|
1408
|
-
"type":"structure",
|
1409
|
-
"members":{
|
1410
|
-
"lagId":{"shape":"LagId"}
|
1411
|
-
}
|
1412
|
-
},
|
1413
|
-
"DescribeLoaRequest":{
|
1414
|
-
"type":"structure",
|
1415
|
-
"required":["connectionId"],
|
1416
|
-
"members":{
|
1417
|
-
"connectionId":{"shape":"ConnectionId"},
|
1418
|
-
"providerName":{"shape":"ProviderName"},
|
1419
|
-
"loaContentType":{"shape":"LoaContentType"}
|
1420
|
-
}
|
1421
|
-
},
|
1422
|
-
"DescribeTagsRequest":{
|
1423
|
-
"type":"structure",
|
1424
|
-
"required":["resourceArns"],
|
1425
|
-
"members":{
|
1426
|
-
"resourceArns":{"shape":"ResourceArnList"}
|
1427
|
-
}
|
1428
|
-
},
|
1429
|
-
"DescribeTagsResponse":{
|
1430
|
-
"type":"structure",
|
1431
|
-
"members":{
|
1432
|
-
"resourceTags":{"shape":"ResourceTagList"}
|
1433
|
-
}
|
1434
|
-
},
|
1435
|
-
"DescribeVirtualInterfacesRequest":{
|
1436
|
-
"type":"structure",
|
1437
|
-
"members":{
|
1438
|
-
"connectionId":{"shape":"ConnectionId"},
|
1439
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"}
|
1440
|
-
}
|
1441
|
-
},
|
1442
|
-
"DirectConnectClientException":{
|
1443
|
-
"type":"structure",
|
1444
|
-
"members":{
|
1445
|
-
"message":{"shape":"ErrorMessage"}
|
1446
|
-
},
|
1447
|
-
"exception":true
|
1448
|
-
},
|
1449
|
-
"DirectConnectGateway":{
|
1450
|
-
"type":"structure",
|
1451
|
-
"members":{
|
1452
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1453
|
-
"directConnectGatewayName":{"shape":"DirectConnectGatewayName"},
|
1454
|
-
"amazonSideAsn":{"shape":"LongAsn"},
|
1455
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
1456
|
-
"directConnectGatewayState":{"shape":"DirectConnectGatewayState"},
|
1457
|
-
"stateChangeError":{"shape":"StateChangeError"}
|
1458
|
-
}
|
1459
|
-
},
|
1460
|
-
"DirectConnectGatewayAssociation":{
|
1461
|
-
"type":"structure",
|
1462
|
-
"members":{
|
1463
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1464
|
-
"directConnectGatewayOwnerAccount":{"shape":"OwnerAccount"},
|
1465
|
-
"associationState":{"shape":"DirectConnectGatewayAssociationState"},
|
1466
|
-
"stateChangeError":{"shape":"StateChangeError"},
|
1467
|
-
"associatedGateway":{"shape":"AssociatedGateway"},
|
1468
|
-
"associationId":{"shape":"DirectConnectGatewayAssociationId"},
|
1469
|
-
"allowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"},
|
1470
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"},
|
1471
|
-
"virtualGatewayRegion":{"shape":"VirtualGatewayRegion"},
|
1472
|
-
"virtualGatewayOwnerAccount":{"shape":"OwnerAccount"}
|
1473
|
-
}
|
1474
|
-
},
|
1475
|
-
"DirectConnectGatewayAssociationId":{"type":"string"},
|
1476
|
-
"DirectConnectGatewayAssociationList":{
|
1477
|
-
"type":"list",
|
1478
|
-
"member":{"shape":"DirectConnectGatewayAssociation"}
|
1479
|
-
},
|
1480
|
-
"DirectConnectGatewayAssociationProposal":{
|
1481
|
-
"type":"structure",
|
1482
|
-
"members":{
|
1483
|
-
"proposalId":{"shape":"DirectConnectGatewayAssociationProposalId"},
|
1484
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1485
|
-
"directConnectGatewayOwnerAccount":{"shape":"OwnerAccount"},
|
1486
|
-
"proposalState":{"shape":"DirectConnectGatewayAssociationProposalState"},
|
1487
|
-
"associatedGateway":{"shape":"AssociatedGateway"},
|
1488
|
-
"existingAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"},
|
1489
|
-
"requestedAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"}
|
1490
|
-
}
|
1491
|
-
},
|
1492
|
-
"DirectConnectGatewayAssociationProposalId":{"type":"string"},
|
1493
|
-
"DirectConnectGatewayAssociationProposalList":{
|
1494
|
-
"type":"list",
|
1495
|
-
"member":{"shape":"DirectConnectGatewayAssociationProposal"}
|
1496
|
-
},
|
1497
|
-
"DirectConnectGatewayAssociationProposalState":{
|
1498
|
-
"type":"string",
|
1499
|
-
"enum":[
|
1500
|
-
"requested",
|
1501
|
-
"accepted",
|
1502
|
-
"deleted"
|
1503
|
-
]
|
1504
|
-
},
|
1505
|
-
"DirectConnectGatewayAssociationState":{
|
1506
|
-
"type":"string",
|
1507
|
-
"enum":[
|
1508
|
-
"associating",
|
1509
|
-
"associated",
|
1510
|
-
"disassociating",
|
1511
|
-
"disassociated",
|
1512
|
-
"updating"
|
1513
|
-
]
|
1514
|
-
},
|
1515
|
-
"DirectConnectGatewayAttachment":{
|
1516
|
-
"type":"structure",
|
1517
|
-
"members":{
|
1518
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1519
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
1520
|
-
"virtualInterfaceRegion":{"shape":"VirtualInterfaceRegion"},
|
1521
|
-
"virtualInterfaceOwnerAccount":{"shape":"OwnerAccount"},
|
1522
|
-
"attachmentState":{"shape":"DirectConnectGatewayAttachmentState"},
|
1523
|
-
"attachmentType":{"shape":"DirectConnectGatewayAttachmentType"},
|
1524
|
-
"stateChangeError":{"shape":"StateChangeError"}
|
1525
|
-
}
|
1526
|
-
},
|
1527
|
-
"DirectConnectGatewayAttachmentList":{
|
1528
|
-
"type":"list",
|
1529
|
-
"member":{"shape":"DirectConnectGatewayAttachment"}
|
1530
|
-
},
|
1531
|
-
"DirectConnectGatewayAttachmentState":{
|
1532
|
-
"type":"string",
|
1533
|
-
"enum":[
|
1534
|
-
"attaching",
|
1535
|
-
"attached",
|
1536
|
-
"detaching",
|
1537
|
-
"detached"
|
1538
|
-
]
|
1539
|
-
},
|
1540
|
-
"DirectConnectGatewayAttachmentType":{
|
1541
|
-
"type":"string",
|
1542
|
-
"enum":[
|
1543
|
-
"TransitVirtualInterface",
|
1544
|
-
"PrivateVirtualInterface"
|
1545
|
-
]
|
1546
|
-
},
|
1547
|
-
"DirectConnectGatewayId":{"type":"string"},
|
1548
|
-
"DirectConnectGatewayList":{
|
1549
|
-
"type":"list",
|
1550
|
-
"member":{"shape":"DirectConnectGateway"}
|
1551
|
-
},
|
1552
|
-
"DirectConnectGatewayName":{"type":"string"},
|
1553
|
-
"DirectConnectGatewayState":{
|
1554
|
-
"type":"string",
|
1555
|
-
"enum":[
|
1556
|
-
"pending",
|
1557
|
-
"available",
|
1558
|
-
"deleting",
|
1559
|
-
"deleted"
|
1560
|
-
]
|
1561
|
-
},
|
1562
|
-
"DirectConnectServerException":{
|
1563
|
-
"type":"structure",
|
1564
|
-
"members":{
|
1565
|
-
"message":{"shape":"ErrorMessage"}
|
1566
|
-
},
|
1567
|
-
"exception":true
|
1568
|
-
},
|
1569
|
-
"DisassociateConnectionFromLagRequest":{
|
1570
|
-
"type":"structure",
|
1571
|
-
"required":[
|
1572
|
-
"connectionId",
|
1573
|
-
"lagId"
|
1574
|
-
],
|
1575
|
-
"members":{
|
1576
|
-
"connectionId":{"shape":"ConnectionId"},
|
1577
|
-
"lagId":{"shape":"LagId"}
|
1578
|
-
}
|
1579
|
-
},
|
1580
|
-
"DuplicateTagKeysException":{
|
1581
|
-
"type":"structure",
|
1582
|
-
"members":{
|
1583
|
-
},
|
1584
|
-
"exception":true
|
1585
|
-
},
|
1586
|
-
"ErrorMessage":{"type":"string"},
|
1587
|
-
"GatewayIdToAssociate":{"type":"string"},
|
1588
|
-
"GatewayIdentifier":{"type":"string"},
|
1589
|
-
"GatewayType":{
|
1590
|
-
"type":"string",
|
1591
|
-
"enum":[
|
1592
|
-
"virtualPrivateGateway",
|
1593
|
-
"transitGateway"
|
1594
|
-
]
|
1595
|
-
},
|
1596
|
-
"HasLogicalRedundancy":{
|
1597
|
-
"type":"string",
|
1598
|
-
"enum":[
|
1599
|
-
"unknown",
|
1600
|
-
"yes",
|
1601
|
-
"no"
|
1602
|
-
]
|
1603
|
-
},
|
1604
|
-
"Interconnect":{
|
1605
|
-
"type":"structure",
|
1606
|
-
"members":{
|
1607
|
-
"interconnectId":{"shape":"InterconnectId"},
|
1608
|
-
"interconnectName":{"shape":"InterconnectName"},
|
1609
|
-
"interconnectState":{"shape":"InterconnectState"},
|
1610
|
-
"region":{"shape":"Region"},
|
1611
|
-
"location":{"shape":"LocationCode"},
|
1612
|
-
"bandwidth":{"shape":"Bandwidth"},
|
1613
|
-
"loaIssueTime":{"shape":"LoaIssueTime"},
|
1614
|
-
"lagId":{"shape":"LagId"},
|
1615
|
-
"awsDevice":{"shape":"AwsDevice"},
|
1616
|
-
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
|
1617
|
-
"awsDeviceV2":{"shape":"AwsDeviceV2"},
|
1618
|
-
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
|
1619
|
-
"tags":{"shape":"TagList"}
|
1620
|
-
}
|
1621
|
-
},
|
1622
|
-
"InterconnectId":{"type":"string"},
|
1623
|
-
"InterconnectList":{
|
1624
|
-
"type":"list",
|
1625
|
-
"member":{"shape":"Interconnect"}
|
1626
|
-
},
|
1627
|
-
"InterconnectName":{"type":"string"},
|
1628
|
-
"InterconnectState":{
|
1629
|
-
"type":"string",
|
1630
|
-
"enum":[
|
1631
|
-
"requested",
|
1632
|
-
"pending",
|
1633
|
-
"available",
|
1634
|
-
"down",
|
1635
|
-
"deleting",
|
1636
|
-
"deleted",
|
1637
|
-
"unknown"
|
1638
|
-
]
|
1639
|
-
},
|
1640
|
-
"Interconnects":{
|
1641
|
-
"type":"structure",
|
1642
|
-
"members":{
|
1643
|
-
"interconnects":{"shape":"InterconnectList"}
|
1644
|
-
}
|
1645
|
-
},
|
1646
|
-
"JumboFrameCapable":{"type":"boolean"},
|
1647
|
-
"Lag":{
|
1648
|
-
"type":"structure",
|
1649
|
-
"members":{
|
1650
|
-
"connectionsBandwidth":{"shape":"Bandwidth"},
|
1651
|
-
"numberOfConnections":{"shape":"Count"},
|
1652
|
-
"lagId":{"shape":"LagId"},
|
1653
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
1654
|
-
"lagName":{"shape":"LagName"},
|
1655
|
-
"lagState":{"shape":"LagState"},
|
1656
|
-
"location":{"shape":"LocationCode"},
|
1657
|
-
"region":{"shape":"Region"},
|
1658
|
-
"minimumLinks":{"shape":"Count"},
|
1659
|
-
"awsDevice":{"shape":"AwsDevice"},
|
1660
|
-
"awsDeviceV2":{"shape":"AwsDeviceV2"},
|
1661
|
-
"connections":{"shape":"ConnectionList"},
|
1662
|
-
"allowsHostedConnections":{"shape":"BooleanFlag"},
|
1663
|
-
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
|
1664
|
-
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
|
1665
|
-
"tags":{"shape":"TagList"}
|
1666
|
-
}
|
1667
|
-
},
|
1668
|
-
"LagId":{"type":"string"},
|
1669
|
-
"LagList":{
|
1670
|
-
"type":"list",
|
1671
|
-
"member":{"shape":"Lag"}
|
1672
|
-
},
|
1673
|
-
"LagName":{"type":"string"},
|
1674
|
-
"LagState":{
|
1675
|
-
"type":"string",
|
1676
|
-
"enum":[
|
1677
|
-
"requested",
|
1678
|
-
"pending",
|
1679
|
-
"available",
|
1680
|
-
"down",
|
1681
|
-
"deleting",
|
1682
|
-
"deleted",
|
1683
|
-
"unknown"
|
1684
|
-
]
|
1685
|
-
},
|
1686
|
-
"Lags":{
|
1687
|
-
"type":"structure",
|
1688
|
-
"members":{
|
1689
|
-
"lags":{"shape":"LagList"}
|
1690
|
-
}
|
1691
|
-
},
|
1692
|
-
"Loa":{
|
1693
|
-
"type":"structure",
|
1694
|
-
"members":{
|
1695
|
-
"loaContent":{"shape":"LoaContent"},
|
1696
|
-
"loaContentType":{"shape":"LoaContentType"}
|
1697
|
-
}
|
1698
|
-
},
|
1699
|
-
"LoaContent":{"type":"blob"},
|
1700
|
-
"LoaContentType":{
|
1701
|
-
"type":"string",
|
1702
|
-
"enum":["application/pdf"]
|
1703
|
-
},
|
1704
|
-
"LoaIssueTime":{"type":"timestamp"},
|
1705
|
-
"Location":{
|
1706
|
-
"type":"structure",
|
1707
|
-
"members":{
|
1708
|
-
"locationCode":{"shape":"LocationCode"},
|
1709
|
-
"locationName":{"shape":"LocationName"},
|
1710
|
-
"region":{"shape":"Region"},
|
1711
|
-
"availablePortSpeeds":{"shape":"AvailablePortSpeeds"}
|
1712
|
-
}
|
1713
|
-
},
|
1714
|
-
"LocationCode":{"type":"string"},
|
1715
|
-
"LocationList":{
|
1716
|
-
"type":"list",
|
1717
|
-
"member":{"shape":"Location"}
|
1718
|
-
},
|
1719
|
-
"LocationName":{"type":"string"},
|
1720
|
-
"Locations":{
|
1721
|
-
"type":"structure",
|
1722
|
-
"members":{
|
1723
|
-
"locations":{"shape":"LocationList"}
|
1724
|
-
}
|
1725
|
-
},
|
1726
|
-
"LongAsn":{"type":"long"},
|
1727
|
-
"MTU":{"type":"integer"},
|
1728
|
-
"MaxResultSetSize":{
|
1729
|
-
"type":"integer",
|
1730
|
-
"box":true
|
1731
|
-
},
|
1732
|
-
"NewBGPPeer":{
|
1733
|
-
"type":"structure",
|
1734
|
-
"members":{
|
1735
|
-
"asn":{"shape":"ASN"},
|
1736
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1737
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1738
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1739
|
-
"customerAddress":{"shape":"CustomerAddress"}
|
1740
|
-
}
|
1741
|
-
},
|
1742
|
-
"NewPrivateVirtualInterface":{
|
1743
|
-
"type":"structure",
|
1744
|
-
"required":[
|
1745
|
-
"virtualInterfaceName",
|
1746
|
-
"vlan",
|
1747
|
-
"asn"
|
1748
|
-
],
|
1749
|
-
"members":{
|
1750
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1751
|
-
"vlan":{"shape":"VLAN"},
|
1752
|
-
"asn":{"shape":"ASN"},
|
1753
|
-
"mtu":{"shape":"MTU"},
|
1754
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1755
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1756
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1757
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1758
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"},
|
1759
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1760
|
-
"tags":{"shape":"TagList"}
|
1761
|
-
}
|
1762
|
-
},
|
1763
|
-
"NewPrivateVirtualInterfaceAllocation":{
|
1764
|
-
"type":"structure",
|
1765
|
-
"required":[
|
1766
|
-
"virtualInterfaceName",
|
1767
|
-
"vlan",
|
1768
|
-
"asn"
|
1769
|
-
],
|
1770
|
-
"members":{
|
1771
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1772
|
-
"vlan":{"shape":"VLAN"},
|
1773
|
-
"asn":{"shape":"ASN"},
|
1774
|
-
"mtu":{"shape":"MTU"},
|
1775
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1776
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1777
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1778
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1779
|
-
"tags":{"shape":"TagList"}
|
1780
|
-
}
|
1781
|
-
},
|
1782
|
-
"NewPublicVirtualInterface":{
|
1783
|
-
"type":"structure",
|
1784
|
-
"required":[
|
1785
|
-
"virtualInterfaceName",
|
1786
|
-
"vlan",
|
1787
|
-
"asn"
|
1788
|
-
],
|
1789
|
-
"members":{
|
1790
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1791
|
-
"vlan":{"shape":"VLAN"},
|
1792
|
-
"asn":{"shape":"ASN"},
|
1793
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1794
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1795
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1796
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1797
|
-
"routeFilterPrefixes":{"shape":"RouteFilterPrefixList"},
|
1798
|
-
"tags":{"shape":"TagList"}
|
1799
|
-
}
|
1800
|
-
},
|
1801
|
-
"NewPublicVirtualInterfaceAllocation":{
|
1802
|
-
"type":"structure",
|
1803
|
-
"required":[
|
1804
|
-
"virtualInterfaceName",
|
1805
|
-
"vlan",
|
1806
|
-
"asn"
|
1807
|
-
],
|
1808
|
-
"members":{
|
1809
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1810
|
-
"vlan":{"shape":"VLAN"},
|
1811
|
-
"asn":{"shape":"ASN"},
|
1812
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1813
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1814
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1815
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1816
|
-
"routeFilterPrefixes":{"shape":"RouteFilterPrefixList"},
|
1817
|
-
"tags":{"shape":"TagList"}
|
1818
|
-
}
|
1819
|
-
},
|
1820
|
-
"NewTransitVirtualInterface":{
|
1821
|
-
"type":"structure",
|
1822
|
-
"members":{
|
1823
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1824
|
-
"vlan":{"shape":"VLAN"},
|
1825
|
-
"asn":{"shape":"ASN"},
|
1826
|
-
"mtu":{"shape":"MTU"},
|
1827
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1828
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1829
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1830
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1831
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
1832
|
-
"tags":{"shape":"TagList"}
|
1833
|
-
}
|
1834
|
-
},
|
1835
|
-
"NewTransitVirtualInterfaceAllocation":{
|
1836
|
-
"type":"structure",
|
1837
|
-
"members":{
|
1838
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
1839
|
-
"vlan":{"shape":"VLAN"},
|
1840
|
-
"asn":{"shape":"ASN"},
|
1841
|
-
"mtu":{"shape":"MTU"},
|
1842
|
-
"authKey":{"shape":"BGPAuthKey"},
|
1843
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
1844
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
1845
|
-
"addressFamily":{"shape":"AddressFamily"},
|
1846
|
-
"tags":{"shape":"TagList"}
|
1847
|
-
}
|
1848
|
-
},
|
1849
|
-
"OwnerAccount":{"type":"string"},
|
1850
|
-
"PaginationToken":{"type":"string"},
|
1851
|
-
"PartnerName":{"type":"string"},
|
1852
|
-
"PortSpeed":{"type":"string"},
|
1853
|
-
"ProviderName":{"type":"string"},
|
1854
|
-
"Region":{"type":"string"},
|
1855
|
-
"ResourceArn":{"type":"string"},
|
1856
|
-
"ResourceArnList":{
|
1857
|
-
"type":"list",
|
1858
|
-
"member":{"shape":"ResourceArn"}
|
1859
|
-
},
|
1860
|
-
"ResourceTag":{
|
1861
|
-
"type":"structure",
|
1862
|
-
"members":{
|
1863
|
-
"resourceArn":{"shape":"ResourceArn"},
|
1864
|
-
"tags":{"shape":"TagList"}
|
1865
|
-
}
|
1866
|
-
},
|
1867
|
-
"ResourceTagList":{
|
1868
|
-
"type":"list",
|
1869
|
-
"member":{"shape":"ResourceTag"}
|
1870
|
-
},
|
1871
|
-
"RouteFilterPrefix":{
|
1872
|
-
"type":"structure",
|
1873
|
-
"members":{
|
1874
|
-
"cidr":{"shape":"CIDR"}
|
1875
|
-
}
|
1876
|
-
},
|
1877
|
-
"RouteFilterPrefixList":{
|
1878
|
-
"type":"list",
|
1879
|
-
"member":{"shape":"RouteFilterPrefix"}
|
1880
|
-
},
|
1881
|
-
"RouterConfig":{"type":"string"},
|
1882
|
-
"StateChangeError":{"type":"string"},
|
1883
|
-
"Tag":{
|
1884
|
-
"type":"structure",
|
1885
|
-
"required":["key"],
|
1886
|
-
"members":{
|
1887
|
-
"key":{"shape":"TagKey"},
|
1888
|
-
"value":{"shape":"TagValue"}
|
1889
|
-
}
|
1890
|
-
},
|
1891
|
-
"TagKey":{
|
1892
|
-
"type":"string",
|
1893
|
-
"max":128,
|
1894
|
-
"min":1,
|
1895
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1896
|
-
},
|
1897
|
-
"TagKeyList":{
|
1898
|
-
"type":"list",
|
1899
|
-
"member":{"shape":"TagKey"}
|
1900
|
-
},
|
1901
|
-
"TagList":{
|
1902
|
-
"type":"list",
|
1903
|
-
"member":{"shape":"Tag"},
|
1904
|
-
"min":1
|
1905
|
-
},
|
1906
|
-
"TagResourceRequest":{
|
1907
|
-
"type":"structure",
|
1908
|
-
"required":[
|
1909
|
-
"resourceArn",
|
1910
|
-
"tags"
|
1911
|
-
],
|
1912
|
-
"members":{
|
1913
|
-
"resourceArn":{"shape":"ResourceArn"},
|
1914
|
-
"tags":{"shape":"TagList"}
|
1915
|
-
}
|
1916
|
-
},
|
1917
|
-
"TagResourceResponse":{
|
1918
|
-
"type":"structure",
|
1919
|
-
"members":{
|
1920
|
-
}
|
1921
|
-
},
|
1922
|
-
"TagValue":{
|
1923
|
-
"type":"string",
|
1924
|
-
"max":256,
|
1925
|
-
"min":0,
|
1926
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1927
|
-
},
|
1928
|
-
"TooManyTagsException":{
|
1929
|
-
"type":"structure",
|
1930
|
-
"members":{
|
1931
|
-
},
|
1932
|
-
"exception":true
|
1933
|
-
},
|
1934
|
-
"UntagResourceRequest":{
|
1935
|
-
"type":"structure",
|
1936
|
-
"required":[
|
1937
|
-
"resourceArn",
|
1938
|
-
"tagKeys"
|
1939
|
-
],
|
1940
|
-
"members":{
|
1941
|
-
"resourceArn":{"shape":"ResourceArn"},
|
1942
|
-
"tagKeys":{"shape":"TagKeyList"}
|
1943
|
-
}
|
1944
|
-
},
|
1945
|
-
"UntagResourceResponse":{
|
1946
|
-
"type":"structure",
|
1947
|
-
"members":{
|
1948
|
-
}
|
1949
|
-
},
|
1950
|
-
"UpdateDirectConnectGatewayAssociationRequest":{
|
1951
|
-
"type":"structure",
|
1952
|
-
"members":{
|
1953
|
-
"associationId":{"shape":"DirectConnectGatewayAssociationId"},
|
1954
|
-
"addAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"},
|
1955
|
-
"removeAllowedPrefixesToDirectConnectGateway":{"shape":"RouteFilterPrefixList"}
|
1956
|
-
}
|
1957
|
-
},
|
1958
|
-
"UpdateDirectConnectGatewayAssociationResult":{
|
1959
|
-
"type":"structure",
|
1960
|
-
"members":{
|
1961
|
-
"directConnectGatewayAssociation":{"shape":"DirectConnectGatewayAssociation"}
|
1962
|
-
}
|
1963
|
-
},
|
1964
|
-
"UpdateLagRequest":{
|
1965
|
-
"type":"structure",
|
1966
|
-
"required":["lagId"],
|
1967
|
-
"members":{
|
1968
|
-
"lagId":{"shape":"LagId"},
|
1969
|
-
"lagName":{"shape":"LagName"},
|
1970
|
-
"minimumLinks":{"shape":"Count"}
|
1971
|
-
}
|
1972
|
-
},
|
1973
|
-
"UpdateVirtualInterfaceAttributesRequest":{
|
1974
|
-
"type":"structure",
|
1975
|
-
"required":["virtualInterfaceId"],
|
1976
|
-
"members":{
|
1977
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
1978
|
-
"mtu":{"shape":"MTU"}
|
1979
|
-
}
|
1980
|
-
},
|
1981
|
-
"VLAN":{"type":"integer"},
|
1982
|
-
"VirtualGateway":{
|
1983
|
-
"type":"structure",
|
1984
|
-
"members":{
|
1985
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"},
|
1986
|
-
"virtualGatewayState":{"shape":"VirtualGatewayState"}
|
1987
|
-
}
|
1988
|
-
},
|
1989
|
-
"VirtualGatewayId":{
|
1990
|
-
"type":"string",
|
1991
|
-
"deprecated":true
|
1992
|
-
},
|
1993
|
-
"VirtualGatewayList":{
|
1994
|
-
"type":"list",
|
1995
|
-
"member":{"shape":"VirtualGateway"}
|
1996
|
-
},
|
1997
|
-
"VirtualGatewayRegion":{
|
1998
|
-
"type":"string",
|
1999
|
-
"deprecated":true
|
2000
|
-
},
|
2001
|
-
"VirtualGatewayState":{"type":"string"},
|
2002
|
-
"VirtualGateways":{
|
2003
|
-
"type":"structure",
|
2004
|
-
"members":{
|
2005
|
-
"virtualGateways":{"shape":"VirtualGatewayList"}
|
2006
|
-
}
|
2007
|
-
},
|
2008
|
-
"VirtualInterface":{
|
2009
|
-
"type":"structure",
|
2010
|
-
"members":{
|
2011
|
-
"ownerAccount":{"shape":"OwnerAccount"},
|
2012
|
-
"virtualInterfaceId":{"shape":"VirtualInterfaceId"},
|
2013
|
-
"location":{"shape":"LocationCode"},
|
2014
|
-
"connectionId":{"shape":"ConnectionId"},
|
2015
|
-
"virtualInterfaceType":{"shape":"VirtualInterfaceType"},
|
2016
|
-
"virtualInterfaceName":{"shape":"VirtualInterfaceName"},
|
2017
|
-
"vlan":{"shape":"VLAN"},
|
2018
|
-
"asn":{"shape":"ASN"},
|
2019
|
-
"amazonSideAsn":{"shape":"LongAsn"},
|
2020
|
-
"authKey":{"shape":"BGPAuthKey"},
|
2021
|
-
"amazonAddress":{"shape":"AmazonAddress"},
|
2022
|
-
"customerAddress":{"shape":"CustomerAddress"},
|
2023
|
-
"addressFamily":{"shape":"AddressFamily"},
|
2024
|
-
"virtualInterfaceState":{"shape":"VirtualInterfaceState"},
|
2025
|
-
"customerRouterConfig":{"shape":"RouterConfig"},
|
2026
|
-
"mtu":{"shape":"MTU"},
|
2027
|
-
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
|
2028
|
-
"virtualGatewayId":{"shape":"VirtualGatewayId"},
|
2029
|
-
"directConnectGatewayId":{"shape":"DirectConnectGatewayId"},
|
2030
|
-
"routeFilterPrefixes":{"shape":"RouteFilterPrefixList"},
|
2031
|
-
"bgpPeers":{"shape":"BGPPeerList"},
|
2032
|
-
"region":{"shape":"Region"},
|
2033
|
-
"awsDeviceV2":{"shape":"AwsDeviceV2"},
|
2034
|
-
"tags":{"shape":"TagList"}
|
2035
|
-
}
|
2036
|
-
},
|
2037
|
-
"VirtualInterfaceId":{"type":"string"},
|
2038
|
-
"VirtualInterfaceList":{
|
2039
|
-
"type":"list",
|
2040
|
-
"member":{"shape":"VirtualInterface"}
|
2041
|
-
},
|
2042
|
-
"VirtualInterfaceName":{"type":"string"},
|
2043
|
-
"VirtualInterfaceRegion":{"type":"string"},
|
2044
|
-
"VirtualInterfaceState":{
|
2045
|
-
"type":"string",
|
2046
|
-
"enum":[
|
2047
|
-
"confirming",
|
2048
|
-
"verifying",
|
2049
|
-
"pending",
|
2050
|
-
"available",
|
2051
|
-
"down",
|
2052
|
-
"deleting",
|
2053
|
-
"deleted",
|
2054
|
-
"rejected",
|
2055
|
-
"unknown"
|
2056
|
-
]
|
2057
|
-
},
|
2058
|
-
"VirtualInterfaceType":{"type":"string"},
|
2059
|
-
"VirtualInterfaces":{
|
2060
|
-
"type":"structure",
|
2061
|
-
"members":{
|
2062
|
-
"virtualInterfaces":{"shape":"VirtualInterfaceList"}
|
2063
|
-
}
|
2064
|
-
}
|
2065
|
-
}
|
2066
|
-
}
|