aws-sdk-core 2.11.391 → 3.70.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 -555
- 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 +11 -12
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -17
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -22
- 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 +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1055
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -2171
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5384
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -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 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -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 -985
- 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 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1348
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -3499
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -39
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -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 -1048
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1290
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -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 -5371
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -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 -681
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1926
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1337
- 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 -2074
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -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 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -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 -25611
- 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 -1615
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2902
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
- 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 -1572
- 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 -1383
- 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 -701
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3495
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6297
- 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 -5106
- 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 -2223
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1144
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/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 -1950
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -5015
- 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 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8350
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -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 -1526
- 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 -2538
- 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 -817
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1712
- 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 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -10826
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -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 -1021
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -540
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6880
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -140
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4995
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -100
- 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 -2160
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
- 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 -6587
- 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 -5281
- 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/savingsplans/2019-06-28/api-2.json +0 -749
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -955
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8916
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -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-streaming/2017-10-26/api-2.json +0 -262
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -516
- 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 -940
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1764
- 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 -5463
- 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 -303
- 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/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/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 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/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/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -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/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -777
@@ -1,34 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListApplicationRevisions": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"output_token": "nextToken",
|
6
|
-
"result_key": "revisions"
|
7
|
-
},
|
8
|
-
"ListApplications": {
|
9
|
-
"input_token": "nextToken",
|
10
|
-
"output_token": "nextToken",
|
11
|
-
"result_key": "applications"
|
12
|
-
},
|
13
|
-
"ListDeploymentConfigs": {
|
14
|
-
"input_token": "nextToken",
|
15
|
-
"output_token": "nextToken",
|
16
|
-
"result_key": "deploymentConfigsList"
|
17
|
-
},
|
18
|
-
"ListDeploymentGroups": {
|
19
|
-
"input_token": "nextToken",
|
20
|
-
"output_token": "nextToken",
|
21
|
-
"result_key": "deploymentGroups"
|
22
|
-
},
|
23
|
-
"ListDeploymentInstances": {
|
24
|
-
"input_token": "nextToken",
|
25
|
-
"output_token": "nextToken",
|
26
|
-
"result_key": "instancesList"
|
27
|
-
},
|
28
|
-
"ListDeployments": {
|
29
|
-
"input_token": "nextToken",
|
30
|
-
"output_token": "nextToken",
|
31
|
-
"result_key": "deployments"
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "ListApplications",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "GetDeployment",
|
12
|
-
"input": {
|
13
|
-
"deploymentId": "d-USUAELQEX"
|
14
|
-
},
|
15
|
-
"errorExpectedFromService": true
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"DeploymentSuccessful": {
|
5
|
-
"delay": 15,
|
6
|
-
"operation": "GetDeployment",
|
7
|
-
"maxAttempts": 120,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"expected": "Succeeded",
|
11
|
-
"matcher": "path",
|
12
|
-
"state": "success",
|
13
|
-
"argument": "deploymentInfo.status"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"expected": "Failed",
|
17
|
-
"matcher": "path",
|
18
|
-
"state": "failure",
|
19
|
-
"argument": "deploymentInfo.status"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"expected": "Stopped",
|
23
|
-
"matcher": "path",
|
24
|
-
"state": "failure",
|
25
|
-
"argument": "deploymentInfo.status"
|
26
|
-
}
|
27
|
-
]
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
@@ -1,2406 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2015-07-09",
|
5
|
-
"endpointPrefix":"codepipeline",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceAbbreviation":"CodePipeline",
|
9
|
-
"serviceFullName":"AWS CodePipeline",
|
10
|
-
"serviceId":"CodePipeline",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"targetPrefix":"CodePipeline_20150709",
|
13
|
-
"uid":"codepipeline-2015-07-09"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"AcknowledgeJob":{
|
17
|
-
"name":"AcknowledgeJob",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/"
|
21
|
-
},
|
22
|
-
"input":{"shape":"AcknowledgeJobInput"},
|
23
|
-
"output":{"shape":"AcknowledgeJobOutput"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"ValidationException"},
|
26
|
-
{"shape":"InvalidNonceException"},
|
27
|
-
{"shape":"JobNotFoundException"}
|
28
|
-
]
|
29
|
-
},
|
30
|
-
"AcknowledgeThirdPartyJob":{
|
31
|
-
"name":"AcknowledgeThirdPartyJob",
|
32
|
-
"http":{
|
33
|
-
"method":"POST",
|
34
|
-
"requestUri":"/"
|
35
|
-
},
|
36
|
-
"input":{"shape":"AcknowledgeThirdPartyJobInput"},
|
37
|
-
"output":{"shape":"AcknowledgeThirdPartyJobOutput"},
|
38
|
-
"errors":[
|
39
|
-
{"shape":"ValidationException"},
|
40
|
-
{"shape":"InvalidNonceException"},
|
41
|
-
{"shape":"JobNotFoundException"},
|
42
|
-
{"shape":"InvalidClientTokenException"}
|
43
|
-
]
|
44
|
-
},
|
45
|
-
"CreateCustomActionType":{
|
46
|
-
"name":"CreateCustomActionType",
|
47
|
-
"http":{
|
48
|
-
"method":"POST",
|
49
|
-
"requestUri":"/"
|
50
|
-
},
|
51
|
-
"input":{"shape":"CreateCustomActionTypeInput"},
|
52
|
-
"output":{"shape":"CreateCustomActionTypeOutput"},
|
53
|
-
"errors":[
|
54
|
-
{"shape":"ValidationException"},
|
55
|
-
{"shape":"LimitExceededException"},
|
56
|
-
{"shape":"TooManyTagsException"},
|
57
|
-
{"shape":"InvalidTagsException"},
|
58
|
-
{"shape":"ConcurrentModificationException"}
|
59
|
-
]
|
60
|
-
},
|
61
|
-
"CreatePipeline":{
|
62
|
-
"name":"CreatePipeline",
|
63
|
-
"http":{
|
64
|
-
"method":"POST",
|
65
|
-
"requestUri":"/"
|
66
|
-
},
|
67
|
-
"input":{"shape":"CreatePipelineInput"},
|
68
|
-
"output":{"shape":"CreatePipelineOutput"},
|
69
|
-
"errors":[
|
70
|
-
{"shape":"ValidationException"},
|
71
|
-
{"shape":"PipelineNameInUseException"},
|
72
|
-
{"shape":"InvalidStageDeclarationException"},
|
73
|
-
{"shape":"InvalidActionDeclarationException"},
|
74
|
-
{"shape":"InvalidBlockerDeclarationException"},
|
75
|
-
{"shape":"InvalidStructureException"},
|
76
|
-
{"shape":"LimitExceededException"},
|
77
|
-
{"shape":"TooManyTagsException"},
|
78
|
-
{"shape":"InvalidTagsException"},
|
79
|
-
{"shape":"ConcurrentModificationException"}
|
80
|
-
]
|
81
|
-
},
|
82
|
-
"DeleteCustomActionType":{
|
83
|
-
"name":"DeleteCustomActionType",
|
84
|
-
"http":{
|
85
|
-
"method":"POST",
|
86
|
-
"requestUri":"/"
|
87
|
-
},
|
88
|
-
"input":{"shape":"DeleteCustomActionTypeInput"},
|
89
|
-
"errors":[
|
90
|
-
{"shape":"ValidationException"},
|
91
|
-
{"shape":"ConcurrentModificationException"}
|
92
|
-
]
|
93
|
-
},
|
94
|
-
"DeletePipeline":{
|
95
|
-
"name":"DeletePipeline",
|
96
|
-
"http":{
|
97
|
-
"method":"POST",
|
98
|
-
"requestUri":"/"
|
99
|
-
},
|
100
|
-
"input":{"shape":"DeletePipelineInput"},
|
101
|
-
"errors":[
|
102
|
-
{"shape":"ValidationException"},
|
103
|
-
{"shape":"ConcurrentModificationException"}
|
104
|
-
]
|
105
|
-
},
|
106
|
-
"DeleteWebhook":{
|
107
|
-
"name":"DeleteWebhook",
|
108
|
-
"http":{
|
109
|
-
"method":"POST",
|
110
|
-
"requestUri":"/"
|
111
|
-
},
|
112
|
-
"input":{"shape":"DeleteWebhookInput"},
|
113
|
-
"output":{"shape":"DeleteWebhookOutput"},
|
114
|
-
"errors":[
|
115
|
-
{"shape":"ValidationException"},
|
116
|
-
{"shape":"ConcurrentModificationException"}
|
117
|
-
]
|
118
|
-
},
|
119
|
-
"DeregisterWebhookWithThirdParty":{
|
120
|
-
"name":"DeregisterWebhookWithThirdParty",
|
121
|
-
"http":{
|
122
|
-
"method":"POST",
|
123
|
-
"requestUri":"/"
|
124
|
-
},
|
125
|
-
"input":{"shape":"DeregisterWebhookWithThirdPartyInput"},
|
126
|
-
"output":{"shape":"DeregisterWebhookWithThirdPartyOutput"},
|
127
|
-
"errors":[
|
128
|
-
{"shape":"ValidationException"},
|
129
|
-
{"shape":"WebhookNotFoundException"}
|
130
|
-
]
|
131
|
-
},
|
132
|
-
"DisableStageTransition":{
|
133
|
-
"name":"DisableStageTransition",
|
134
|
-
"http":{
|
135
|
-
"method":"POST",
|
136
|
-
"requestUri":"/"
|
137
|
-
},
|
138
|
-
"input":{"shape":"DisableStageTransitionInput"},
|
139
|
-
"errors":[
|
140
|
-
{"shape":"ValidationException"},
|
141
|
-
{"shape":"PipelineNotFoundException"},
|
142
|
-
{"shape":"StageNotFoundException"}
|
143
|
-
]
|
144
|
-
},
|
145
|
-
"EnableStageTransition":{
|
146
|
-
"name":"EnableStageTransition",
|
147
|
-
"http":{
|
148
|
-
"method":"POST",
|
149
|
-
"requestUri":"/"
|
150
|
-
},
|
151
|
-
"input":{"shape":"EnableStageTransitionInput"},
|
152
|
-
"errors":[
|
153
|
-
{"shape":"ValidationException"},
|
154
|
-
{"shape":"PipelineNotFoundException"},
|
155
|
-
{"shape":"StageNotFoundException"}
|
156
|
-
]
|
157
|
-
},
|
158
|
-
"GetJobDetails":{
|
159
|
-
"name":"GetJobDetails",
|
160
|
-
"http":{
|
161
|
-
"method":"POST",
|
162
|
-
"requestUri":"/"
|
163
|
-
},
|
164
|
-
"input":{"shape":"GetJobDetailsInput"},
|
165
|
-
"output":{"shape":"GetJobDetailsOutput"},
|
166
|
-
"errors":[
|
167
|
-
{"shape":"ValidationException"},
|
168
|
-
{"shape":"JobNotFoundException"}
|
169
|
-
]
|
170
|
-
},
|
171
|
-
"GetPipeline":{
|
172
|
-
"name":"GetPipeline",
|
173
|
-
"http":{
|
174
|
-
"method":"POST",
|
175
|
-
"requestUri":"/"
|
176
|
-
},
|
177
|
-
"input":{"shape":"GetPipelineInput"},
|
178
|
-
"output":{"shape":"GetPipelineOutput"},
|
179
|
-
"errors":[
|
180
|
-
{"shape":"ValidationException"},
|
181
|
-
{"shape":"PipelineNotFoundException"},
|
182
|
-
{"shape":"PipelineVersionNotFoundException"}
|
183
|
-
]
|
184
|
-
},
|
185
|
-
"GetPipelineExecution":{
|
186
|
-
"name":"GetPipelineExecution",
|
187
|
-
"http":{
|
188
|
-
"method":"POST",
|
189
|
-
"requestUri":"/"
|
190
|
-
},
|
191
|
-
"input":{"shape":"GetPipelineExecutionInput"},
|
192
|
-
"output":{"shape":"GetPipelineExecutionOutput"},
|
193
|
-
"errors":[
|
194
|
-
{"shape":"ValidationException"},
|
195
|
-
{"shape":"PipelineNotFoundException"},
|
196
|
-
{"shape":"PipelineExecutionNotFoundException"}
|
197
|
-
]
|
198
|
-
},
|
199
|
-
"GetPipelineState":{
|
200
|
-
"name":"GetPipelineState",
|
201
|
-
"http":{
|
202
|
-
"method":"POST",
|
203
|
-
"requestUri":"/"
|
204
|
-
},
|
205
|
-
"input":{"shape":"GetPipelineStateInput"},
|
206
|
-
"output":{"shape":"GetPipelineStateOutput"},
|
207
|
-
"errors":[
|
208
|
-
{"shape":"ValidationException"},
|
209
|
-
{"shape":"PipelineNotFoundException"}
|
210
|
-
]
|
211
|
-
},
|
212
|
-
"GetThirdPartyJobDetails":{
|
213
|
-
"name":"GetThirdPartyJobDetails",
|
214
|
-
"http":{
|
215
|
-
"method":"POST",
|
216
|
-
"requestUri":"/"
|
217
|
-
},
|
218
|
-
"input":{"shape":"GetThirdPartyJobDetailsInput"},
|
219
|
-
"output":{"shape":"GetThirdPartyJobDetailsOutput"},
|
220
|
-
"errors":[
|
221
|
-
{"shape":"JobNotFoundException"},
|
222
|
-
{"shape":"ValidationException"},
|
223
|
-
{"shape":"InvalidClientTokenException"},
|
224
|
-
{"shape":"InvalidJobException"}
|
225
|
-
]
|
226
|
-
},
|
227
|
-
"ListActionExecutions":{
|
228
|
-
"name":"ListActionExecutions",
|
229
|
-
"http":{
|
230
|
-
"method":"POST",
|
231
|
-
"requestUri":"/"
|
232
|
-
},
|
233
|
-
"input":{"shape":"ListActionExecutionsInput"},
|
234
|
-
"output":{"shape":"ListActionExecutionsOutput"},
|
235
|
-
"errors":[
|
236
|
-
{"shape":"ValidationException"},
|
237
|
-
{"shape":"PipelineNotFoundException"},
|
238
|
-
{"shape":"InvalidNextTokenException"},
|
239
|
-
{"shape":"PipelineExecutionNotFoundException"}
|
240
|
-
]
|
241
|
-
},
|
242
|
-
"ListActionTypes":{
|
243
|
-
"name":"ListActionTypes",
|
244
|
-
"http":{
|
245
|
-
"method":"POST",
|
246
|
-
"requestUri":"/"
|
247
|
-
},
|
248
|
-
"input":{"shape":"ListActionTypesInput"},
|
249
|
-
"output":{"shape":"ListActionTypesOutput"},
|
250
|
-
"errors":[
|
251
|
-
{"shape":"ValidationException"},
|
252
|
-
{"shape":"InvalidNextTokenException"}
|
253
|
-
]
|
254
|
-
},
|
255
|
-
"ListPipelineExecutions":{
|
256
|
-
"name":"ListPipelineExecutions",
|
257
|
-
"http":{
|
258
|
-
"method":"POST",
|
259
|
-
"requestUri":"/"
|
260
|
-
},
|
261
|
-
"input":{"shape":"ListPipelineExecutionsInput"},
|
262
|
-
"output":{"shape":"ListPipelineExecutionsOutput"},
|
263
|
-
"errors":[
|
264
|
-
{"shape":"ValidationException"},
|
265
|
-
{"shape":"PipelineNotFoundException"},
|
266
|
-
{"shape":"InvalidNextTokenException"}
|
267
|
-
]
|
268
|
-
},
|
269
|
-
"ListPipelines":{
|
270
|
-
"name":"ListPipelines",
|
271
|
-
"http":{
|
272
|
-
"method":"POST",
|
273
|
-
"requestUri":"/"
|
274
|
-
},
|
275
|
-
"input":{"shape":"ListPipelinesInput"},
|
276
|
-
"output":{"shape":"ListPipelinesOutput"},
|
277
|
-
"errors":[
|
278
|
-
{"shape":"ValidationException"},
|
279
|
-
{"shape":"InvalidNextTokenException"}
|
280
|
-
]
|
281
|
-
},
|
282
|
-
"ListTagsForResource":{
|
283
|
-
"name":"ListTagsForResource",
|
284
|
-
"http":{
|
285
|
-
"method":"POST",
|
286
|
-
"requestUri":"/"
|
287
|
-
},
|
288
|
-
"input":{"shape":"ListTagsForResourceInput"},
|
289
|
-
"output":{"shape":"ListTagsForResourceOutput"},
|
290
|
-
"errors":[
|
291
|
-
{"shape":"ValidationException"},
|
292
|
-
{"shape":"ResourceNotFoundException"},
|
293
|
-
{"shape":"InvalidNextTokenException"},
|
294
|
-
{"shape":"InvalidArnException"}
|
295
|
-
]
|
296
|
-
},
|
297
|
-
"ListWebhooks":{
|
298
|
-
"name":"ListWebhooks",
|
299
|
-
"http":{
|
300
|
-
"method":"POST",
|
301
|
-
"requestUri":"/"
|
302
|
-
},
|
303
|
-
"input":{"shape":"ListWebhooksInput"},
|
304
|
-
"output":{"shape":"ListWebhooksOutput"},
|
305
|
-
"errors":[
|
306
|
-
{"shape":"ValidationException"},
|
307
|
-
{"shape":"InvalidNextTokenException"}
|
308
|
-
]
|
309
|
-
},
|
310
|
-
"PollForJobs":{
|
311
|
-
"name":"PollForJobs",
|
312
|
-
"http":{
|
313
|
-
"method":"POST",
|
314
|
-
"requestUri":"/"
|
315
|
-
},
|
316
|
-
"input":{"shape":"PollForJobsInput"},
|
317
|
-
"output":{"shape":"PollForJobsOutput"},
|
318
|
-
"errors":[
|
319
|
-
{"shape":"ValidationException"},
|
320
|
-
{"shape":"ActionTypeNotFoundException"}
|
321
|
-
]
|
322
|
-
},
|
323
|
-
"PollForThirdPartyJobs":{
|
324
|
-
"name":"PollForThirdPartyJobs",
|
325
|
-
"http":{
|
326
|
-
"method":"POST",
|
327
|
-
"requestUri":"/"
|
328
|
-
},
|
329
|
-
"input":{"shape":"PollForThirdPartyJobsInput"},
|
330
|
-
"output":{"shape":"PollForThirdPartyJobsOutput"},
|
331
|
-
"errors":[
|
332
|
-
{"shape":"ActionTypeNotFoundException"},
|
333
|
-
{"shape":"ValidationException"}
|
334
|
-
]
|
335
|
-
},
|
336
|
-
"PutActionRevision":{
|
337
|
-
"name":"PutActionRevision",
|
338
|
-
"http":{
|
339
|
-
"method":"POST",
|
340
|
-
"requestUri":"/"
|
341
|
-
},
|
342
|
-
"input":{"shape":"PutActionRevisionInput"},
|
343
|
-
"output":{"shape":"PutActionRevisionOutput"},
|
344
|
-
"errors":[
|
345
|
-
{"shape":"PipelineNotFoundException"},
|
346
|
-
{"shape":"StageNotFoundException"},
|
347
|
-
{"shape":"ActionNotFoundException"},
|
348
|
-
{"shape":"ValidationException"}
|
349
|
-
]
|
350
|
-
},
|
351
|
-
"PutApprovalResult":{
|
352
|
-
"name":"PutApprovalResult",
|
353
|
-
"http":{
|
354
|
-
"method":"POST",
|
355
|
-
"requestUri":"/"
|
356
|
-
},
|
357
|
-
"input":{"shape":"PutApprovalResultInput"},
|
358
|
-
"output":{"shape":"PutApprovalResultOutput"},
|
359
|
-
"errors":[
|
360
|
-
{"shape":"InvalidApprovalTokenException"},
|
361
|
-
{"shape":"ApprovalAlreadyCompletedException"},
|
362
|
-
{"shape":"PipelineNotFoundException"},
|
363
|
-
{"shape":"StageNotFoundException"},
|
364
|
-
{"shape":"ActionNotFoundException"},
|
365
|
-
{"shape":"ValidationException"}
|
366
|
-
]
|
367
|
-
},
|
368
|
-
"PutJobFailureResult":{
|
369
|
-
"name":"PutJobFailureResult",
|
370
|
-
"http":{
|
371
|
-
"method":"POST",
|
372
|
-
"requestUri":"/"
|
373
|
-
},
|
374
|
-
"input":{"shape":"PutJobFailureResultInput"},
|
375
|
-
"errors":[
|
376
|
-
{"shape":"ValidationException"},
|
377
|
-
{"shape":"JobNotFoundException"},
|
378
|
-
{"shape":"InvalidJobStateException"}
|
379
|
-
]
|
380
|
-
},
|
381
|
-
"PutJobSuccessResult":{
|
382
|
-
"name":"PutJobSuccessResult",
|
383
|
-
"http":{
|
384
|
-
"method":"POST",
|
385
|
-
"requestUri":"/"
|
386
|
-
},
|
387
|
-
"input":{"shape":"PutJobSuccessResultInput"},
|
388
|
-
"errors":[
|
389
|
-
{"shape":"ValidationException"},
|
390
|
-
{"shape":"JobNotFoundException"},
|
391
|
-
{"shape":"InvalidJobStateException"}
|
392
|
-
]
|
393
|
-
},
|
394
|
-
"PutThirdPartyJobFailureResult":{
|
395
|
-
"name":"PutThirdPartyJobFailureResult",
|
396
|
-
"http":{
|
397
|
-
"method":"POST",
|
398
|
-
"requestUri":"/"
|
399
|
-
},
|
400
|
-
"input":{"shape":"PutThirdPartyJobFailureResultInput"},
|
401
|
-
"errors":[
|
402
|
-
{"shape":"ValidationException"},
|
403
|
-
{"shape":"JobNotFoundException"},
|
404
|
-
{"shape":"InvalidJobStateException"},
|
405
|
-
{"shape":"InvalidClientTokenException"}
|
406
|
-
]
|
407
|
-
},
|
408
|
-
"PutThirdPartyJobSuccessResult":{
|
409
|
-
"name":"PutThirdPartyJobSuccessResult",
|
410
|
-
"http":{
|
411
|
-
"method":"POST",
|
412
|
-
"requestUri":"/"
|
413
|
-
},
|
414
|
-
"input":{"shape":"PutThirdPartyJobSuccessResultInput"},
|
415
|
-
"errors":[
|
416
|
-
{"shape":"ValidationException"},
|
417
|
-
{"shape":"JobNotFoundException"},
|
418
|
-
{"shape":"InvalidJobStateException"},
|
419
|
-
{"shape":"InvalidClientTokenException"}
|
420
|
-
]
|
421
|
-
},
|
422
|
-
"PutWebhook":{
|
423
|
-
"name":"PutWebhook",
|
424
|
-
"http":{
|
425
|
-
"method":"POST",
|
426
|
-
"requestUri":"/"
|
427
|
-
},
|
428
|
-
"input":{"shape":"PutWebhookInput"},
|
429
|
-
"output":{"shape":"PutWebhookOutput"},
|
430
|
-
"errors":[
|
431
|
-
{"shape":"ValidationException"},
|
432
|
-
{"shape":"LimitExceededException"},
|
433
|
-
{"shape":"InvalidWebhookFilterPatternException"},
|
434
|
-
{"shape":"InvalidWebhookAuthenticationParametersException"},
|
435
|
-
{"shape":"PipelineNotFoundException"},
|
436
|
-
{"shape":"TooManyTagsException"},
|
437
|
-
{"shape":"InvalidTagsException"},
|
438
|
-
{"shape":"ConcurrentModificationException"}
|
439
|
-
]
|
440
|
-
},
|
441
|
-
"RegisterWebhookWithThirdParty":{
|
442
|
-
"name":"RegisterWebhookWithThirdParty",
|
443
|
-
"http":{
|
444
|
-
"method":"POST",
|
445
|
-
"requestUri":"/"
|
446
|
-
},
|
447
|
-
"input":{"shape":"RegisterWebhookWithThirdPartyInput"},
|
448
|
-
"output":{"shape":"RegisterWebhookWithThirdPartyOutput"},
|
449
|
-
"errors":[
|
450
|
-
{"shape":"ValidationException"},
|
451
|
-
{"shape":"WebhookNotFoundException"}
|
452
|
-
]
|
453
|
-
},
|
454
|
-
"RetryStageExecution":{
|
455
|
-
"name":"RetryStageExecution",
|
456
|
-
"http":{
|
457
|
-
"method":"POST",
|
458
|
-
"requestUri":"/"
|
459
|
-
},
|
460
|
-
"input":{"shape":"RetryStageExecutionInput"},
|
461
|
-
"output":{"shape":"RetryStageExecutionOutput"},
|
462
|
-
"errors":[
|
463
|
-
{"shape":"ValidationException"},
|
464
|
-
{"shape":"PipelineNotFoundException"},
|
465
|
-
{"shape":"StageNotFoundException"},
|
466
|
-
{"shape":"StageNotRetryableException"},
|
467
|
-
{"shape":"NotLatestPipelineExecutionException"}
|
468
|
-
]
|
469
|
-
},
|
470
|
-
"StartPipelineExecution":{
|
471
|
-
"name":"StartPipelineExecution",
|
472
|
-
"http":{
|
473
|
-
"method":"POST",
|
474
|
-
"requestUri":"/"
|
475
|
-
},
|
476
|
-
"input":{"shape":"StartPipelineExecutionInput"},
|
477
|
-
"output":{"shape":"StartPipelineExecutionOutput"},
|
478
|
-
"errors":[
|
479
|
-
{"shape":"ValidationException"},
|
480
|
-
{"shape":"PipelineNotFoundException"}
|
481
|
-
]
|
482
|
-
},
|
483
|
-
"TagResource":{
|
484
|
-
"name":"TagResource",
|
485
|
-
"http":{
|
486
|
-
"method":"POST",
|
487
|
-
"requestUri":"/"
|
488
|
-
},
|
489
|
-
"input":{"shape":"TagResourceInput"},
|
490
|
-
"output":{"shape":"TagResourceOutput"},
|
491
|
-
"errors":[
|
492
|
-
{"shape":"ValidationException"},
|
493
|
-
{"shape":"ResourceNotFoundException"},
|
494
|
-
{"shape":"InvalidArnException"},
|
495
|
-
{"shape":"TooManyTagsException"},
|
496
|
-
{"shape":"InvalidTagsException"},
|
497
|
-
{"shape":"ConcurrentModificationException"}
|
498
|
-
]
|
499
|
-
},
|
500
|
-
"UntagResource":{
|
501
|
-
"name":"UntagResource",
|
502
|
-
"http":{
|
503
|
-
"method":"POST",
|
504
|
-
"requestUri":"/"
|
505
|
-
},
|
506
|
-
"input":{"shape":"UntagResourceInput"},
|
507
|
-
"output":{"shape":"UntagResourceOutput"},
|
508
|
-
"errors":[
|
509
|
-
{"shape":"ValidationException"},
|
510
|
-
{"shape":"ResourceNotFoundException"},
|
511
|
-
{"shape":"InvalidArnException"},
|
512
|
-
{"shape":"InvalidTagsException"},
|
513
|
-
{"shape":"ConcurrentModificationException"}
|
514
|
-
]
|
515
|
-
},
|
516
|
-
"UpdatePipeline":{
|
517
|
-
"name":"UpdatePipeline",
|
518
|
-
"http":{
|
519
|
-
"method":"POST",
|
520
|
-
"requestUri":"/"
|
521
|
-
},
|
522
|
-
"input":{"shape":"UpdatePipelineInput"},
|
523
|
-
"output":{"shape":"UpdatePipelineOutput"},
|
524
|
-
"errors":[
|
525
|
-
{"shape":"ValidationException"},
|
526
|
-
{"shape":"InvalidStageDeclarationException"},
|
527
|
-
{"shape":"InvalidActionDeclarationException"},
|
528
|
-
{"shape":"InvalidBlockerDeclarationException"},
|
529
|
-
{"shape":"InvalidStructureException"},
|
530
|
-
{"shape":"LimitExceededException"}
|
531
|
-
]
|
532
|
-
}
|
533
|
-
},
|
534
|
-
"shapes":{
|
535
|
-
"AWSRegionName":{
|
536
|
-
"type":"string",
|
537
|
-
"max":30,
|
538
|
-
"min":4
|
539
|
-
},
|
540
|
-
"AWSSessionCredentials":{
|
541
|
-
"type":"structure",
|
542
|
-
"required":[
|
543
|
-
"accessKeyId",
|
544
|
-
"secretAccessKey",
|
545
|
-
"sessionToken"
|
546
|
-
],
|
547
|
-
"members":{
|
548
|
-
"accessKeyId":{"shape":"AccessKeyId"},
|
549
|
-
"secretAccessKey":{"shape":"SecretAccessKey"},
|
550
|
-
"sessionToken":{"shape":"SessionToken"}
|
551
|
-
},
|
552
|
-
"sensitive":true
|
553
|
-
},
|
554
|
-
"AccessKeyId":{"type":"string"},
|
555
|
-
"AccountId":{
|
556
|
-
"type":"string",
|
557
|
-
"pattern":"[0-9]{12}"
|
558
|
-
},
|
559
|
-
"AcknowledgeJobInput":{
|
560
|
-
"type":"structure",
|
561
|
-
"required":[
|
562
|
-
"jobId",
|
563
|
-
"nonce"
|
564
|
-
],
|
565
|
-
"members":{
|
566
|
-
"jobId":{"shape":"JobId"},
|
567
|
-
"nonce":{"shape":"Nonce"}
|
568
|
-
}
|
569
|
-
},
|
570
|
-
"AcknowledgeJobOutput":{
|
571
|
-
"type":"structure",
|
572
|
-
"members":{
|
573
|
-
"status":{"shape":"JobStatus"}
|
574
|
-
}
|
575
|
-
},
|
576
|
-
"AcknowledgeThirdPartyJobInput":{
|
577
|
-
"type":"structure",
|
578
|
-
"required":[
|
579
|
-
"jobId",
|
580
|
-
"nonce",
|
581
|
-
"clientToken"
|
582
|
-
],
|
583
|
-
"members":{
|
584
|
-
"jobId":{"shape":"ThirdPartyJobId"},
|
585
|
-
"nonce":{"shape":"Nonce"},
|
586
|
-
"clientToken":{"shape":"ClientToken"}
|
587
|
-
}
|
588
|
-
},
|
589
|
-
"AcknowledgeThirdPartyJobOutput":{
|
590
|
-
"type":"structure",
|
591
|
-
"members":{
|
592
|
-
"status":{"shape":"JobStatus"}
|
593
|
-
}
|
594
|
-
},
|
595
|
-
"ActionCategory":{
|
596
|
-
"type":"string",
|
597
|
-
"enum":[
|
598
|
-
"Source",
|
599
|
-
"Build",
|
600
|
-
"Deploy",
|
601
|
-
"Test",
|
602
|
-
"Invoke",
|
603
|
-
"Approval"
|
604
|
-
]
|
605
|
-
},
|
606
|
-
"ActionConfiguration":{
|
607
|
-
"type":"structure",
|
608
|
-
"members":{
|
609
|
-
"configuration":{"shape":"ActionConfigurationMap"}
|
610
|
-
}
|
611
|
-
},
|
612
|
-
"ActionConfigurationKey":{
|
613
|
-
"type":"string",
|
614
|
-
"max":50,
|
615
|
-
"min":1
|
616
|
-
},
|
617
|
-
"ActionConfigurationMap":{
|
618
|
-
"type":"map",
|
619
|
-
"key":{"shape":"ActionConfigurationKey"},
|
620
|
-
"value":{"shape":"ActionConfigurationValue"}
|
621
|
-
},
|
622
|
-
"ActionConfigurationProperty":{
|
623
|
-
"type":"structure",
|
624
|
-
"required":[
|
625
|
-
"name",
|
626
|
-
"required",
|
627
|
-
"key",
|
628
|
-
"secret"
|
629
|
-
],
|
630
|
-
"members":{
|
631
|
-
"name":{"shape":"ActionConfigurationKey"},
|
632
|
-
"required":{"shape":"Boolean"},
|
633
|
-
"key":{"shape":"Boolean"},
|
634
|
-
"secret":{"shape":"Boolean"},
|
635
|
-
"queryable":{"shape":"Boolean"},
|
636
|
-
"description":{"shape":"Description"},
|
637
|
-
"type":{"shape":"ActionConfigurationPropertyType"}
|
638
|
-
}
|
639
|
-
},
|
640
|
-
"ActionConfigurationPropertyList":{
|
641
|
-
"type":"list",
|
642
|
-
"member":{"shape":"ActionConfigurationProperty"},
|
643
|
-
"max":10
|
644
|
-
},
|
645
|
-
"ActionConfigurationPropertyType":{
|
646
|
-
"type":"string",
|
647
|
-
"enum":[
|
648
|
-
"String",
|
649
|
-
"Number",
|
650
|
-
"Boolean"
|
651
|
-
]
|
652
|
-
},
|
653
|
-
"ActionConfigurationQueryableValue":{
|
654
|
-
"type":"string",
|
655
|
-
"max":50,
|
656
|
-
"min":1,
|
657
|
-
"pattern":"[a-zA-Z0-9_-]+"
|
658
|
-
},
|
659
|
-
"ActionConfigurationValue":{
|
660
|
-
"type":"string",
|
661
|
-
"max":1000,
|
662
|
-
"min":1
|
663
|
-
},
|
664
|
-
"ActionContext":{
|
665
|
-
"type":"structure",
|
666
|
-
"members":{
|
667
|
-
"name":{"shape":"ActionName"},
|
668
|
-
"actionExecutionId":{"shape":"ActionExecutionId"}
|
669
|
-
}
|
670
|
-
},
|
671
|
-
"ActionDeclaration":{
|
672
|
-
"type":"structure",
|
673
|
-
"required":[
|
674
|
-
"name",
|
675
|
-
"actionTypeId"
|
676
|
-
],
|
677
|
-
"members":{
|
678
|
-
"name":{"shape":"ActionName"},
|
679
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
680
|
-
"runOrder":{"shape":"ActionRunOrder"},
|
681
|
-
"configuration":{"shape":"ActionConfigurationMap"},
|
682
|
-
"outputArtifacts":{"shape":"OutputArtifactList"},
|
683
|
-
"inputArtifacts":{"shape":"InputArtifactList"},
|
684
|
-
"roleArn":{"shape":"RoleArn"},
|
685
|
-
"region":{"shape":"AWSRegionName"}
|
686
|
-
}
|
687
|
-
},
|
688
|
-
"ActionExecution":{
|
689
|
-
"type":"structure",
|
690
|
-
"members":{
|
691
|
-
"status":{"shape":"ActionExecutionStatus"},
|
692
|
-
"summary":{"shape":"ExecutionSummary"},
|
693
|
-
"lastStatusChange":{"shape":"Timestamp"},
|
694
|
-
"token":{"shape":"ActionExecutionToken"},
|
695
|
-
"lastUpdatedBy":{"shape":"LastUpdatedBy"},
|
696
|
-
"externalExecutionId":{"shape":"ExecutionId"},
|
697
|
-
"externalExecutionUrl":{"shape":"Url"},
|
698
|
-
"percentComplete":{"shape":"Percentage"},
|
699
|
-
"errorDetails":{"shape":"ErrorDetails"}
|
700
|
-
}
|
701
|
-
},
|
702
|
-
"ActionExecutionDetail":{
|
703
|
-
"type":"structure",
|
704
|
-
"members":{
|
705
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
|
706
|
-
"actionExecutionId":{"shape":"ActionExecutionId"},
|
707
|
-
"pipelineVersion":{"shape":"PipelineVersion"},
|
708
|
-
"stageName":{"shape":"StageName"},
|
709
|
-
"actionName":{"shape":"ActionName"},
|
710
|
-
"startTime":{"shape":"Timestamp"},
|
711
|
-
"lastUpdateTime":{"shape":"Timestamp"},
|
712
|
-
"status":{"shape":"ActionExecutionStatus"},
|
713
|
-
"input":{"shape":"ActionExecutionInput"},
|
714
|
-
"output":{"shape":"ActionExecutionOutput"}
|
715
|
-
}
|
716
|
-
},
|
717
|
-
"ActionExecutionDetailList":{
|
718
|
-
"type":"list",
|
719
|
-
"member":{"shape":"ActionExecutionDetail"}
|
720
|
-
},
|
721
|
-
"ActionExecutionFilter":{
|
722
|
-
"type":"structure",
|
723
|
-
"members":{
|
724
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
725
|
-
}
|
726
|
-
},
|
727
|
-
"ActionExecutionId":{"type":"string"},
|
728
|
-
"ActionExecutionInput":{
|
729
|
-
"type":"structure",
|
730
|
-
"members":{
|
731
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
732
|
-
"configuration":{"shape":"ActionConfigurationMap"},
|
733
|
-
"roleArn":{"shape":"RoleArn"},
|
734
|
-
"region":{"shape":"AWSRegionName"},
|
735
|
-
"inputArtifacts":{"shape":"ArtifactDetailList"}
|
736
|
-
}
|
737
|
-
},
|
738
|
-
"ActionExecutionOutput":{
|
739
|
-
"type":"structure",
|
740
|
-
"members":{
|
741
|
-
"outputArtifacts":{"shape":"ArtifactDetailList"},
|
742
|
-
"executionResult":{"shape":"ActionExecutionResult"}
|
743
|
-
}
|
744
|
-
},
|
745
|
-
"ActionExecutionResult":{
|
746
|
-
"type":"structure",
|
747
|
-
"members":{
|
748
|
-
"externalExecutionId":{"shape":"ExternalExecutionId"},
|
749
|
-
"externalExecutionSummary":{"shape":"ExternalExecutionSummary"},
|
750
|
-
"externalExecutionUrl":{"shape":"Url"}
|
751
|
-
}
|
752
|
-
},
|
753
|
-
"ActionExecutionStatus":{
|
754
|
-
"type":"string",
|
755
|
-
"enum":[
|
756
|
-
"InProgress",
|
757
|
-
"Succeeded",
|
758
|
-
"Failed"
|
759
|
-
]
|
760
|
-
},
|
761
|
-
"ActionExecutionToken":{"type":"string"},
|
762
|
-
"ActionName":{
|
763
|
-
"type":"string",
|
764
|
-
"max":100,
|
765
|
-
"min":1,
|
766
|
-
"pattern":"[A-Za-z0-9.@\\-_]+"
|
767
|
-
},
|
768
|
-
"ActionNotFoundException":{
|
769
|
-
"type":"structure",
|
770
|
-
"members":{
|
771
|
-
},
|
772
|
-
"exception":true
|
773
|
-
},
|
774
|
-
"ActionOwner":{
|
775
|
-
"type":"string",
|
776
|
-
"enum":[
|
777
|
-
"AWS",
|
778
|
-
"ThirdParty",
|
779
|
-
"Custom"
|
780
|
-
]
|
781
|
-
},
|
782
|
-
"ActionProvider":{
|
783
|
-
"type":"string",
|
784
|
-
"max":25,
|
785
|
-
"min":1,
|
786
|
-
"pattern":"[0-9A-Za-z_-]+"
|
787
|
-
},
|
788
|
-
"ActionRevision":{
|
789
|
-
"type":"structure",
|
790
|
-
"required":[
|
791
|
-
"revisionId",
|
792
|
-
"revisionChangeId",
|
793
|
-
"created"
|
794
|
-
],
|
795
|
-
"members":{
|
796
|
-
"revisionId":{"shape":"Revision"},
|
797
|
-
"revisionChangeId":{"shape":"RevisionChangeIdentifier"},
|
798
|
-
"created":{"shape":"Timestamp"}
|
799
|
-
}
|
800
|
-
},
|
801
|
-
"ActionRunOrder":{
|
802
|
-
"type":"integer",
|
803
|
-
"max":999,
|
804
|
-
"min":1
|
805
|
-
},
|
806
|
-
"ActionState":{
|
807
|
-
"type":"structure",
|
808
|
-
"members":{
|
809
|
-
"actionName":{"shape":"ActionName"},
|
810
|
-
"currentRevision":{"shape":"ActionRevision"},
|
811
|
-
"latestExecution":{"shape":"ActionExecution"},
|
812
|
-
"entityUrl":{"shape":"Url"},
|
813
|
-
"revisionUrl":{"shape":"Url"}
|
814
|
-
}
|
815
|
-
},
|
816
|
-
"ActionStateList":{
|
817
|
-
"type":"list",
|
818
|
-
"member":{"shape":"ActionState"}
|
819
|
-
},
|
820
|
-
"ActionType":{
|
821
|
-
"type":"structure",
|
822
|
-
"required":[
|
823
|
-
"id",
|
824
|
-
"inputArtifactDetails",
|
825
|
-
"outputArtifactDetails"
|
826
|
-
],
|
827
|
-
"members":{
|
828
|
-
"id":{"shape":"ActionTypeId"},
|
829
|
-
"settings":{"shape":"ActionTypeSettings"},
|
830
|
-
"actionConfigurationProperties":{"shape":"ActionConfigurationPropertyList"},
|
831
|
-
"inputArtifactDetails":{"shape":"ArtifactDetails"},
|
832
|
-
"outputArtifactDetails":{"shape":"ArtifactDetails"}
|
833
|
-
}
|
834
|
-
},
|
835
|
-
"ActionTypeId":{
|
836
|
-
"type":"structure",
|
837
|
-
"required":[
|
838
|
-
"category",
|
839
|
-
"owner",
|
840
|
-
"provider",
|
841
|
-
"version"
|
842
|
-
],
|
843
|
-
"members":{
|
844
|
-
"category":{"shape":"ActionCategory"},
|
845
|
-
"owner":{"shape":"ActionOwner"},
|
846
|
-
"provider":{"shape":"ActionProvider"},
|
847
|
-
"version":{"shape":"Version"}
|
848
|
-
}
|
849
|
-
},
|
850
|
-
"ActionTypeList":{
|
851
|
-
"type":"list",
|
852
|
-
"member":{"shape":"ActionType"}
|
853
|
-
},
|
854
|
-
"ActionTypeNotFoundException":{
|
855
|
-
"type":"structure",
|
856
|
-
"members":{
|
857
|
-
},
|
858
|
-
"exception":true
|
859
|
-
},
|
860
|
-
"ActionTypeSettings":{
|
861
|
-
"type":"structure",
|
862
|
-
"members":{
|
863
|
-
"thirdPartyConfigurationUrl":{"shape":"Url"},
|
864
|
-
"entityUrlTemplate":{"shape":"UrlTemplate"},
|
865
|
-
"executionUrlTemplate":{"shape":"UrlTemplate"},
|
866
|
-
"revisionUrlTemplate":{"shape":"UrlTemplate"}
|
867
|
-
}
|
868
|
-
},
|
869
|
-
"ApprovalAlreadyCompletedException":{
|
870
|
-
"type":"structure",
|
871
|
-
"members":{
|
872
|
-
},
|
873
|
-
"exception":true
|
874
|
-
},
|
875
|
-
"ApprovalResult":{
|
876
|
-
"type":"structure",
|
877
|
-
"required":[
|
878
|
-
"summary",
|
879
|
-
"status"
|
880
|
-
],
|
881
|
-
"members":{
|
882
|
-
"summary":{"shape":"ApprovalSummary"},
|
883
|
-
"status":{"shape":"ApprovalStatus"}
|
884
|
-
}
|
885
|
-
},
|
886
|
-
"ApprovalStatus":{
|
887
|
-
"type":"string",
|
888
|
-
"enum":[
|
889
|
-
"Approved",
|
890
|
-
"Rejected"
|
891
|
-
]
|
892
|
-
},
|
893
|
-
"ApprovalSummary":{
|
894
|
-
"type":"string",
|
895
|
-
"max":512,
|
896
|
-
"min":0
|
897
|
-
},
|
898
|
-
"ApprovalToken":{
|
899
|
-
"type":"string",
|
900
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
901
|
-
},
|
902
|
-
"Artifact":{
|
903
|
-
"type":"structure",
|
904
|
-
"members":{
|
905
|
-
"name":{"shape":"ArtifactName"},
|
906
|
-
"revision":{"shape":"Revision"},
|
907
|
-
"location":{"shape":"ArtifactLocation"}
|
908
|
-
}
|
909
|
-
},
|
910
|
-
"ArtifactDetail":{
|
911
|
-
"type":"structure",
|
912
|
-
"members":{
|
913
|
-
"name":{"shape":"ArtifactName"},
|
914
|
-
"s3location":{"shape":"S3Location"}
|
915
|
-
}
|
916
|
-
},
|
917
|
-
"ArtifactDetailList":{
|
918
|
-
"type":"list",
|
919
|
-
"member":{"shape":"ArtifactDetail"}
|
920
|
-
},
|
921
|
-
"ArtifactDetails":{
|
922
|
-
"type":"structure",
|
923
|
-
"required":[
|
924
|
-
"minimumCount",
|
925
|
-
"maximumCount"
|
926
|
-
],
|
927
|
-
"members":{
|
928
|
-
"minimumCount":{"shape":"MinimumArtifactCount"},
|
929
|
-
"maximumCount":{"shape":"MaximumArtifactCount"}
|
930
|
-
}
|
931
|
-
},
|
932
|
-
"ArtifactList":{
|
933
|
-
"type":"list",
|
934
|
-
"member":{"shape":"Artifact"}
|
935
|
-
},
|
936
|
-
"ArtifactLocation":{
|
937
|
-
"type":"structure",
|
938
|
-
"members":{
|
939
|
-
"type":{"shape":"ArtifactLocationType"},
|
940
|
-
"s3Location":{"shape":"S3ArtifactLocation"}
|
941
|
-
}
|
942
|
-
},
|
943
|
-
"ArtifactLocationType":{
|
944
|
-
"type":"string",
|
945
|
-
"enum":["S3"]
|
946
|
-
},
|
947
|
-
"ArtifactName":{
|
948
|
-
"type":"string",
|
949
|
-
"max":100,
|
950
|
-
"min":1,
|
951
|
-
"pattern":"[a-zA-Z0-9_\\-]+"
|
952
|
-
},
|
953
|
-
"ArtifactRevision":{
|
954
|
-
"type":"structure",
|
955
|
-
"members":{
|
956
|
-
"name":{"shape":"ArtifactName"},
|
957
|
-
"revisionId":{"shape":"Revision"},
|
958
|
-
"revisionChangeIdentifier":{"shape":"RevisionChangeIdentifier"},
|
959
|
-
"revisionSummary":{"shape":"RevisionSummary"},
|
960
|
-
"created":{"shape":"Timestamp"},
|
961
|
-
"revisionUrl":{"shape":"Url"}
|
962
|
-
}
|
963
|
-
},
|
964
|
-
"ArtifactRevisionList":{
|
965
|
-
"type":"list",
|
966
|
-
"member":{"shape":"ArtifactRevision"}
|
967
|
-
},
|
968
|
-
"ArtifactStore":{
|
969
|
-
"type":"structure",
|
970
|
-
"required":[
|
971
|
-
"type",
|
972
|
-
"location"
|
973
|
-
],
|
974
|
-
"members":{
|
975
|
-
"type":{"shape":"ArtifactStoreType"},
|
976
|
-
"location":{"shape":"ArtifactStoreLocation"},
|
977
|
-
"encryptionKey":{"shape":"EncryptionKey"}
|
978
|
-
}
|
979
|
-
},
|
980
|
-
"ArtifactStoreLocation":{
|
981
|
-
"type":"string",
|
982
|
-
"max":63,
|
983
|
-
"min":3,
|
984
|
-
"pattern":"[a-zA-Z0-9\\-\\.]+"
|
985
|
-
},
|
986
|
-
"ArtifactStoreMap":{
|
987
|
-
"type":"map",
|
988
|
-
"key":{"shape":"AWSRegionName"},
|
989
|
-
"value":{"shape":"ArtifactStore"}
|
990
|
-
},
|
991
|
-
"ArtifactStoreType":{
|
992
|
-
"type":"string",
|
993
|
-
"enum":["S3"]
|
994
|
-
},
|
995
|
-
"BlockerDeclaration":{
|
996
|
-
"type":"structure",
|
997
|
-
"required":[
|
998
|
-
"name",
|
999
|
-
"type"
|
1000
|
-
],
|
1001
|
-
"members":{
|
1002
|
-
"name":{"shape":"BlockerName"},
|
1003
|
-
"type":{"shape":"BlockerType"}
|
1004
|
-
}
|
1005
|
-
},
|
1006
|
-
"BlockerName":{
|
1007
|
-
"type":"string",
|
1008
|
-
"max":100,
|
1009
|
-
"min":1
|
1010
|
-
},
|
1011
|
-
"BlockerType":{
|
1012
|
-
"type":"string",
|
1013
|
-
"enum":["Schedule"]
|
1014
|
-
},
|
1015
|
-
"Boolean":{"type":"boolean"},
|
1016
|
-
"ClientId":{
|
1017
|
-
"type":"string",
|
1018
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
1019
|
-
},
|
1020
|
-
"ClientRequestToken":{
|
1021
|
-
"type":"string",
|
1022
|
-
"max":128,
|
1023
|
-
"min":1,
|
1024
|
-
"pattern":"^[a-zA-Z0-9-]+$"
|
1025
|
-
},
|
1026
|
-
"ClientToken":{
|
1027
|
-
"type":"string",
|
1028
|
-
"max":256,
|
1029
|
-
"min":1
|
1030
|
-
},
|
1031
|
-
"Code":{"type":"string"},
|
1032
|
-
"ConcurrentModificationException":{
|
1033
|
-
"type":"structure",
|
1034
|
-
"members":{
|
1035
|
-
"message":{"shape":"Message"}
|
1036
|
-
},
|
1037
|
-
"exception":true
|
1038
|
-
},
|
1039
|
-
"ContinuationToken":{
|
1040
|
-
"type":"string",
|
1041
|
-
"max":2048,
|
1042
|
-
"min":1
|
1043
|
-
},
|
1044
|
-
"CreateCustomActionTypeInput":{
|
1045
|
-
"type":"structure",
|
1046
|
-
"required":[
|
1047
|
-
"category",
|
1048
|
-
"provider",
|
1049
|
-
"version",
|
1050
|
-
"inputArtifactDetails",
|
1051
|
-
"outputArtifactDetails"
|
1052
|
-
],
|
1053
|
-
"members":{
|
1054
|
-
"category":{"shape":"ActionCategory"},
|
1055
|
-
"provider":{"shape":"ActionProvider"},
|
1056
|
-
"version":{"shape":"Version"},
|
1057
|
-
"settings":{"shape":"ActionTypeSettings"},
|
1058
|
-
"configurationProperties":{"shape":"ActionConfigurationPropertyList"},
|
1059
|
-
"inputArtifactDetails":{"shape":"ArtifactDetails"},
|
1060
|
-
"outputArtifactDetails":{"shape":"ArtifactDetails"},
|
1061
|
-
"tags":{"shape":"TagList"}
|
1062
|
-
}
|
1063
|
-
},
|
1064
|
-
"CreateCustomActionTypeOutput":{
|
1065
|
-
"type":"structure",
|
1066
|
-
"required":["actionType"],
|
1067
|
-
"members":{
|
1068
|
-
"actionType":{"shape":"ActionType"},
|
1069
|
-
"tags":{"shape":"TagList"}
|
1070
|
-
}
|
1071
|
-
},
|
1072
|
-
"CreatePipelineInput":{
|
1073
|
-
"type":"structure",
|
1074
|
-
"required":["pipeline"],
|
1075
|
-
"members":{
|
1076
|
-
"pipeline":{"shape":"PipelineDeclaration"},
|
1077
|
-
"tags":{"shape":"TagList"}
|
1078
|
-
}
|
1079
|
-
},
|
1080
|
-
"CreatePipelineOutput":{
|
1081
|
-
"type":"structure",
|
1082
|
-
"members":{
|
1083
|
-
"pipeline":{"shape":"PipelineDeclaration"},
|
1084
|
-
"tags":{"shape":"TagList"}
|
1085
|
-
}
|
1086
|
-
},
|
1087
|
-
"CurrentRevision":{
|
1088
|
-
"type":"structure",
|
1089
|
-
"required":[
|
1090
|
-
"revision",
|
1091
|
-
"changeIdentifier"
|
1092
|
-
],
|
1093
|
-
"members":{
|
1094
|
-
"revision":{"shape":"Revision"},
|
1095
|
-
"changeIdentifier":{"shape":"RevisionChangeIdentifier"},
|
1096
|
-
"created":{"shape":"Time"},
|
1097
|
-
"revisionSummary":{"shape":"RevisionSummary"}
|
1098
|
-
}
|
1099
|
-
},
|
1100
|
-
"DeleteCustomActionTypeInput":{
|
1101
|
-
"type":"structure",
|
1102
|
-
"required":[
|
1103
|
-
"category",
|
1104
|
-
"provider",
|
1105
|
-
"version"
|
1106
|
-
],
|
1107
|
-
"members":{
|
1108
|
-
"category":{"shape":"ActionCategory"},
|
1109
|
-
"provider":{"shape":"ActionProvider"},
|
1110
|
-
"version":{"shape":"Version"}
|
1111
|
-
}
|
1112
|
-
},
|
1113
|
-
"DeletePipelineInput":{
|
1114
|
-
"type":"structure",
|
1115
|
-
"required":["name"],
|
1116
|
-
"members":{
|
1117
|
-
"name":{"shape":"PipelineName"}
|
1118
|
-
}
|
1119
|
-
},
|
1120
|
-
"DeleteWebhookInput":{
|
1121
|
-
"type":"structure",
|
1122
|
-
"required":["name"],
|
1123
|
-
"members":{
|
1124
|
-
"name":{"shape":"WebhookName"}
|
1125
|
-
}
|
1126
|
-
},
|
1127
|
-
"DeleteWebhookOutput":{
|
1128
|
-
"type":"structure",
|
1129
|
-
"members":{
|
1130
|
-
}
|
1131
|
-
},
|
1132
|
-
"DeregisterWebhookWithThirdPartyInput":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"members":{
|
1135
|
-
"webhookName":{"shape":"WebhookName"}
|
1136
|
-
}
|
1137
|
-
},
|
1138
|
-
"DeregisterWebhookWithThirdPartyOutput":{
|
1139
|
-
"type":"structure",
|
1140
|
-
"members":{
|
1141
|
-
}
|
1142
|
-
},
|
1143
|
-
"Description":{
|
1144
|
-
"type":"string",
|
1145
|
-
"max":160,
|
1146
|
-
"min":1
|
1147
|
-
},
|
1148
|
-
"DisableStageTransitionInput":{
|
1149
|
-
"type":"structure",
|
1150
|
-
"required":[
|
1151
|
-
"pipelineName",
|
1152
|
-
"stageName",
|
1153
|
-
"transitionType",
|
1154
|
-
"reason"
|
1155
|
-
],
|
1156
|
-
"members":{
|
1157
|
-
"pipelineName":{"shape":"PipelineName"},
|
1158
|
-
"stageName":{"shape":"StageName"},
|
1159
|
-
"transitionType":{"shape":"StageTransitionType"},
|
1160
|
-
"reason":{"shape":"DisabledReason"}
|
1161
|
-
}
|
1162
|
-
},
|
1163
|
-
"DisabledReason":{
|
1164
|
-
"type":"string",
|
1165
|
-
"max":300,
|
1166
|
-
"min":1,
|
1167
|
-
"pattern":"[a-zA-Z0-9!@ \\(\\)\\.\\*\\?\\-]+"
|
1168
|
-
},
|
1169
|
-
"EnableStageTransitionInput":{
|
1170
|
-
"type":"structure",
|
1171
|
-
"required":[
|
1172
|
-
"pipelineName",
|
1173
|
-
"stageName",
|
1174
|
-
"transitionType"
|
1175
|
-
],
|
1176
|
-
"members":{
|
1177
|
-
"pipelineName":{"shape":"PipelineName"},
|
1178
|
-
"stageName":{"shape":"StageName"},
|
1179
|
-
"transitionType":{"shape":"StageTransitionType"}
|
1180
|
-
}
|
1181
|
-
},
|
1182
|
-
"Enabled":{"type":"boolean"},
|
1183
|
-
"EncryptionKey":{
|
1184
|
-
"type":"structure",
|
1185
|
-
"required":[
|
1186
|
-
"id",
|
1187
|
-
"type"
|
1188
|
-
],
|
1189
|
-
"members":{
|
1190
|
-
"id":{"shape":"EncryptionKeyId"},
|
1191
|
-
"type":{"shape":"EncryptionKeyType"}
|
1192
|
-
}
|
1193
|
-
},
|
1194
|
-
"EncryptionKeyId":{
|
1195
|
-
"type":"string",
|
1196
|
-
"max":100,
|
1197
|
-
"min":1
|
1198
|
-
},
|
1199
|
-
"EncryptionKeyType":{
|
1200
|
-
"type":"string",
|
1201
|
-
"enum":["KMS"]
|
1202
|
-
},
|
1203
|
-
"ErrorDetails":{
|
1204
|
-
"type":"structure",
|
1205
|
-
"members":{
|
1206
|
-
"code":{"shape":"Code"},
|
1207
|
-
"message":{"shape":"Message"}
|
1208
|
-
}
|
1209
|
-
},
|
1210
|
-
"ExecutionDetails":{
|
1211
|
-
"type":"structure",
|
1212
|
-
"members":{
|
1213
|
-
"summary":{"shape":"ExecutionSummary"},
|
1214
|
-
"externalExecutionId":{"shape":"ExecutionId"},
|
1215
|
-
"percentComplete":{"shape":"Percentage"}
|
1216
|
-
}
|
1217
|
-
},
|
1218
|
-
"ExecutionId":{
|
1219
|
-
"type":"string",
|
1220
|
-
"max":1500,
|
1221
|
-
"min":1
|
1222
|
-
},
|
1223
|
-
"ExecutionSummary":{
|
1224
|
-
"type":"string",
|
1225
|
-
"max":2048,
|
1226
|
-
"min":1
|
1227
|
-
},
|
1228
|
-
"ExecutionTrigger":{
|
1229
|
-
"type":"structure",
|
1230
|
-
"members":{
|
1231
|
-
"triggerType":{"shape":"TriggerType"},
|
1232
|
-
"triggerDetail":{"shape":"TriggerDetail"}
|
1233
|
-
}
|
1234
|
-
},
|
1235
|
-
"ExternalExecutionId":{"type":"string"},
|
1236
|
-
"ExternalExecutionSummary":{"type":"string"},
|
1237
|
-
"FailureDetails":{
|
1238
|
-
"type":"structure",
|
1239
|
-
"required":[
|
1240
|
-
"type",
|
1241
|
-
"message"
|
1242
|
-
],
|
1243
|
-
"members":{
|
1244
|
-
"type":{"shape":"FailureType"},
|
1245
|
-
"message":{"shape":"Message"},
|
1246
|
-
"externalExecutionId":{"shape":"ExecutionId"}
|
1247
|
-
}
|
1248
|
-
},
|
1249
|
-
"FailureType":{
|
1250
|
-
"type":"string",
|
1251
|
-
"enum":[
|
1252
|
-
"JobFailed",
|
1253
|
-
"ConfigurationError",
|
1254
|
-
"PermissionError",
|
1255
|
-
"RevisionOutOfSync",
|
1256
|
-
"RevisionUnavailable",
|
1257
|
-
"SystemUnavailable"
|
1258
|
-
]
|
1259
|
-
},
|
1260
|
-
"GetJobDetailsInput":{
|
1261
|
-
"type":"structure",
|
1262
|
-
"required":["jobId"],
|
1263
|
-
"members":{
|
1264
|
-
"jobId":{"shape":"JobId"}
|
1265
|
-
}
|
1266
|
-
},
|
1267
|
-
"GetJobDetailsOutput":{
|
1268
|
-
"type":"structure",
|
1269
|
-
"members":{
|
1270
|
-
"jobDetails":{"shape":"JobDetails"}
|
1271
|
-
}
|
1272
|
-
},
|
1273
|
-
"GetPipelineExecutionInput":{
|
1274
|
-
"type":"structure",
|
1275
|
-
"required":[
|
1276
|
-
"pipelineName",
|
1277
|
-
"pipelineExecutionId"
|
1278
|
-
],
|
1279
|
-
"members":{
|
1280
|
-
"pipelineName":{"shape":"PipelineName"},
|
1281
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
1282
|
-
}
|
1283
|
-
},
|
1284
|
-
"GetPipelineExecutionOutput":{
|
1285
|
-
"type":"structure",
|
1286
|
-
"members":{
|
1287
|
-
"pipelineExecution":{"shape":"PipelineExecution"}
|
1288
|
-
}
|
1289
|
-
},
|
1290
|
-
"GetPipelineInput":{
|
1291
|
-
"type":"structure",
|
1292
|
-
"required":["name"],
|
1293
|
-
"members":{
|
1294
|
-
"name":{"shape":"PipelineName"},
|
1295
|
-
"version":{"shape":"PipelineVersion"}
|
1296
|
-
}
|
1297
|
-
},
|
1298
|
-
"GetPipelineOutput":{
|
1299
|
-
"type":"structure",
|
1300
|
-
"members":{
|
1301
|
-
"pipeline":{"shape":"PipelineDeclaration"},
|
1302
|
-
"metadata":{"shape":"PipelineMetadata"}
|
1303
|
-
}
|
1304
|
-
},
|
1305
|
-
"GetPipelineStateInput":{
|
1306
|
-
"type":"structure",
|
1307
|
-
"required":["name"],
|
1308
|
-
"members":{
|
1309
|
-
"name":{"shape":"PipelineName"}
|
1310
|
-
}
|
1311
|
-
},
|
1312
|
-
"GetPipelineStateOutput":{
|
1313
|
-
"type":"structure",
|
1314
|
-
"members":{
|
1315
|
-
"pipelineName":{"shape":"PipelineName"},
|
1316
|
-
"pipelineVersion":{"shape":"PipelineVersion"},
|
1317
|
-
"stageStates":{"shape":"StageStateList"},
|
1318
|
-
"created":{"shape":"Timestamp"},
|
1319
|
-
"updated":{"shape":"Timestamp"}
|
1320
|
-
}
|
1321
|
-
},
|
1322
|
-
"GetThirdPartyJobDetailsInput":{
|
1323
|
-
"type":"structure",
|
1324
|
-
"required":[
|
1325
|
-
"jobId",
|
1326
|
-
"clientToken"
|
1327
|
-
],
|
1328
|
-
"members":{
|
1329
|
-
"jobId":{"shape":"ThirdPartyJobId"},
|
1330
|
-
"clientToken":{"shape":"ClientToken"}
|
1331
|
-
}
|
1332
|
-
},
|
1333
|
-
"GetThirdPartyJobDetailsOutput":{
|
1334
|
-
"type":"structure",
|
1335
|
-
"members":{
|
1336
|
-
"jobDetails":{"shape":"ThirdPartyJobDetails"}
|
1337
|
-
}
|
1338
|
-
},
|
1339
|
-
"InputArtifact":{
|
1340
|
-
"type":"structure",
|
1341
|
-
"required":["name"],
|
1342
|
-
"members":{
|
1343
|
-
"name":{"shape":"ArtifactName"}
|
1344
|
-
}
|
1345
|
-
},
|
1346
|
-
"InputArtifactList":{
|
1347
|
-
"type":"list",
|
1348
|
-
"member":{"shape":"InputArtifact"}
|
1349
|
-
},
|
1350
|
-
"InvalidActionDeclarationException":{
|
1351
|
-
"type":"structure",
|
1352
|
-
"members":{
|
1353
|
-
},
|
1354
|
-
"exception":true
|
1355
|
-
},
|
1356
|
-
"InvalidApprovalTokenException":{
|
1357
|
-
"type":"structure",
|
1358
|
-
"members":{
|
1359
|
-
},
|
1360
|
-
"exception":true
|
1361
|
-
},
|
1362
|
-
"InvalidArnException":{
|
1363
|
-
"type":"structure",
|
1364
|
-
"members":{
|
1365
|
-
"message":{"shape":"Message"}
|
1366
|
-
},
|
1367
|
-
"exception":true
|
1368
|
-
},
|
1369
|
-
"InvalidBlockerDeclarationException":{
|
1370
|
-
"type":"structure",
|
1371
|
-
"members":{
|
1372
|
-
},
|
1373
|
-
"exception":true
|
1374
|
-
},
|
1375
|
-
"InvalidClientTokenException":{
|
1376
|
-
"type":"structure",
|
1377
|
-
"members":{
|
1378
|
-
},
|
1379
|
-
"exception":true
|
1380
|
-
},
|
1381
|
-
"InvalidJobException":{
|
1382
|
-
"type":"structure",
|
1383
|
-
"members":{
|
1384
|
-
},
|
1385
|
-
"exception":true
|
1386
|
-
},
|
1387
|
-
"InvalidJobStateException":{
|
1388
|
-
"type":"structure",
|
1389
|
-
"members":{
|
1390
|
-
},
|
1391
|
-
"exception":true
|
1392
|
-
},
|
1393
|
-
"InvalidNextTokenException":{
|
1394
|
-
"type":"structure",
|
1395
|
-
"members":{
|
1396
|
-
},
|
1397
|
-
"exception":true
|
1398
|
-
},
|
1399
|
-
"InvalidNonceException":{
|
1400
|
-
"type":"structure",
|
1401
|
-
"members":{
|
1402
|
-
},
|
1403
|
-
"exception":true
|
1404
|
-
},
|
1405
|
-
"InvalidStageDeclarationException":{
|
1406
|
-
"type":"structure",
|
1407
|
-
"members":{
|
1408
|
-
},
|
1409
|
-
"exception":true
|
1410
|
-
},
|
1411
|
-
"InvalidStructureException":{
|
1412
|
-
"type":"structure",
|
1413
|
-
"members":{
|
1414
|
-
},
|
1415
|
-
"exception":true
|
1416
|
-
},
|
1417
|
-
"InvalidTagsException":{
|
1418
|
-
"type":"structure",
|
1419
|
-
"members":{
|
1420
|
-
"message":{"shape":"Message"}
|
1421
|
-
},
|
1422
|
-
"exception":true
|
1423
|
-
},
|
1424
|
-
"InvalidWebhookAuthenticationParametersException":{
|
1425
|
-
"type":"structure",
|
1426
|
-
"members":{
|
1427
|
-
},
|
1428
|
-
"exception":true
|
1429
|
-
},
|
1430
|
-
"InvalidWebhookFilterPatternException":{
|
1431
|
-
"type":"structure",
|
1432
|
-
"members":{
|
1433
|
-
},
|
1434
|
-
"exception":true
|
1435
|
-
},
|
1436
|
-
"Job":{
|
1437
|
-
"type":"structure",
|
1438
|
-
"members":{
|
1439
|
-
"id":{"shape":"JobId"},
|
1440
|
-
"data":{"shape":"JobData"},
|
1441
|
-
"nonce":{"shape":"Nonce"},
|
1442
|
-
"accountId":{"shape":"AccountId"}
|
1443
|
-
}
|
1444
|
-
},
|
1445
|
-
"JobData":{
|
1446
|
-
"type":"structure",
|
1447
|
-
"members":{
|
1448
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
1449
|
-
"actionConfiguration":{"shape":"ActionConfiguration"},
|
1450
|
-
"pipelineContext":{"shape":"PipelineContext"},
|
1451
|
-
"inputArtifacts":{"shape":"ArtifactList"},
|
1452
|
-
"outputArtifacts":{"shape":"ArtifactList"},
|
1453
|
-
"artifactCredentials":{"shape":"AWSSessionCredentials"},
|
1454
|
-
"continuationToken":{"shape":"ContinuationToken"},
|
1455
|
-
"encryptionKey":{"shape":"EncryptionKey"}
|
1456
|
-
}
|
1457
|
-
},
|
1458
|
-
"JobDetails":{
|
1459
|
-
"type":"structure",
|
1460
|
-
"members":{
|
1461
|
-
"id":{"shape":"JobId"},
|
1462
|
-
"data":{"shape":"JobData"},
|
1463
|
-
"accountId":{"shape":"AccountId"}
|
1464
|
-
}
|
1465
|
-
},
|
1466
|
-
"JobId":{
|
1467
|
-
"type":"string",
|
1468
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
1469
|
-
},
|
1470
|
-
"JobList":{
|
1471
|
-
"type":"list",
|
1472
|
-
"member":{"shape":"Job"}
|
1473
|
-
},
|
1474
|
-
"JobNotFoundException":{
|
1475
|
-
"type":"structure",
|
1476
|
-
"members":{
|
1477
|
-
},
|
1478
|
-
"exception":true
|
1479
|
-
},
|
1480
|
-
"JobStatus":{
|
1481
|
-
"type":"string",
|
1482
|
-
"enum":[
|
1483
|
-
"Created",
|
1484
|
-
"Queued",
|
1485
|
-
"Dispatched",
|
1486
|
-
"InProgress",
|
1487
|
-
"TimedOut",
|
1488
|
-
"Succeeded",
|
1489
|
-
"Failed"
|
1490
|
-
]
|
1491
|
-
},
|
1492
|
-
"JsonPath":{
|
1493
|
-
"type":"string",
|
1494
|
-
"max":150,
|
1495
|
-
"min":1
|
1496
|
-
},
|
1497
|
-
"LastChangedAt":{"type":"timestamp"},
|
1498
|
-
"LastChangedBy":{"type":"string"},
|
1499
|
-
"LastUpdatedBy":{"type":"string"},
|
1500
|
-
"LimitExceededException":{
|
1501
|
-
"type":"structure",
|
1502
|
-
"members":{
|
1503
|
-
},
|
1504
|
-
"exception":true
|
1505
|
-
},
|
1506
|
-
"ListActionExecutionsInput":{
|
1507
|
-
"type":"structure",
|
1508
|
-
"required":["pipelineName"],
|
1509
|
-
"members":{
|
1510
|
-
"pipelineName":{"shape":"PipelineName"},
|
1511
|
-
"filter":{"shape":"ActionExecutionFilter"},
|
1512
|
-
"maxResults":{"shape":"MaxResults"},
|
1513
|
-
"nextToken":{"shape":"NextToken"}
|
1514
|
-
}
|
1515
|
-
},
|
1516
|
-
"ListActionExecutionsOutput":{
|
1517
|
-
"type":"structure",
|
1518
|
-
"members":{
|
1519
|
-
"actionExecutionDetails":{"shape":"ActionExecutionDetailList"},
|
1520
|
-
"nextToken":{"shape":"NextToken"}
|
1521
|
-
}
|
1522
|
-
},
|
1523
|
-
"ListActionTypesInput":{
|
1524
|
-
"type":"structure",
|
1525
|
-
"members":{
|
1526
|
-
"actionOwnerFilter":{"shape":"ActionOwner"},
|
1527
|
-
"nextToken":{"shape":"NextToken"}
|
1528
|
-
}
|
1529
|
-
},
|
1530
|
-
"ListActionTypesOutput":{
|
1531
|
-
"type":"structure",
|
1532
|
-
"required":["actionTypes"],
|
1533
|
-
"members":{
|
1534
|
-
"actionTypes":{"shape":"ActionTypeList"},
|
1535
|
-
"nextToken":{"shape":"NextToken"}
|
1536
|
-
}
|
1537
|
-
},
|
1538
|
-
"ListPipelineExecutionsInput":{
|
1539
|
-
"type":"structure",
|
1540
|
-
"required":["pipelineName"],
|
1541
|
-
"members":{
|
1542
|
-
"pipelineName":{"shape":"PipelineName"},
|
1543
|
-
"maxResults":{"shape":"MaxResults"},
|
1544
|
-
"nextToken":{"shape":"NextToken"}
|
1545
|
-
}
|
1546
|
-
},
|
1547
|
-
"ListPipelineExecutionsOutput":{
|
1548
|
-
"type":"structure",
|
1549
|
-
"members":{
|
1550
|
-
"pipelineExecutionSummaries":{"shape":"PipelineExecutionSummaryList"},
|
1551
|
-
"nextToken":{"shape":"NextToken"}
|
1552
|
-
}
|
1553
|
-
},
|
1554
|
-
"ListPipelinesInput":{
|
1555
|
-
"type":"structure",
|
1556
|
-
"members":{
|
1557
|
-
"nextToken":{"shape":"NextToken"}
|
1558
|
-
}
|
1559
|
-
},
|
1560
|
-
"ListPipelinesOutput":{
|
1561
|
-
"type":"structure",
|
1562
|
-
"members":{
|
1563
|
-
"pipelines":{"shape":"PipelineList"},
|
1564
|
-
"nextToken":{"shape":"NextToken"}
|
1565
|
-
}
|
1566
|
-
},
|
1567
|
-
"ListTagsForResourceInput":{
|
1568
|
-
"type":"structure",
|
1569
|
-
"required":["resourceArn"],
|
1570
|
-
"members":{
|
1571
|
-
"resourceArn":{"shape":"ResourceArn"},
|
1572
|
-
"nextToken":{"shape":"NextToken"},
|
1573
|
-
"maxResults":{"shape":"MaxResults"}
|
1574
|
-
}
|
1575
|
-
},
|
1576
|
-
"ListTagsForResourceOutput":{
|
1577
|
-
"type":"structure",
|
1578
|
-
"members":{
|
1579
|
-
"tags":{"shape":"TagList"},
|
1580
|
-
"nextToken":{"shape":"NextToken"}
|
1581
|
-
}
|
1582
|
-
},
|
1583
|
-
"ListWebhookItem":{
|
1584
|
-
"type":"structure",
|
1585
|
-
"required":[
|
1586
|
-
"definition",
|
1587
|
-
"url"
|
1588
|
-
],
|
1589
|
-
"members":{
|
1590
|
-
"definition":{"shape":"WebhookDefinition"},
|
1591
|
-
"url":{"shape":"WebhookUrl"},
|
1592
|
-
"errorMessage":{"shape":"WebhookErrorMessage"},
|
1593
|
-
"errorCode":{"shape":"WebhookErrorCode"},
|
1594
|
-
"lastTriggered":{"shape":"WebhookLastTriggered"},
|
1595
|
-
"arn":{"shape":"WebhookArn"},
|
1596
|
-
"tags":{"shape":"TagList"}
|
1597
|
-
}
|
1598
|
-
},
|
1599
|
-
"ListWebhooksInput":{
|
1600
|
-
"type":"structure",
|
1601
|
-
"members":{
|
1602
|
-
"NextToken":{"shape":"NextToken"},
|
1603
|
-
"MaxResults":{"shape":"MaxResults"}
|
1604
|
-
}
|
1605
|
-
},
|
1606
|
-
"ListWebhooksOutput":{
|
1607
|
-
"type":"structure",
|
1608
|
-
"members":{
|
1609
|
-
"webhooks":{"shape":"WebhookList"},
|
1610
|
-
"NextToken":{"shape":"NextToken"}
|
1611
|
-
}
|
1612
|
-
},
|
1613
|
-
"MatchEquals":{
|
1614
|
-
"type":"string",
|
1615
|
-
"max":150,
|
1616
|
-
"min":1
|
1617
|
-
},
|
1618
|
-
"MaxBatchSize":{
|
1619
|
-
"type":"integer",
|
1620
|
-
"min":1
|
1621
|
-
},
|
1622
|
-
"MaxResults":{
|
1623
|
-
"type":"integer",
|
1624
|
-
"max":100,
|
1625
|
-
"min":1
|
1626
|
-
},
|
1627
|
-
"MaximumArtifactCount":{
|
1628
|
-
"type":"integer",
|
1629
|
-
"max":5,
|
1630
|
-
"min":0
|
1631
|
-
},
|
1632
|
-
"Message":{
|
1633
|
-
"type":"string",
|
1634
|
-
"max":5000,
|
1635
|
-
"min":1
|
1636
|
-
},
|
1637
|
-
"MinimumArtifactCount":{
|
1638
|
-
"type":"integer",
|
1639
|
-
"max":5,
|
1640
|
-
"min":0
|
1641
|
-
},
|
1642
|
-
"NextToken":{
|
1643
|
-
"type":"string",
|
1644
|
-
"max":2048,
|
1645
|
-
"min":1
|
1646
|
-
},
|
1647
|
-
"Nonce":{
|
1648
|
-
"type":"string",
|
1649
|
-
"max":50,
|
1650
|
-
"min":1
|
1651
|
-
},
|
1652
|
-
"NotLatestPipelineExecutionException":{
|
1653
|
-
"type":"structure",
|
1654
|
-
"members":{
|
1655
|
-
},
|
1656
|
-
"exception":true
|
1657
|
-
},
|
1658
|
-
"OutputArtifact":{
|
1659
|
-
"type":"structure",
|
1660
|
-
"required":["name"],
|
1661
|
-
"members":{
|
1662
|
-
"name":{"shape":"ArtifactName"}
|
1663
|
-
}
|
1664
|
-
},
|
1665
|
-
"OutputArtifactList":{
|
1666
|
-
"type":"list",
|
1667
|
-
"member":{"shape":"OutputArtifact"}
|
1668
|
-
},
|
1669
|
-
"Percentage":{
|
1670
|
-
"type":"integer",
|
1671
|
-
"max":100,
|
1672
|
-
"min":0
|
1673
|
-
},
|
1674
|
-
"PipelineArn":{
|
1675
|
-
"type":"string",
|
1676
|
-
"pattern":"arn:aws(-[\\w]+)*:codepipeline:.+:[0-9]{12}:.+"
|
1677
|
-
},
|
1678
|
-
"PipelineContext":{
|
1679
|
-
"type":"structure",
|
1680
|
-
"members":{
|
1681
|
-
"pipelineName":{"shape":"PipelineName"},
|
1682
|
-
"stage":{"shape":"StageContext"},
|
1683
|
-
"action":{"shape":"ActionContext"},
|
1684
|
-
"pipelineArn":{"shape":"PipelineArn"},
|
1685
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
1686
|
-
}
|
1687
|
-
},
|
1688
|
-
"PipelineDeclaration":{
|
1689
|
-
"type":"structure",
|
1690
|
-
"required":[
|
1691
|
-
"name",
|
1692
|
-
"roleArn",
|
1693
|
-
"stages"
|
1694
|
-
],
|
1695
|
-
"members":{
|
1696
|
-
"name":{"shape":"PipelineName"},
|
1697
|
-
"roleArn":{"shape":"RoleArn"},
|
1698
|
-
"artifactStore":{"shape":"ArtifactStore"},
|
1699
|
-
"artifactStores":{"shape":"ArtifactStoreMap"},
|
1700
|
-
"stages":{"shape":"PipelineStageDeclarationList"},
|
1701
|
-
"version":{"shape":"PipelineVersion"}
|
1702
|
-
}
|
1703
|
-
},
|
1704
|
-
"PipelineExecution":{
|
1705
|
-
"type":"structure",
|
1706
|
-
"members":{
|
1707
|
-
"pipelineName":{"shape":"PipelineName"},
|
1708
|
-
"pipelineVersion":{"shape":"PipelineVersion"},
|
1709
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
|
1710
|
-
"status":{"shape":"PipelineExecutionStatus"},
|
1711
|
-
"artifactRevisions":{"shape":"ArtifactRevisionList"}
|
1712
|
-
}
|
1713
|
-
},
|
1714
|
-
"PipelineExecutionId":{
|
1715
|
-
"type":"string",
|
1716
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
1717
|
-
},
|
1718
|
-
"PipelineExecutionNotFoundException":{
|
1719
|
-
"type":"structure",
|
1720
|
-
"members":{
|
1721
|
-
},
|
1722
|
-
"exception":true
|
1723
|
-
},
|
1724
|
-
"PipelineExecutionStatus":{
|
1725
|
-
"type":"string",
|
1726
|
-
"enum":[
|
1727
|
-
"InProgress",
|
1728
|
-
"Succeeded",
|
1729
|
-
"Superseded",
|
1730
|
-
"Failed"
|
1731
|
-
]
|
1732
|
-
},
|
1733
|
-
"PipelineExecutionSummary":{
|
1734
|
-
"type":"structure",
|
1735
|
-
"members":{
|
1736
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
|
1737
|
-
"status":{"shape":"PipelineExecutionStatus"},
|
1738
|
-
"startTime":{"shape":"Timestamp"},
|
1739
|
-
"lastUpdateTime":{"shape":"Timestamp"},
|
1740
|
-
"sourceRevisions":{"shape":"SourceRevisionList"},
|
1741
|
-
"trigger":{"shape":"ExecutionTrigger"}
|
1742
|
-
}
|
1743
|
-
},
|
1744
|
-
"PipelineExecutionSummaryList":{
|
1745
|
-
"type":"list",
|
1746
|
-
"member":{"shape":"PipelineExecutionSummary"}
|
1747
|
-
},
|
1748
|
-
"PipelineList":{
|
1749
|
-
"type":"list",
|
1750
|
-
"member":{"shape":"PipelineSummary"}
|
1751
|
-
},
|
1752
|
-
"PipelineMetadata":{
|
1753
|
-
"type":"structure",
|
1754
|
-
"members":{
|
1755
|
-
"pipelineArn":{"shape":"PipelineArn"},
|
1756
|
-
"created":{"shape":"Timestamp"},
|
1757
|
-
"updated":{"shape":"Timestamp"}
|
1758
|
-
}
|
1759
|
-
},
|
1760
|
-
"PipelineName":{
|
1761
|
-
"type":"string",
|
1762
|
-
"max":100,
|
1763
|
-
"min":1,
|
1764
|
-
"pattern":"[A-Za-z0-9.@\\-_]+"
|
1765
|
-
},
|
1766
|
-
"PipelineNameInUseException":{
|
1767
|
-
"type":"structure",
|
1768
|
-
"members":{
|
1769
|
-
},
|
1770
|
-
"exception":true
|
1771
|
-
},
|
1772
|
-
"PipelineNotFoundException":{
|
1773
|
-
"type":"structure",
|
1774
|
-
"members":{
|
1775
|
-
},
|
1776
|
-
"exception":true
|
1777
|
-
},
|
1778
|
-
"PipelineStageDeclarationList":{
|
1779
|
-
"type":"list",
|
1780
|
-
"member":{"shape":"StageDeclaration"}
|
1781
|
-
},
|
1782
|
-
"PipelineSummary":{
|
1783
|
-
"type":"structure",
|
1784
|
-
"members":{
|
1785
|
-
"name":{"shape":"PipelineName"},
|
1786
|
-
"version":{"shape":"PipelineVersion"},
|
1787
|
-
"created":{"shape":"Timestamp"},
|
1788
|
-
"updated":{"shape":"Timestamp"}
|
1789
|
-
}
|
1790
|
-
},
|
1791
|
-
"PipelineVersion":{
|
1792
|
-
"type":"integer",
|
1793
|
-
"min":1
|
1794
|
-
},
|
1795
|
-
"PipelineVersionNotFoundException":{
|
1796
|
-
"type":"structure",
|
1797
|
-
"members":{
|
1798
|
-
},
|
1799
|
-
"exception":true
|
1800
|
-
},
|
1801
|
-
"PollForJobsInput":{
|
1802
|
-
"type":"structure",
|
1803
|
-
"required":["actionTypeId"],
|
1804
|
-
"members":{
|
1805
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
1806
|
-
"maxBatchSize":{"shape":"MaxBatchSize"},
|
1807
|
-
"queryParam":{"shape":"QueryParamMap"}
|
1808
|
-
}
|
1809
|
-
},
|
1810
|
-
"PollForJobsOutput":{
|
1811
|
-
"type":"structure",
|
1812
|
-
"members":{
|
1813
|
-
"jobs":{"shape":"JobList"}
|
1814
|
-
}
|
1815
|
-
},
|
1816
|
-
"PollForThirdPartyJobsInput":{
|
1817
|
-
"type":"structure",
|
1818
|
-
"required":["actionTypeId"],
|
1819
|
-
"members":{
|
1820
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
1821
|
-
"maxBatchSize":{"shape":"MaxBatchSize"}
|
1822
|
-
}
|
1823
|
-
},
|
1824
|
-
"PollForThirdPartyJobsOutput":{
|
1825
|
-
"type":"structure",
|
1826
|
-
"members":{
|
1827
|
-
"jobs":{"shape":"ThirdPartyJobList"}
|
1828
|
-
}
|
1829
|
-
},
|
1830
|
-
"PutActionRevisionInput":{
|
1831
|
-
"type":"structure",
|
1832
|
-
"required":[
|
1833
|
-
"pipelineName",
|
1834
|
-
"stageName",
|
1835
|
-
"actionName",
|
1836
|
-
"actionRevision"
|
1837
|
-
],
|
1838
|
-
"members":{
|
1839
|
-
"pipelineName":{"shape":"PipelineName"},
|
1840
|
-
"stageName":{"shape":"StageName"},
|
1841
|
-
"actionName":{"shape":"ActionName"},
|
1842
|
-
"actionRevision":{"shape":"ActionRevision"}
|
1843
|
-
}
|
1844
|
-
},
|
1845
|
-
"PutActionRevisionOutput":{
|
1846
|
-
"type":"structure",
|
1847
|
-
"members":{
|
1848
|
-
"newRevision":{"shape":"Boolean"},
|
1849
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
1850
|
-
}
|
1851
|
-
},
|
1852
|
-
"PutApprovalResultInput":{
|
1853
|
-
"type":"structure",
|
1854
|
-
"required":[
|
1855
|
-
"pipelineName",
|
1856
|
-
"stageName",
|
1857
|
-
"actionName",
|
1858
|
-
"result",
|
1859
|
-
"token"
|
1860
|
-
],
|
1861
|
-
"members":{
|
1862
|
-
"pipelineName":{"shape":"PipelineName"},
|
1863
|
-
"stageName":{"shape":"StageName"},
|
1864
|
-
"actionName":{"shape":"ActionName"},
|
1865
|
-
"result":{"shape":"ApprovalResult"},
|
1866
|
-
"token":{"shape":"ApprovalToken"}
|
1867
|
-
}
|
1868
|
-
},
|
1869
|
-
"PutApprovalResultOutput":{
|
1870
|
-
"type":"structure",
|
1871
|
-
"members":{
|
1872
|
-
"approvedAt":{"shape":"Timestamp"}
|
1873
|
-
}
|
1874
|
-
},
|
1875
|
-
"PutJobFailureResultInput":{
|
1876
|
-
"type":"structure",
|
1877
|
-
"required":[
|
1878
|
-
"jobId",
|
1879
|
-
"failureDetails"
|
1880
|
-
],
|
1881
|
-
"members":{
|
1882
|
-
"jobId":{"shape":"JobId"},
|
1883
|
-
"failureDetails":{"shape":"FailureDetails"}
|
1884
|
-
}
|
1885
|
-
},
|
1886
|
-
"PutJobSuccessResultInput":{
|
1887
|
-
"type":"structure",
|
1888
|
-
"required":["jobId"],
|
1889
|
-
"members":{
|
1890
|
-
"jobId":{"shape":"JobId"},
|
1891
|
-
"currentRevision":{"shape":"CurrentRevision"},
|
1892
|
-
"continuationToken":{"shape":"ContinuationToken"},
|
1893
|
-
"executionDetails":{"shape":"ExecutionDetails"}
|
1894
|
-
}
|
1895
|
-
},
|
1896
|
-
"PutThirdPartyJobFailureResultInput":{
|
1897
|
-
"type":"structure",
|
1898
|
-
"required":[
|
1899
|
-
"jobId",
|
1900
|
-
"clientToken",
|
1901
|
-
"failureDetails"
|
1902
|
-
],
|
1903
|
-
"members":{
|
1904
|
-
"jobId":{"shape":"ThirdPartyJobId"},
|
1905
|
-
"clientToken":{"shape":"ClientToken"},
|
1906
|
-
"failureDetails":{"shape":"FailureDetails"}
|
1907
|
-
}
|
1908
|
-
},
|
1909
|
-
"PutThirdPartyJobSuccessResultInput":{
|
1910
|
-
"type":"structure",
|
1911
|
-
"required":[
|
1912
|
-
"jobId",
|
1913
|
-
"clientToken"
|
1914
|
-
],
|
1915
|
-
"members":{
|
1916
|
-
"jobId":{"shape":"ThirdPartyJobId"},
|
1917
|
-
"clientToken":{"shape":"ClientToken"},
|
1918
|
-
"currentRevision":{"shape":"CurrentRevision"},
|
1919
|
-
"continuationToken":{"shape":"ContinuationToken"},
|
1920
|
-
"executionDetails":{"shape":"ExecutionDetails"}
|
1921
|
-
}
|
1922
|
-
},
|
1923
|
-
"PutWebhookInput":{
|
1924
|
-
"type":"structure",
|
1925
|
-
"required":["webhook"],
|
1926
|
-
"members":{
|
1927
|
-
"webhook":{"shape":"WebhookDefinition"},
|
1928
|
-
"tags":{"shape":"TagList"}
|
1929
|
-
}
|
1930
|
-
},
|
1931
|
-
"PutWebhookOutput":{
|
1932
|
-
"type":"structure",
|
1933
|
-
"members":{
|
1934
|
-
"webhook":{"shape":"ListWebhookItem"}
|
1935
|
-
}
|
1936
|
-
},
|
1937
|
-
"QueryParamMap":{
|
1938
|
-
"type":"map",
|
1939
|
-
"key":{"shape":"ActionConfigurationKey"},
|
1940
|
-
"value":{"shape":"ActionConfigurationQueryableValue"},
|
1941
|
-
"max":1,
|
1942
|
-
"min":0
|
1943
|
-
},
|
1944
|
-
"RegisterWebhookWithThirdPartyInput":{
|
1945
|
-
"type":"structure",
|
1946
|
-
"members":{
|
1947
|
-
"webhookName":{"shape":"WebhookName"}
|
1948
|
-
}
|
1949
|
-
},
|
1950
|
-
"RegisterWebhookWithThirdPartyOutput":{
|
1951
|
-
"type":"structure",
|
1952
|
-
"members":{
|
1953
|
-
}
|
1954
|
-
},
|
1955
|
-
"ResourceArn":{
|
1956
|
-
"type":"string",
|
1957
|
-
"pattern":"arn:aws(-[\\w]+)*:codepipeline:.+:[0-9]{12}:.+"
|
1958
|
-
},
|
1959
|
-
"ResourceNotFoundException":{
|
1960
|
-
"type":"structure",
|
1961
|
-
"members":{
|
1962
|
-
},
|
1963
|
-
"exception":true
|
1964
|
-
},
|
1965
|
-
"RetryStageExecutionInput":{
|
1966
|
-
"type":"structure",
|
1967
|
-
"required":[
|
1968
|
-
"pipelineName",
|
1969
|
-
"stageName",
|
1970
|
-
"pipelineExecutionId",
|
1971
|
-
"retryMode"
|
1972
|
-
],
|
1973
|
-
"members":{
|
1974
|
-
"pipelineName":{"shape":"PipelineName"},
|
1975
|
-
"stageName":{"shape":"StageName"},
|
1976
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
|
1977
|
-
"retryMode":{"shape":"StageRetryMode"}
|
1978
|
-
}
|
1979
|
-
},
|
1980
|
-
"RetryStageExecutionOutput":{
|
1981
|
-
"type":"structure",
|
1982
|
-
"members":{
|
1983
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
1984
|
-
}
|
1985
|
-
},
|
1986
|
-
"Revision":{
|
1987
|
-
"type":"string",
|
1988
|
-
"max":1500,
|
1989
|
-
"min":1
|
1990
|
-
},
|
1991
|
-
"RevisionChangeIdentifier":{
|
1992
|
-
"type":"string",
|
1993
|
-
"max":100,
|
1994
|
-
"min":1
|
1995
|
-
},
|
1996
|
-
"RevisionSummary":{
|
1997
|
-
"type":"string",
|
1998
|
-
"max":2048,
|
1999
|
-
"min":1
|
2000
|
-
},
|
2001
|
-
"RoleArn":{
|
2002
|
-
"type":"string",
|
2003
|
-
"max":1024,
|
2004
|
-
"pattern":"arn:aws(-[\\w]+)*:iam::[0-9]{12}:role/.*"
|
2005
|
-
},
|
2006
|
-
"S3ArtifactLocation":{
|
2007
|
-
"type":"structure",
|
2008
|
-
"required":[
|
2009
|
-
"bucketName",
|
2010
|
-
"objectKey"
|
2011
|
-
],
|
2012
|
-
"members":{
|
2013
|
-
"bucketName":{"shape":"S3BucketName"},
|
2014
|
-
"objectKey":{"shape":"S3ObjectKey"}
|
2015
|
-
}
|
2016
|
-
},
|
2017
|
-
"S3Bucket":{
|
2018
|
-
"type":"string",
|
2019
|
-
"max":63,
|
2020
|
-
"min":3
|
2021
|
-
},
|
2022
|
-
"S3BucketName":{"type":"string"},
|
2023
|
-
"S3Key":{
|
2024
|
-
"type":"string",
|
2025
|
-
"max":100,
|
2026
|
-
"min":1
|
2027
|
-
},
|
2028
|
-
"S3Location":{
|
2029
|
-
"type":"structure",
|
2030
|
-
"members":{
|
2031
|
-
"bucket":{"shape":"S3Bucket"},
|
2032
|
-
"key":{"shape":"S3Key"}
|
2033
|
-
}
|
2034
|
-
},
|
2035
|
-
"S3ObjectKey":{"type":"string"},
|
2036
|
-
"SecretAccessKey":{"type":"string"},
|
2037
|
-
"SessionToken":{"type":"string"},
|
2038
|
-
"SourceRevision":{
|
2039
|
-
"type":"structure",
|
2040
|
-
"required":["actionName"],
|
2041
|
-
"members":{
|
2042
|
-
"actionName":{"shape":"ActionName"},
|
2043
|
-
"revisionId":{"shape":"Revision"},
|
2044
|
-
"revisionSummary":{"shape":"RevisionSummary"},
|
2045
|
-
"revisionUrl":{"shape":"Url"}
|
2046
|
-
}
|
2047
|
-
},
|
2048
|
-
"SourceRevisionList":{
|
2049
|
-
"type":"list",
|
2050
|
-
"member":{"shape":"SourceRevision"}
|
2051
|
-
},
|
2052
|
-
"StageActionDeclarationList":{
|
2053
|
-
"type":"list",
|
2054
|
-
"member":{"shape":"ActionDeclaration"}
|
2055
|
-
},
|
2056
|
-
"StageBlockerDeclarationList":{
|
2057
|
-
"type":"list",
|
2058
|
-
"member":{"shape":"BlockerDeclaration"}
|
2059
|
-
},
|
2060
|
-
"StageContext":{
|
2061
|
-
"type":"structure",
|
2062
|
-
"members":{
|
2063
|
-
"name":{"shape":"StageName"}
|
2064
|
-
}
|
2065
|
-
},
|
2066
|
-
"StageDeclaration":{
|
2067
|
-
"type":"structure",
|
2068
|
-
"required":[
|
2069
|
-
"name",
|
2070
|
-
"actions"
|
2071
|
-
],
|
2072
|
-
"members":{
|
2073
|
-
"name":{"shape":"StageName"},
|
2074
|
-
"blockers":{"shape":"StageBlockerDeclarationList"},
|
2075
|
-
"actions":{"shape":"StageActionDeclarationList"}
|
2076
|
-
}
|
2077
|
-
},
|
2078
|
-
"StageExecution":{
|
2079
|
-
"type":"structure",
|
2080
|
-
"required":[
|
2081
|
-
"pipelineExecutionId",
|
2082
|
-
"status"
|
2083
|
-
],
|
2084
|
-
"members":{
|
2085
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"},
|
2086
|
-
"status":{"shape":"StageExecutionStatus"}
|
2087
|
-
}
|
2088
|
-
},
|
2089
|
-
"StageExecutionStatus":{
|
2090
|
-
"type":"string",
|
2091
|
-
"enum":[
|
2092
|
-
"InProgress",
|
2093
|
-
"Failed",
|
2094
|
-
"Succeeded"
|
2095
|
-
]
|
2096
|
-
},
|
2097
|
-
"StageName":{
|
2098
|
-
"type":"string",
|
2099
|
-
"max":100,
|
2100
|
-
"min":1,
|
2101
|
-
"pattern":"[A-Za-z0-9.@\\-_]+"
|
2102
|
-
},
|
2103
|
-
"StageNotFoundException":{
|
2104
|
-
"type":"structure",
|
2105
|
-
"members":{
|
2106
|
-
},
|
2107
|
-
"exception":true
|
2108
|
-
},
|
2109
|
-
"StageNotRetryableException":{
|
2110
|
-
"type":"structure",
|
2111
|
-
"members":{
|
2112
|
-
},
|
2113
|
-
"exception":true
|
2114
|
-
},
|
2115
|
-
"StageRetryMode":{
|
2116
|
-
"type":"string",
|
2117
|
-
"enum":["FAILED_ACTIONS"]
|
2118
|
-
},
|
2119
|
-
"StageState":{
|
2120
|
-
"type":"structure",
|
2121
|
-
"members":{
|
2122
|
-
"stageName":{"shape":"StageName"},
|
2123
|
-
"inboundTransitionState":{"shape":"TransitionState"},
|
2124
|
-
"actionStates":{"shape":"ActionStateList"},
|
2125
|
-
"latestExecution":{"shape":"StageExecution"}
|
2126
|
-
}
|
2127
|
-
},
|
2128
|
-
"StageStateList":{
|
2129
|
-
"type":"list",
|
2130
|
-
"member":{"shape":"StageState"}
|
2131
|
-
},
|
2132
|
-
"StageTransitionType":{
|
2133
|
-
"type":"string",
|
2134
|
-
"enum":[
|
2135
|
-
"Inbound",
|
2136
|
-
"Outbound"
|
2137
|
-
]
|
2138
|
-
},
|
2139
|
-
"StartPipelineExecutionInput":{
|
2140
|
-
"type":"structure",
|
2141
|
-
"required":["name"],
|
2142
|
-
"members":{
|
2143
|
-
"name":{"shape":"PipelineName"},
|
2144
|
-
"clientRequestToken":{
|
2145
|
-
"shape":"ClientRequestToken",
|
2146
|
-
"idempotencyToken":true
|
2147
|
-
}
|
2148
|
-
}
|
2149
|
-
},
|
2150
|
-
"StartPipelineExecutionOutput":{
|
2151
|
-
"type":"structure",
|
2152
|
-
"members":{
|
2153
|
-
"pipelineExecutionId":{"shape":"PipelineExecutionId"}
|
2154
|
-
}
|
2155
|
-
},
|
2156
|
-
"Tag":{
|
2157
|
-
"type":"structure",
|
2158
|
-
"required":[
|
2159
|
-
"key",
|
2160
|
-
"value"
|
2161
|
-
],
|
2162
|
-
"members":{
|
2163
|
-
"key":{"shape":"TagKey"},
|
2164
|
-
"value":{"shape":"TagValue"}
|
2165
|
-
}
|
2166
|
-
},
|
2167
|
-
"TagKey":{
|
2168
|
-
"type":"string",
|
2169
|
-
"max":128,
|
2170
|
-
"min":1
|
2171
|
-
},
|
2172
|
-
"TagKeyList":{
|
2173
|
-
"type":"list",
|
2174
|
-
"member":{"shape":"TagKey"}
|
2175
|
-
},
|
2176
|
-
"TagList":{
|
2177
|
-
"type":"list",
|
2178
|
-
"member":{"shape":"Tag"}
|
2179
|
-
},
|
2180
|
-
"TagResourceInput":{
|
2181
|
-
"type":"structure",
|
2182
|
-
"required":[
|
2183
|
-
"resourceArn",
|
2184
|
-
"tags"
|
2185
|
-
],
|
2186
|
-
"members":{
|
2187
|
-
"resourceArn":{"shape":"ResourceArn"},
|
2188
|
-
"tags":{"shape":"TagList"}
|
2189
|
-
}
|
2190
|
-
},
|
2191
|
-
"TagResourceOutput":{
|
2192
|
-
"type":"structure",
|
2193
|
-
"members":{
|
2194
|
-
}
|
2195
|
-
},
|
2196
|
-
"TagValue":{
|
2197
|
-
"type":"string",
|
2198
|
-
"max":256,
|
2199
|
-
"min":0
|
2200
|
-
},
|
2201
|
-
"ThirdPartyJob":{
|
2202
|
-
"type":"structure",
|
2203
|
-
"members":{
|
2204
|
-
"clientId":{"shape":"ClientId"},
|
2205
|
-
"jobId":{"shape":"JobId"}
|
2206
|
-
}
|
2207
|
-
},
|
2208
|
-
"ThirdPartyJobData":{
|
2209
|
-
"type":"structure",
|
2210
|
-
"members":{
|
2211
|
-
"actionTypeId":{"shape":"ActionTypeId"},
|
2212
|
-
"actionConfiguration":{"shape":"ActionConfiguration"},
|
2213
|
-
"pipelineContext":{"shape":"PipelineContext"},
|
2214
|
-
"inputArtifacts":{"shape":"ArtifactList"},
|
2215
|
-
"outputArtifacts":{"shape":"ArtifactList"},
|
2216
|
-
"artifactCredentials":{"shape":"AWSSessionCredentials"},
|
2217
|
-
"continuationToken":{"shape":"ContinuationToken"},
|
2218
|
-
"encryptionKey":{"shape":"EncryptionKey"}
|
2219
|
-
}
|
2220
|
-
},
|
2221
|
-
"ThirdPartyJobDetails":{
|
2222
|
-
"type":"structure",
|
2223
|
-
"members":{
|
2224
|
-
"id":{"shape":"ThirdPartyJobId"},
|
2225
|
-
"data":{"shape":"ThirdPartyJobData"},
|
2226
|
-
"nonce":{"shape":"Nonce"}
|
2227
|
-
}
|
2228
|
-
},
|
2229
|
-
"ThirdPartyJobId":{
|
2230
|
-
"type":"string",
|
2231
|
-
"max":512,
|
2232
|
-
"min":1
|
2233
|
-
},
|
2234
|
-
"ThirdPartyJobList":{
|
2235
|
-
"type":"list",
|
2236
|
-
"member":{"shape":"ThirdPartyJob"}
|
2237
|
-
},
|
2238
|
-
"Time":{"type":"timestamp"},
|
2239
|
-
"Timestamp":{"type":"timestamp"},
|
2240
|
-
"TooManyTagsException":{
|
2241
|
-
"type":"structure",
|
2242
|
-
"members":{
|
2243
|
-
"message":{"shape":"Message"}
|
2244
|
-
},
|
2245
|
-
"exception":true
|
2246
|
-
},
|
2247
|
-
"TransitionState":{
|
2248
|
-
"type":"structure",
|
2249
|
-
"members":{
|
2250
|
-
"enabled":{"shape":"Enabled"},
|
2251
|
-
"lastChangedBy":{"shape":"LastChangedBy"},
|
2252
|
-
"lastChangedAt":{"shape":"LastChangedAt"},
|
2253
|
-
"disabledReason":{"shape":"DisabledReason"}
|
2254
|
-
}
|
2255
|
-
},
|
2256
|
-
"TriggerDetail":{
|
2257
|
-
"type":"string",
|
2258
|
-
"max":1024,
|
2259
|
-
"min":0
|
2260
|
-
},
|
2261
|
-
"TriggerType":{
|
2262
|
-
"type":"string",
|
2263
|
-
"enum":[
|
2264
|
-
"CreatePipeline",
|
2265
|
-
"StartPipelineExecution",
|
2266
|
-
"PollForSourceChanges",
|
2267
|
-
"Webhook",
|
2268
|
-
"CloudWatchEvent",
|
2269
|
-
"PutActionRevision"
|
2270
|
-
]
|
2271
|
-
},
|
2272
|
-
"UntagResourceInput":{
|
2273
|
-
"type":"structure",
|
2274
|
-
"required":[
|
2275
|
-
"resourceArn",
|
2276
|
-
"tagKeys"
|
2277
|
-
],
|
2278
|
-
"members":{
|
2279
|
-
"resourceArn":{"shape":"ResourceArn"},
|
2280
|
-
"tagKeys":{"shape":"TagKeyList"}
|
2281
|
-
}
|
2282
|
-
},
|
2283
|
-
"UntagResourceOutput":{
|
2284
|
-
"type":"structure",
|
2285
|
-
"members":{
|
2286
|
-
}
|
2287
|
-
},
|
2288
|
-
"UpdatePipelineInput":{
|
2289
|
-
"type":"structure",
|
2290
|
-
"required":["pipeline"],
|
2291
|
-
"members":{
|
2292
|
-
"pipeline":{"shape":"PipelineDeclaration"}
|
2293
|
-
}
|
2294
|
-
},
|
2295
|
-
"UpdatePipelineOutput":{
|
2296
|
-
"type":"structure",
|
2297
|
-
"members":{
|
2298
|
-
"pipeline":{"shape":"PipelineDeclaration"}
|
2299
|
-
}
|
2300
|
-
},
|
2301
|
-
"Url":{
|
2302
|
-
"type":"string",
|
2303
|
-
"max":2048,
|
2304
|
-
"min":1
|
2305
|
-
},
|
2306
|
-
"UrlTemplate":{
|
2307
|
-
"type":"string",
|
2308
|
-
"max":2048,
|
2309
|
-
"min":1
|
2310
|
-
},
|
2311
|
-
"ValidationException":{
|
2312
|
-
"type":"structure",
|
2313
|
-
"members":{
|
2314
|
-
},
|
2315
|
-
"exception":true
|
2316
|
-
},
|
2317
|
-
"Version":{
|
2318
|
-
"type":"string",
|
2319
|
-
"max":9,
|
2320
|
-
"min":1,
|
2321
|
-
"pattern":"[0-9A-Za-z_-]+"
|
2322
|
-
},
|
2323
|
-
"WebhookArn":{"type":"string"},
|
2324
|
-
"WebhookAuthConfiguration":{
|
2325
|
-
"type":"structure",
|
2326
|
-
"members":{
|
2327
|
-
"AllowedIPRange":{"shape":"WebhookAuthConfigurationAllowedIPRange"},
|
2328
|
-
"SecretToken":{"shape":"WebhookAuthConfigurationSecretToken"}
|
2329
|
-
}
|
2330
|
-
},
|
2331
|
-
"WebhookAuthConfigurationAllowedIPRange":{
|
2332
|
-
"type":"string",
|
2333
|
-
"max":100,
|
2334
|
-
"min":1
|
2335
|
-
},
|
2336
|
-
"WebhookAuthConfigurationSecretToken":{
|
2337
|
-
"type":"string",
|
2338
|
-
"max":100,
|
2339
|
-
"min":1
|
2340
|
-
},
|
2341
|
-
"WebhookAuthenticationType":{
|
2342
|
-
"type":"string",
|
2343
|
-
"enum":[
|
2344
|
-
"GITHUB_HMAC",
|
2345
|
-
"IP",
|
2346
|
-
"UNAUTHENTICATED"
|
2347
|
-
]
|
2348
|
-
},
|
2349
|
-
"WebhookDefinition":{
|
2350
|
-
"type":"structure",
|
2351
|
-
"required":[
|
2352
|
-
"name",
|
2353
|
-
"targetPipeline",
|
2354
|
-
"targetAction",
|
2355
|
-
"filters",
|
2356
|
-
"authentication",
|
2357
|
-
"authenticationConfiguration"
|
2358
|
-
],
|
2359
|
-
"members":{
|
2360
|
-
"name":{"shape":"WebhookName"},
|
2361
|
-
"targetPipeline":{"shape":"PipelineName"},
|
2362
|
-
"targetAction":{"shape":"ActionName"},
|
2363
|
-
"filters":{"shape":"WebhookFilters"},
|
2364
|
-
"authentication":{"shape":"WebhookAuthenticationType"},
|
2365
|
-
"authenticationConfiguration":{"shape":"WebhookAuthConfiguration"}
|
2366
|
-
}
|
2367
|
-
},
|
2368
|
-
"WebhookErrorCode":{"type":"string"},
|
2369
|
-
"WebhookErrorMessage":{"type":"string"},
|
2370
|
-
"WebhookFilterRule":{
|
2371
|
-
"type":"structure",
|
2372
|
-
"required":["jsonPath"],
|
2373
|
-
"members":{
|
2374
|
-
"jsonPath":{"shape":"JsonPath"},
|
2375
|
-
"matchEquals":{"shape":"MatchEquals"}
|
2376
|
-
}
|
2377
|
-
},
|
2378
|
-
"WebhookFilters":{
|
2379
|
-
"type":"list",
|
2380
|
-
"member":{"shape":"WebhookFilterRule"},
|
2381
|
-
"max":5
|
2382
|
-
},
|
2383
|
-
"WebhookLastTriggered":{"type":"timestamp"},
|
2384
|
-
"WebhookList":{
|
2385
|
-
"type":"list",
|
2386
|
-
"member":{"shape":"ListWebhookItem"}
|
2387
|
-
},
|
2388
|
-
"WebhookName":{
|
2389
|
-
"type":"string",
|
2390
|
-
"max":100,
|
2391
|
-
"min":1,
|
2392
|
-
"pattern":"[A-Za-z0-9.@\\-_]+"
|
2393
|
-
},
|
2394
|
-
"WebhookNotFoundException":{
|
2395
|
-
"type":"structure",
|
2396
|
-
"members":{
|
2397
|
-
},
|
2398
|
-
"exception":true
|
2399
|
-
},
|
2400
|
-
"WebhookUrl":{
|
2401
|
-
"type":"string",
|
2402
|
-
"max":1000,
|
2403
|
-
"min":1
|
2404
|
-
}
|
2405
|
-
}
|
2406
|
-
}
|