aws-sdk-core 2.11.354 → 3.66.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -552
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -11
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1042
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3281
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2340
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1305
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -25410
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2899
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3152
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3470
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1881
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2514
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6577
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2138
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8914
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -505
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -857
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5163
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -769
@@ -1,40 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListAWSDefaultServiceQuotas": {
|
4
|
-
"input_token": "NextToken",
|
5
|
-
"limit_key": "MaxResults",
|
6
|
-
"output_token": "NextToken",
|
7
|
-
"result_key": "Quotas"
|
8
|
-
},
|
9
|
-
"ListRequestedServiceQuotaChangeHistory": {
|
10
|
-
"input_token": "NextToken",
|
11
|
-
"limit_key": "MaxResults",
|
12
|
-
"output_token": "NextToken",
|
13
|
-
"result_key": "RequestedQuotas"
|
14
|
-
},
|
15
|
-
"ListRequestedServiceQuotaChangeHistoryByQuota": {
|
16
|
-
"input_token": "NextToken",
|
17
|
-
"limit_key": "MaxResults",
|
18
|
-
"output_token": "NextToken",
|
19
|
-
"result_key": "RequestedQuotas"
|
20
|
-
},
|
21
|
-
"ListServiceQuotaIncreaseRequestsInTemplate": {
|
22
|
-
"input_token": "NextToken",
|
23
|
-
"limit_key": "MaxResults",
|
24
|
-
"output_token": "NextToken",
|
25
|
-
"result_key": "ServiceQuotaIncreaseRequestInTemplateList"
|
26
|
-
},
|
27
|
-
"ListServiceQuotas": {
|
28
|
-
"input_token": "NextToken",
|
29
|
-
"limit_key": "MaxResults",
|
30
|
-
"output_token": "NextToken",
|
31
|
-
"result_key": "Quotas"
|
32
|
-
},
|
33
|
-
"ListServices": {
|
34
|
-
"input_token": "NextToken",
|
35
|
-
"limit_key": "MaxResults",
|
36
|
-
"output_token": "NextToken",
|
37
|
-
"result_key": "Services"
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
@@ -1,3977 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2015-12-10",
|
5
|
-
"endpointPrefix":"servicecatalog",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceFullName":"AWS Service Catalog",
|
9
|
-
"serviceId":"Service Catalog",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"targetPrefix":"AWS242ServiceCatalogService",
|
12
|
-
"uid":"servicecatalog-2015-12-10"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"AcceptPortfolioShare":{
|
16
|
-
"name":"AcceptPortfolioShare",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/"
|
20
|
-
},
|
21
|
-
"input":{"shape":"AcceptPortfolioShareInput"},
|
22
|
-
"output":{"shape":"AcceptPortfolioShareOutput"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"InvalidParametersException"},
|
25
|
-
{"shape":"ResourceNotFoundException"},
|
26
|
-
{"shape":"LimitExceededException"}
|
27
|
-
]
|
28
|
-
},
|
29
|
-
"AssociateBudgetWithResource":{
|
30
|
-
"name":"AssociateBudgetWithResource",
|
31
|
-
"http":{
|
32
|
-
"method":"POST",
|
33
|
-
"requestUri":"/"
|
34
|
-
},
|
35
|
-
"input":{"shape":"AssociateBudgetWithResourceInput"},
|
36
|
-
"output":{"shape":"AssociateBudgetWithResourceOutput"},
|
37
|
-
"errors":[
|
38
|
-
{"shape":"InvalidParametersException"},
|
39
|
-
{"shape":"DuplicateResourceException"},
|
40
|
-
{"shape":"LimitExceededException"},
|
41
|
-
{"shape":"ResourceNotFoundException"}
|
42
|
-
]
|
43
|
-
},
|
44
|
-
"AssociatePrincipalWithPortfolio":{
|
45
|
-
"name":"AssociatePrincipalWithPortfolio",
|
46
|
-
"http":{
|
47
|
-
"method":"POST",
|
48
|
-
"requestUri":"/"
|
49
|
-
},
|
50
|
-
"input":{"shape":"AssociatePrincipalWithPortfolioInput"},
|
51
|
-
"output":{"shape":"AssociatePrincipalWithPortfolioOutput"},
|
52
|
-
"errors":[
|
53
|
-
{"shape":"InvalidParametersException"},
|
54
|
-
{"shape":"ResourceNotFoundException"},
|
55
|
-
{"shape":"LimitExceededException"}
|
56
|
-
]
|
57
|
-
},
|
58
|
-
"AssociateProductWithPortfolio":{
|
59
|
-
"name":"AssociateProductWithPortfolio",
|
60
|
-
"http":{
|
61
|
-
"method":"POST",
|
62
|
-
"requestUri":"/"
|
63
|
-
},
|
64
|
-
"input":{"shape":"AssociateProductWithPortfolioInput"},
|
65
|
-
"output":{"shape":"AssociateProductWithPortfolioOutput"},
|
66
|
-
"errors":[
|
67
|
-
{"shape":"InvalidParametersException"},
|
68
|
-
{"shape":"ResourceNotFoundException"},
|
69
|
-
{"shape":"LimitExceededException"}
|
70
|
-
]
|
71
|
-
},
|
72
|
-
"AssociateServiceActionWithProvisioningArtifact":{
|
73
|
-
"name":"AssociateServiceActionWithProvisioningArtifact",
|
74
|
-
"http":{
|
75
|
-
"method":"POST",
|
76
|
-
"requestUri":"/"
|
77
|
-
},
|
78
|
-
"input":{"shape":"AssociateServiceActionWithProvisioningArtifactInput"},
|
79
|
-
"output":{"shape":"AssociateServiceActionWithProvisioningArtifactOutput"},
|
80
|
-
"errors":[
|
81
|
-
{"shape":"ResourceNotFoundException"},
|
82
|
-
{"shape":"DuplicateResourceException"},
|
83
|
-
{"shape":"LimitExceededException"}
|
84
|
-
]
|
85
|
-
},
|
86
|
-
"AssociateTagOptionWithResource":{
|
87
|
-
"name":"AssociateTagOptionWithResource",
|
88
|
-
"http":{
|
89
|
-
"method":"POST",
|
90
|
-
"requestUri":"/"
|
91
|
-
},
|
92
|
-
"input":{"shape":"AssociateTagOptionWithResourceInput"},
|
93
|
-
"output":{"shape":"AssociateTagOptionWithResourceOutput"},
|
94
|
-
"errors":[
|
95
|
-
{"shape":"TagOptionNotMigratedException"},
|
96
|
-
{"shape":"ResourceNotFoundException"},
|
97
|
-
{"shape":"InvalidParametersException"},
|
98
|
-
{"shape":"LimitExceededException"},
|
99
|
-
{"shape":"DuplicateResourceException"},
|
100
|
-
{"shape":"InvalidStateException"}
|
101
|
-
]
|
102
|
-
},
|
103
|
-
"BatchAssociateServiceActionWithProvisioningArtifact":{
|
104
|
-
"name":"BatchAssociateServiceActionWithProvisioningArtifact",
|
105
|
-
"http":{
|
106
|
-
"method":"POST",
|
107
|
-
"requestUri":"/"
|
108
|
-
},
|
109
|
-
"input":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactInput"},
|
110
|
-
"output":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactOutput"},
|
111
|
-
"errors":[
|
112
|
-
{"shape":"InvalidParametersException"}
|
113
|
-
]
|
114
|
-
},
|
115
|
-
"BatchDisassociateServiceActionFromProvisioningArtifact":{
|
116
|
-
"name":"BatchDisassociateServiceActionFromProvisioningArtifact",
|
117
|
-
"http":{
|
118
|
-
"method":"POST",
|
119
|
-
"requestUri":"/"
|
120
|
-
},
|
121
|
-
"input":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactInput"},
|
122
|
-
"output":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactOutput"},
|
123
|
-
"errors":[
|
124
|
-
{"shape":"InvalidParametersException"}
|
125
|
-
]
|
126
|
-
},
|
127
|
-
"CopyProduct":{
|
128
|
-
"name":"CopyProduct",
|
129
|
-
"http":{
|
130
|
-
"method":"POST",
|
131
|
-
"requestUri":"/"
|
132
|
-
},
|
133
|
-
"input":{"shape":"CopyProductInput"},
|
134
|
-
"output":{"shape":"CopyProductOutput"},
|
135
|
-
"errors":[
|
136
|
-
{"shape":"ResourceNotFoundException"},
|
137
|
-
{"shape":"InvalidParametersException"}
|
138
|
-
]
|
139
|
-
},
|
140
|
-
"CreateConstraint":{
|
141
|
-
"name":"CreateConstraint",
|
142
|
-
"http":{
|
143
|
-
"method":"POST",
|
144
|
-
"requestUri":"/"
|
145
|
-
},
|
146
|
-
"input":{"shape":"CreateConstraintInput"},
|
147
|
-
"output":{"shape":"CreateConstraintOutput"},
|
148
|
-
"errors":[
|
149
|
-
{"shape":"ResourceNotFoundException"},
|
150
|
-
{"shape":"InvalidParametersException"},
|
151
|
-
{"shape":"LimitExceededException"},
|
152
|
-
{"shape":"DuplicateResourceException"}
|
153
|
-
]
|
154
|
-
},
|
155
|
-
"CreatePortfolio":{
|
156
|
-
"name":"CreatePortfolio",
|
157
|
-
"http":{
|
158
|
-
"method":"POST",
|
159
|
-
"requestUri":"/"
|
160
|
-
},
|
161
|
-
"input":{"shape":"CreatePortfolioInput"},
|
162
|
-
"output":{"shape":"CreatePortfolioOutput"},
|
163
|
-
"errors":[
|
164
|
-
{"shape":"InvalidParametersException"},
|
165
|
-
{"shape":"LimitExceededException"},
|
166
|
-
{"shape":"TagOptionNotMigratedException"}
|
167
|
-
]
|
168
|
-
},
|
169
|
-
"CreatePortfolioShare":{
|
170
|
-
"name":"CreatePortfolioShare",
|
171
|
-
"http":{
|
172
|
-
"method":"POST",
|
173
|
-
"requestUri":"/"
|
174
|
-
},
|
175
|
-
"input":{"shape":"CreatePortfolioShareInput"},
|
176
|
-
"output":{"shape":"CreatePortfolioShareOutput"},
|
177
|
-
"errors":[
|
178
|
-
{"shape":"ResourceNotFoundException"},
|
179
|
-
{"shape":"LimitExceededException"},
|
180
|
-
{"shape":"InvalidParametersException"},
|
181
|
-
{"shape":"OperationNotSupportedException"},
|
182
|
-
{"shape":"InvalidStateException"}
|
183
|
-
]
|
184
|
-
},
|
185
|
-
"CreateProduct":{
|
186
|
-
"name":"CreateProduct",
|
187
|
-
"http":{
|
188
|
-
"method":"POST",
|
189
|
-
"requestUri":"/"
|
190
|
-
},
|
191
|
-
"input":{"shape":"CreateProductInput"},
|
192
|
-
"output":{"shape":"CreateProductOutput"},
|
193
|
-
"errors":[
|
194
|
-
{"shape":"InvalidParametersException"},
|
195
|
-
{"shape":"LimitExceededException"},
|
196
|
-
{"shape":"TagOptionNotMigratedException"}
|
197
|
-
]
|
198
|
-
},
|
199
|
-
"CreateProvisionedProductPlan":{
|
200
|
-
"name":"CreateProvisionedProductPlan",
|
201
|
-
"http":{
|
202
|
-
"method":"POST",
|
203
|
-
"requestUri":"/"
|
204
|
-
},
|
205
|
-
"input":{"shape":"CreateProvisionedProductPlanInput"},
|
206
|
-
"output":{"shape":"CreateProvisionedProductPlanOutput"},
|
207
|
-
"errors":[
|
208
|
-
{"shape":"InvalidParametersException"},
|
209
|
-
{"shape":"ResourceNotFoundException"},
|
210
|
-
{"shape":"InvalidStateException"}
|
211
|
-
]
|
212
|
-
},
|
213
|
-
"CreateProvisioningArtifact":{
|
214
|
-
"name":"CreateProvisioningArtifact",
|
215
|
-
"http":{
|
216
|
-
"method":"POST",
|
217
|
-
"requestUri":"/"
|
218
|
-
},
|
219
|
-
"input":{"shape":"CreateProvisioningArtifactInput"},
|
220
|
-
"output":{"shape":"CreateProvisioningArtifactOutput"},
|
221
|
-
"errors":[
|
222
|
-
{"shape":"ResourceNotFoundException"},
|
223
|
-
{"shape":"InvalidParametersException"},
|
224
|
-
{"shape":"LimitExceededException"}
|
225
|
-
]
|
226
|
-
},
|
227
|
-
"CreateServiceAction":{
|
228
|
-
"name":"CreateServiceAction",
|
229
|
-
"http":{
|
230
|
-
"method":"POST",
|
231
|
-
"requestUri":"/"
|
232
|
-
},
|
233
|
-
"input":{"shape":"CreateServiceActionInput"},
|
234
|
-
"output":{"shape":"CreateServiceActionOutput"},
|
235
|
-
"errors":[
|
236
|
-
{"shape":"InvalidParametersException"},
|
237
|
-
{"shape":"LimitExceededException"}
|
238
|
-
]
|
239
|
-
},
|
240
|
-
"CreateTagOption":{
|
241
|
-
"name":"CreateTagOption",
|
242
|
-
"http":{
|
243
|
-
"method":"POST",
|
244
|
-
"requestUri":"/"
|
245
|
-
},
|
246
|
-
"input":{"shape":"CreateTagOptionInput"},
|
247
|
-
"output":{"shape":"CreateTagOptionOutput"},
|
248
|
-
"errors":[
|
249
|
-
{"shape":"TagOptionNotMigratedException"},
|
250
|
-
{"shape":"DuplicateResourceException"},
|
251
|
-
{"shape":"LimitExceededException"}
|
252
|
-
]
|
253
|
-
},
|
254
|
-
"DeleteConstraint":{
|
255
|
-
"name":"DeleteConstraint",
|
256
|
-
"http":{
|
257
|
-
"method":"POST",
|
258
|
-
"requestUri":"/"
|
259
|
-
},
|
260
|
-
"input":{"shape":"DeleteConstraintInput"},
|
261
|
-
"output":{"shape":"DeleteConstraintOutput"},
|
262
|
-
"errors":[
|
263
|
-
{"shape":"ResourceNotFoundException"},
|
264
|
-
{"shape":"InvalidParametersException"}
|
265
|
-
]
|
266
|
-
},
|
267
|
-
"DeletePortfolio":{
|
268
|
-
"name":"DeletePortfolio",
|
269
|
-
"http":{
|
270
|
-
"method":"POST",
|
271
|
-
"requestUri":"/"
|
272
|
-
},
|
273
|
-
"input":{"shape":"DeletePortfolioInput"},
|
274
|
-
"output":{"shape":"DeletePortfolioOutput"},
|
275
|
-
"errors":[
|
276
|
-
{"shape":"ResourceNotFoundException"},
|
277
|
-
{"shape":"InvalidParametersException"},
|
278
|
-
{"shape":"ResourceInUseException"},
|
279
|
-
{"shape":"TagOptionNotMigratedException"}
|
280
|
-
]
|
281
|
-
},
|
282
|
-
"DeletePortfolioShare":{
|
283
|
-
"name":"DeletePortfolioShare",
|
284
|
-
"http":{
|
285
|
-
"method":"POST",
|
286
|
-
"requestUri":"/"
|
287
|
-
},
|
288
|
-
"input":{"shape":"DeletePortfolioShareInput"},
|
289
|
-
"output":{"shape":"DeletePortfolioShareOutput"},
|
290
|
-
"errors":[
|
291
|
-
{"shape":"ResourceNotFoundException"},
|
292
|
-
{"shape":"InvalidParametersException"},
|
293
|
-
{"shape":"OperationNotSupportedException"},
|
294
|
-
{"shape":"InvalidStateException"}
|
295
|
-
]
|
296
|
-
},
|
297
|
-
"DeleteProduct":{
|
298
|
-
"name":"DeleteProduct",
|
299
|
-
"http":{
|
300
|
-
"method":"POST",
|
301
|
-
"requestUri":"/"
|
302
|
-
},
|
303
|
-
"input":{"shape":"DeleteProductInput"},
|
304
|
-
"output":{"shape":"DeleteProductOutput"},
|
305
|
-
"errors":[
|
306
|
-
{"shape":"ResourceNotFoundException"},
|
307
|
-
{"shape":"ResourceInUseException"},
|
308
|
-
{"shape":"InvalidParametersException"},
|
309
|
-
{"shape":"TagOptionNotMigratedException"}
|
310
|
-
]
|
311
|
-
},
|
312
|
-
"DeleteProvisionedProductPlan":{
|
313
|
-
"name":"DeleteProvisionedProductPlan",
|
314
|
-
"http":{
|
315
|
-
"method":"POST",
|
316
|
-
"requestUri":"/"
|
317
|
-
},
|
318
|
-
"input":{"shape":"DeleteProvisionedProductPlanInput"},
|
319
|
-
"output":{"shape":"DeleteProvisionedProductPlanOutput"},
|
320
|
-
"errors":[
|
321
|
-
{"shape":"InvalidParametersException"},
|
322
|
-
{"shape":"ResourceNotFoundException"}
|
323
|
-
]
|
324
|
-
},
|
325
|
-
"DeleteProvisioningArtifact":{
|
326
|
-
"name":"DeleteProvisioningArtifact",
|
327
|
-
"http":{
|
328
|
-
"method":"POST",
|
329
|
-
"requestUri":"/"
|
330
|
-
},
|
331
|
-
"input":{"shape":"DeleteProvisioningArtifactInput"},
|
332
|
-
"output":{"shape":"DeleteProvisioningArtifactOutput"},
|
333
|
-
"errors":[
|
334
|
-
{"shape":"ResourceNotFoundException"},
|
335
|
-
{"shape":"ResourceInUseException"},
|
336
|
-
{"shape":"InvalidParametersException"}
|
337
|
-
]
|
338
|
-
},
|
339
|
-
"DeleteServiceAction":{
|
340
|
-
"name":"DeleteServiceAction",
|
341
|
-
"http":{
|
342
|
-
"method":"POST",
|
343
|
-
"requestUri":"/"
|
344
|
-
},
|
345
|
-
"input":{"shape":"DeleteServiceActionInput"},
|
346
|
-
"output":{"shape":"DeleteServiceActionOutput"},
|
347
|
-
"errors":[
|
348
|
-
{"shape":"ResourceNotFoundException"},
|
349
|
-
{"shape":"ResourceInUseException"}
|
350
|
-
]
|
351
|
-
},
|
352
|
-
"DeleteTagOption":{
|
353
|
-
"name":"DeleteTagOption",
|
354
|
-
"http":{
|
355
|
-
"method":"POST",
|
356
|
-
"requestUri":"/"
|
357
|
-
},
|
358
|
-
"input":{"shape":"DeleteTagOptionInput"},
|
359
|
-
"output":{"shape":"DeleteTagOptionOutput"},
|
360
|
-
"errors":[
|
361
|
-
{"shape":"TagOptionNotMigratedException"},
|
362
|
-
{"shape":"ResourceInUseException"},
|
363
|
-
{"shape":"ResourceNotFoundException"}
|
364
|
-
]
|
365
|
-
},
|
366
|
-
"DescribeConstraint":{
|
367
|
-
"name":"DescribeConstraint",
|
368
|
-
"http":{
|
369
|
-
"method":"POST",
|
370
|
-
"requestUri":"/"
|
371
|
-
},
|
372
|
-
"input":{"shape":"DescribeConstraintInput"},
|
373
|
-
"output":{"shape":"DescribeConstraintOutput"},
|
374
|
-
"errors":[
|
375
|
-
{"shape":"ResourceNotFoundException"}
|
376
|
-
]
|
377
|
-
},
|
378
|
-
"DescribeCopyProductStatus":{
|
379
|
-
"name":"DescribeCopyProductStatus",
|
380
|
-
"http":{
|
381
|
-
"method":"POST",
|
382
|
-
"requestUri":"/"
|
383
|
-
},
|
384
|
-
"input":{"shape":"DescribeCopyProductStatusInput"},
|
385
|
-
"output":{"shape":"DescribeCopyProductStatusOutput"},
|
386
|
-
"errors":[
|
387
|
-
{"shape":"ResourceNotFoundException"}
|
388
|
-
]
|
389
|
-
},
|
390
|
-
"DescribePortfolio":{
|
391
|
-
"name":"DescribePortfolio",
|
392
|
-
"http":{
|
393
|
-
"method":"POST",
|
394
|
-
"requestUri":"/"
|
395
|
-
},
|
396
|
-
"input":{"shape":"DescribePortfolioInput"},
|
397
|
-
"output":{"shape":"DescribePortfolioOutput"},
|
398
|
-
"errors":[
|
399
|
-
{"shape":"ResourceNotFoundException"}
|
400
|
-
]
|
401
|
-
},
|
402
|
-
"DescribePortfolioShareStatus":{
|
403
|
-
"name":"DescribePortfolioShareStatus",
|
404
|
-
"http":{
|
405
|
-
"method":"POST",
|
406
|
-
"requestUri":"/"
|
407
|
-
},
|
408
|
-
"input":{"shape":"DescribePortfolioShareStatusInput"},
|
409
|
-
"output":{"shape":"DescribePortfolioShareStatusOutput"},
|
410
|
-
"errors":[
|
411
|
-
{"shape":"ResourceNotFoundException"},
|
412
|
-
{"shape":"InvalidParametersException"},
|
413
|
-
{"shape":"OperationNotSupportedException"}
|
414
|
-
]
|
415
|
-
},
|
416
|
-
"DescribeProduct":{
|
417
|
-
"name":"DescribeProduct",
|
418
|
-
"http":{
|
419
|
-
"method":"POST",
|
420
|
-
"requestUri":"/"
|
421
|
-
},
|
422
|
-
"input":{"shape":"DescribeProductInput"},
|
423
|
-
"output":{"shape":"DescribeProductOutput"},
|
424
|
-
"errors":[
|
425
|
-
{"shape":"ResourceNotFoundException"},
|
426
|
-
{"shape":"InvalidParametersException"}
|
427
|
-
]
|
428
|
-
},
|
429
|
-
"DescribeProductAsAdmin":{
|
430
|
-
"name":"DescribeProductAsAdmin",
|
431
|
-
"http":{
|
432
|
-
"method":"POST",
|
433
|
-
"requestUri":"/"
|
434
|
-
},
|
435
|
-
"input":{"shape":"DescribeProductAsAdminInput"},
|
436
|
-
"output":{"shape":"DescribeProductAsAdminOutput"},
|
437
|
-
"errors":[
|
438
|
-
{"shape":"ResourceNotFoundException"}
|
439
|
-
]
|
440
|
-
},
|
441
|
-
"DescribeProductView":{
|
442
|
-
"name":"DescribeProductView",
|
443
|
-
"http":{
|
444
|
-
"method":"POST",
|
445
|
-
"requestUri":"/"
|
446
|
-
},
|
447
|
-
"input":{"shape":"DescribeProductViewInput"},
|
448
|
-
"output":{"shape":"DescribeProductViewOutput"},
|
449
|
-
"errors":[
|
450
|
-
{"shape":"ResourceNotFoundException"},
|
451
|
-
{"shape":"InvalidParametersException"}
|
452
|
-
]
|
453
|
-
},
|
454
|
-
"DescribeProvisionedProduct":{
|
455
|
-
"name":"DescribeProvisionedProduct",
|
456
|
-
"http":{
|
457
|
-
"method":"POST",
|
458
|
-
"requestUri":"/"
|
459
|
-
},
|
460
|
-
"input":{"shape":"DescribeProvisionedProductInput"},
|
461
|
-
"output":{"shape":"DescribeProvisionedProductOutput"},
|
462
|
-
"errors":[
|
463
|
-
{"shape":"ResourceNotFoundException"}
|
464
|
-
]
|
465
|
-
},
|
466
|
-
"DescribeProvisionedProductPlan":{
|
467
|
-
"name":"DescribeProvisionedProductPlan",
|
468
|
-
"http":{
|
469
|
-
"method":"POST",
|
470
|
-
"requestUri":"/"
|
471
|
-
},
|
472
|
-
"input":{"shape":"DescribeProvisionedProductPlanInput"},
|
473
|
-
"output":{"shape":"DescribeProvisionedProductPlanOutput"},
|
474
|
-
"errors":[
|
475
|
-
{"shape":"ResourceNotFoundException"},
|
476
|
-
{"shape":"InvalidParametersException"}
|
477
|
-
]
|
478
|
-
},
|
479
|
-
"DescribeProvisioningArtifact":{
|
480
|
-
"name":"DescribeProvisioningArtifact",
|
481
|
-
"http":{
|
482
|
-
"method":"POST",
|
483
|
-
"requestUri":"/"
|
484
|
-
},
|
485
|
-
"input":{"shape":"DescribeProvisioningArtifactInput"},
|
486
|
-
"output":{"shape":"DescribeProvisioningArtifactOutput"},
|
487
|
-
"errors":[
|
488
|
-
{"shape":"ResourceNotFoundException"}
|
489
|
-
]
|
490
|
-
},
|
491
|
-
"DescribeProvisioningParameters":{
|
492
|
-
"name":"DescribeProvisioningParameters",
|
493
|
-
"http":{
|
494
|
-
"method":"POST",
|
495
|
-
"requestUri":"/"
|
496
|
-
},
|
497
|
-
"input":{"shape":"DescribeProvisioningParametersInput"},
|
498
|
-
"output":{"shape":"DescribeProvisioningParametersOutput"},
|
499
|
-
"errors":[
|
500
|
-
{"shape":"InvalidParametersException"},
|
501
|
-
{"shape":"ResourceNotFoundException"}
|
502
|
-
]
|
503
|
-
},
|
504
|
-
"DescribeRecord":{
|
505
|
-
"name":"DescribeRecord",
|
506
|
-
"http":{
|
507
|
-
"method":"POST",
|
508
|
-
"requestUri":"/"
|
509
|
-
},
|
510
|
-
"input":{"shape":"DescribeRecordInput"},
|
511
|
-
"output":{"shape":"DescribeRecordOutput"},
|
512
|
-
"errors":[
|
513
|
-
{"shape":"ResourceNotFoundException"}
|
514
|
-
]
|
515
|
-
},
|
516
|
-
"DescribeServiceAction":{
|
517
|
-
"name":"DescribeServiceAction",
|
518
|
-
"http":{
|
519
|
-
"method":"POST",
|
520
|
-
"requestUri":"/"
|
521
|
-
},
|
522
|
-
"input":{"shape":"DescribeServiceActionInput"},
|
523
|
-
"output":{"shape":"DescribeServiceActionOutput"},
|
524
|
-
"errors":[
|
525
|
-
{"shape":"ResourceNotFoundException"}
|
526
|
-
]
|
527
|
-
},
|
528
|
-
"DescribeServiceActionExecutionParameters":{
|
529
|
-
"name":"DescribeServiceActionExecutionParameters",
|
530
|
-
"http":{
|
531
|
-
"method":"POST",
|
532
|
-
"requestUri":"/"
|
533
|
-
},
|
534
|
-
"input":{"shape":"DescribeServiceActionExecutionParametersInput"},
|
535
|
-
"output":{"shape":"DescribeServiceActionExecutionParametersOutput"},
|
536
|
-
"errors":[
|
537
|
-
{"shape":"InvalidParametersException"},
|
538
|
-
{"shape":"ResourceNotFoundException"}
|
539
|
-
]
|
540
|
-
},
|
541
|
-
"DescribeTagOption":{
|
542
|
-
"name":"DescribeTagOption",
|
543
|
-
"http":{
|
544
|
-
"method":"POST",
|
545
|
-
"requestUri":"/"
|
546
|
-
},
|
547
|
-
"input":{"shape":"DescribeTagOptionInput"},
|
548
|
-
"output":{"shape":"DescribeTagOptionOutput"},
|
549
|
-
"errors":[
|
550
|
-
{"shape":"TagOptionNotMigratedException"},
|
551
|
-
{"shape":"ResourceNotFoundException"}
|
552
|
-
]
|
553
|
-
},
|
554
|
-
"DisableAWSOrganizationsAccess":{
|
555
|
-
"name":"DisableAWSOrganizationsAccess",
|
556
|
-
"http":{
|
557
|
-
"method":"POST",
|
558
|
-
"requestUri":"/"
|
559
|
-
},
|
560
|
-
"input":{"shape":"DisableAWSOrganizationsAccessInput"},
|
561
|
-
"output":{"shape":"DisableAWSOrganizationsAccessOutput"},
|
562
|
-
"errors":[
|
563
|
-
{"shape":"ResourceNotFoundException"},
|
564
|
-
{"shape":"InvalidStateException"},
|
565
|
-
{"shape":"OperationNotSupportedException"}
|
566
|
-
]
|
567
|
-
},
|
568
|
-
"DisassociateBudgetFromResource":{
|
569
|
-
"name":"DisassociateBudgetFromResource",
|
570
|
-
"http":{
|
571
|
-
"method":"POST",
|
572
|
-
"requestUri":"/"
|
573
|
-
},
|
574
|
-
"input":{"shape":"DisassociateBudgetFromResourceInput"},
|
575
|
-
"output":{"shape":"DisassociateBudgetFromResourceOutput"},
|
576
|
-
"errors":[
|
577
|
-
{"shape":"ResourceNotFoundException"}
|
578
|
-
]
|
579
|
-
},
|
580
|
-
"DisassociatePrincipalFromPortfolio":{
|
581
|
-
"name":"DisassociatePrincipalFromPortfolio",
|
582
|
-
"http":{
|
583
|
-
"method":"POST",
|
584
|
-
"requestUri":"/"
|
585
|
-
},
|
586
|
-
"input":{"shape":"DisassociatePrincipalFromPortfolioInput"},
|
587
|
-
"output":{"shape":"DisassociatePrincipalFromPortfolioOutput"},
|
588
|
-
"errors":[
|
589
|
-
{"shape":"InvalidParametersException"},
|
590
|
-
{"shape":"ResourceNotFoundException"}
|
591
|
-
]
|
592
|
-
},
|
593
|
-
"DisassociateProductFromPortfolio":{
|
594
|
-
"name":"DisassociateProductFromPortfolio",
|
595
|
-
"http":{
|
596
|
-
"method":"POST",
|
597
|
-
"requestUri":"/"
|
598
|
-
},
|
599
|
-
"input":{"shape":"DisassociateProductFromPortfolioInput"},
|
600
|
-
"output":{"shape":"DisassociateProductFromPortfolioOutput"},
|
601
|
-
"errors":[
|
602
|
-
{"shape":"ResourceNotFoundException"},
|
603
|
-
{"shape":"ResourceInUseException"},
|
604
|
-
{"shape":"InvalidParametersException"}
|
605
|
-
]
|
606
|
-
},
|
607
|
-
"DisassociateServiceActionFromProvisioningArtifact":{
|
608
|
-
"name":"DisassociateServiceActionFromProvisioningArtifact",
|
609
|
-
"http":{
|
610
|
-
"method":"POST",
|
611
|
-
"requestUri":"/"
|
612
|
-
},
|
613
|
-
"input":{"shape":"DisassociateServiceActionFromProvisioningArtifactInput"},
|
614
|
-
"output":{"shape":"DisassociateServiceActionFromProvisioningArtifactOutput"},
|
615
|
-
"errors":[
|
616
|
-
{"shape":"ResourceNotFoundException"}
|
617
|
-
]
|
618
|
-
},
|
619
|
-
"DisassociateTagOptionFromResource":{
|
620
|
-
"name":"DisassociateTagOptionFromResource",
|
621
|
-
"http":{
|
622
|
-
"method":"POST",
|
623
|
-
"requestUri":"/"
|
624
|
-
},
|
625
|
-
"input":{"shape":"DisassociateTagOptionFromResourceInput"},
|
626
|
-
"output":{"shape":"DisassociateTagOptionFromResourceOutput"},
|
627
|
-
"errors":[
|
628
|
-
{"shape":"TagOptionNotMigratedException"},
|
629
|
-
{"shape":"ResourceNotFoundException"}
|
630
|
-
]
|
631
|
-
},
|
632
|
-
"EnableAWSOrganizationsAccess":{
|
633
|
-
"name":"EnableAWSOrganizationsAccess",
|
634
|
-
"http":{
|
635
|
-
"method":"POST",
|
636
|
-
"requestUri":"/"
|
637
|
-
},
|
638
|
-
"input":{"shape":"EnableAWSOrganizationsAccessInput"},
|
639
|
-
"output":{"shape":"EnableAWSOrganizationsAccessOutput"},
|
640
|
-
"errors":[
|
641
|
-
{"shape":"ResourceNotFoundException"},
|
642
|
-
{"shape":"InvalidStateException"},
|
643
|
-
{"shape":"OperationNotSupportedException"}
|
644
|
-
]
|
645
|
-
},
|
646
|
-
"ExecuteProvisionedProductPlan":{
|
647
|
-
"name":"ExecuteProvisionedProductPlan",
|
648
|
-
"http":{
|
649
|
-
"method":"POST",
|
650
|
-
"requestUri":"/"
|
651
|
-
},
|
652
|
-
"input":{"shape":"ExecuteProvisionedProductPlanInput"},
|
653
|
-
"output":{"shape":"ExecuteProvisionedProductPlanOutput"},
|
654
|
-
"errors":[
|
655
|
-
{"shape":"InvalidParametersException"},
|
656
|
-
{"shape":"ResourceNotFoundException"},
|
657
|
-
{"shape":"InvalidStateException"}
|
658
|
-
]
|
659
|
-
},
|
660
|
-
"ExecuteProvisionedProductServiceAction":{
|
661
|
-
"name":"ExecuteProvisionedProductServiceAction",
|
662
|
-
"http":{
|
663
|
-
"method":"POST",
|
664
|
-
"requestUri":"/"
|
665
|
-
},
|
666
|
-
"input":{"shape":"ExecuteProvisionedProductServiceActionInput"},
|
667
|
-
"output":{"shape":"ExecuteProvisionedProductServiceActionOutput"},
|
668
|
-
"errors":[
|
669
|
-
{"shape":"InvalidParametersException"},
|
670
|
-
{"shape":"ResourceNotFoundException"},
|
671
|
-
{"shape":"InvalidStateException"}
|
672
|
-
]
|
673
|
-
},
|
674
|
-
"GetAWSOrganizationsAccessStatus":{
|
675
|
-
"name":"GetAWSOrganizationsAccessStatus",
|
676
|
-
"http":{
|
677
|
-
"method":"POST",
|
678
|
-
"requestUri":"/"
|
679
|
-
},
|
680
|
-
"input":{"shape":"GetAWSOrganizationsAccessStatusInput"},
|
681
|
-
"output":{"shape":"GetAWSOrganizationsAccessStatusOutput"},
|
682
|
-
"errors":[
|
683
|
-
{"shape":"ResourceNotFoundException"},
|
684
|
-
{"shape":"OperationNotSupportedException"}
|
685
|
-
]
|
686
|
-
},
|
687
|
-
"ListAcceptedPortfolioShares":{
|
688
|
-
"name":"ListAcceptedPortfolioShares",
|
689
|
-
"http":{
|
690
|
-
"method":"POST",
|
691
|
-
"requestUri":"/"
|
692
|
-
},
|
693
|
-
"input":{"shape":"ListAcceptedPortfolioSharesInput"},
|
694
|
-
"output":{"shape":"ListAcceptedPortfolioSharesOutput"},
|
695
|
-
"errors":[
|
696
|
-
{"shape":"InvalidParametersException"},
|
697
|
-
{"shape":"OperationNotSupportedException"}
|
698
|
-
]
|
699
|
-
},
|
700
|
-
"ListBudgetsForResource":{
|
701
|
-
"name":"ListBudgetsForResource",
|
702
|
-
"http":{
|
703
|
-
"method":"POST",
|
704
|
-
"requestUri":"/"
|
705
|
-
},
|
706
|
-
"input":{"shape":"ListBudgetsForResourceInput"},
|
707
|
-
"output":{"shape":"ListBudgetsForResourceOutput"},
|
708
|
-
"errors":[
|
709
|
-
{"shape":"ResourceNotFoundException"},
|
710
|
-
{"shape":"InvalidParametersException"}
|
711
|
-
]
|
712
|
-
},
|
713
|
-
"ListConstraintsForPortfolio":{
|
714
|
-
"name":"ListConstraintsForPortfolio",
|
715
|
-
"http":{
|
716
|
-
"method":"POST",
|
717
|
-
"requestUri":"/"
|
718
|
-
},
|
719
|
-
"input":{"shape":"ListConstraintsForPortfolioInput"},
|
720
|
-
"output":{"shape":"ListConstraintsForPortfolioOutput"},
|
721
|
-
"errors":[
|
722
|
-
{"shape":"ResourceNotFoundException"},
|
723
|
-
{"shape":"InvalidParametersException"}
|
724
|
-
]
|
725
|
-
},
|
726
|
-
"ListLaunchPaths":{
|
727
|
-
"name":"ListLaunchPaths",
|
728
|
-
"http":{
|
729
|
-
"method":"POST",
|
730
|
-
"requestUri":"/"
|
731
|
-
},
|
732
|
-
"input":{"shape":"ListLaunchPathsInput"},
|
733
|
-
"output":{"shape":"ListLaunchPathsOutput"},
|
734
|
-
"errors":[
|
735
|
-
{"shape":"InvalidParametersException"},
|
736
|
-
{"shape":"ResourceNotFoundException"}
|
737
|
-
]
|
738
|
-
},
|
739
|
-
"ListOrganizationPortfolioAccess":{
|
740
|
-
"name":"ListOrganizationPortfolioAccess",
|
741
|
-
"http":{
|
742
|
-
"method":"POST",
|
743
|
-
"requestUri":"/"
|
744
|
-
},
|
745
|
-
"input":{"shape":"ListOrganizationPortfolioAccessInput"},
|
746
|
-
"output":{"shape":"ListOrganizationPortfolioAccessOutput"},
|
747
|
-
"errors":[
|
748
|
-
{"shape":"ResourceNotFoundException"},
|
749
|
-
{"shape":"InvalidParametersException"},
|
750
|
-
{"shape":"OperationNotSupportedException"}
|
751
|
-
]
|
752
|
-
},
|
753
|
-
"ListPortfolioAccess":{
|
754
|
-
"name":"ListPortfolioAccess",
|
755
|
-
"http":{
|
756
|
-
"method":"POST",
|
757
|
-
"requestUri":"/"
|
758
|
-
},
|
759
|
-
"input":{"shape":"ListPortfolioAccessInput"},
|
760
|
-
"output":{"shape":"ListPortfolioAccessOutput"},
|
761
|
-
"errors":[
|
762
|
-
{"shape":"ResourceNotFoundException"}
|
763
|
-
]
|
764
|
-
},
|
765
|
-
"ListPortfolios":{
|
766
|
-
"name":"ListPortfolios",
|
767
|
-
"http":{
|
768
|
-
"method":"POST",
|
769
|
-
"requestUri":"/"
|
770
|
-
},
|
771
|
-
"input":{"shape":"ListPortfoliosInput"},
|
772
|
-
"output":{"shape":"ListPortfoliosOutput"},
|
773
|
-
"errors":[
|
774
|
-
{"shape":"InvalidParametersException"}
|
775
|
-
]
|
776
|
-
},
|
777
|
-
"ListPortfoliosForProduct":{
|
778
|
-
"name":"ListPortfoliosForProduct",
|
779
|
-
"http":{
|
780
|
-
"method":"POST",
|
781
|
-
"requestUri":"/"
|
782
|
-
},
|
783
|
-
"input":{"shape":"ListPortfoliosForProductInput"},
|
784
|
-
"output":{"shape":"ListPortfoliosForProductOutput"},
|
785
|
-
"errors":[
|
786
|
-
{"shape":"InvalidParametersException"},
|
787
|
-
{"shape":"ResourceNotFoundException"}
|
788
|
-
]
|
789
|
-
},
|
790
|
-
"ListPrincipalsForPortfolio":{
|
791
|
-
"name":"ListPrincipalsForPortfolio",
|
792
|
-
"http":{
|
793
|
-
"method":"POST",
|
794
|
-
"requestUri":"/"
|
795
|
-
},
|
796
|
-
"input":{"shape":"ListPrincipalsForPortfolioInput"},
|
797
|
-
"output":{"shape":"ListPrincipalsForPortfolioOutput"},
|
798
|
-
"errors":[
|
799
|
-
{"shape":"ResourceNotFoundException"},
|
800
|
-
{"shape":"InvalidParametersException"}
|
801
|
-
]
|
802
|
-
},
|
803
|
-
"ListProvisionedProductPlans":{
|
804
|
-
"name":"ListProvisionedProductPlans",
|
805
|
-
"http":{
|
806
|
-
"method":"POST",
|
807
|
-
"requestUri":"/"
|
808
|
-
},
|
809
|
-
"input":{"shape":"ListProvisionedProductPlansInput"},
|
810
|
-
"output":{"shape":"ListProvisionedProductPlansOutput"},
|
811
|
-
"errors":[
|
812
|
-
{"shape":"ResourceNotFoundException"},
|
813
|
-
{"shape":"InvalidParametersException"}
|
814
|
-
]
|
815
|
-
},
|
816
|
-
"ListProvisioningArtifacts":{
|
817
|
-
"name":"ListProvisioningArtifacts",
|
818
|
-
"http":{
|
819
|
-
"method":"POST",
|
820
|
-
"requestUri":"/"
|
821
|
-
},
|
822
|
-
"input":{"shape":"ListProvisioningArtifactsInput"},
|
823
|
-
"output":{"shape":"ListProvisioningArtifactsOutput"},
|
824
|
-
"errors":[
|
825
|
-
{"shape":"ResourceNotFoundException"},
|
826
|
-
{"shape":"InvalidParametersException"}
|
827
|
-
]
|
828
|
-
},
|
829
|
-
"ListProvisioningArtifactsForServiceAction":{
|
830
|
-
"name":"ListProvisioningArtifactsForServiceAction",
|
831
|
-
"http":{
|
832
|
-
"method":"POST",
|
833
|
-
"requestUri":"/"
|
834
|
-
},
|
835
|
-
"input":{"shape":"ListProvisioningArtifactsForServiceActionInput"},
|
836
|
-
"output":{"shape":"ListProvisioningArtifactsForServiceActionOutput"},
|
837
|
-
"errors":[
|
838
|
-
{"shape":"ResourceNotFoundException"},
|
839
|
-
{"shape":"InvalidParametersException"}
|
840
|
-
]
|
841
|
-
},
|
842
|
-
"ListRecordHistory":{
|
843
|
-
"name":"ListRecordHistory",
|
844
|
-
"http":{
|
845
|
-
"method":"POST",
|
846
|
-
"requestUri":"/"
|
847
|
-
},
|
848
|
-
"input":{"shape":"ListRecordHistoryInput"},
|
849
|
-
"output":{"shape":"ListRecordHistoryOutput"},
|
850
|
-
"errors":[
|
851
|
-
{"shape":"InvalidParametersException"}
|
852
|
-
]
|
853
|
-
},
|
854
|
-
"ListResourcesForTagOption":{
|
855
|
-
"name":"ListResourcesForTagOption",
|
856
|
-
"http":{
|
857
|
-
"method":"POST",
|
858
|
-
"requestUri":"/"
|
859
|
-
},
|
860
|
-
"input":{"shape":"ListResourcesForTagOptionInput"},
|
861
|
-
"output":{"shape":"ListResourcesForTagOptionOutput"},
|
862
|
-
"errors":[
|
863
|
-
{"shape":"TagOptionNotMigratedException"},
|
864
|
-
{"shape":"ResourceNotFoundException"},
|
865
|
-
{"shape":"InvalidParametersException"}
|
866
|
-
]
|
867
|
-
},
|
868
|
-
"ListServiceActions":{
|
869
|
-
"name":"ListServiceActions",
|
870
|
-
"http":{
|
871
|
-
"method":"POST",
|
872
|
-
"requestUri":"/"
|
873
|
-
},
|
874
|
-
"input":{"shape":"ListServiceActionsInput"},
|
875
|
-
"output":{"shape":"ListServiceActionsOutput"},
|
876
|
-
"errors":[
|
877
|
-
{"shape":"InvalidParametersException"}
|
878
|
-
]
|
879
|
-
},
|
880
|
-
"ListServiceActionsForProvisioningArtifact":{
|
881
|
-
"name":"ListServiceActionsForProvisioningArtifact",
|
882
|
-
"http":{
|
883
|
-
"method":"POST",
|
884
|
-
"requestUri":"/"
|
885
|
-
},
|
886
|
-
"input":{"shape":"ListServiceActionsForProvisioningArtifactInput"},
|
887
|
-
"output":{"shape":"ListServiceActionsForProvisioningArtifactOutput"},
|
888
|
-
"errors":[
|
889
|
-
{"shape":"ResourceNotFoundException"},
|
890
|
-
{"shape":"InvalidParametersException"}
|
891
|
-
]
|
892
|
-
},
|
893
|
-
"ListStackInstancesForProvisionedProduct":{
|
894
|
-
"name":"ListStackInstancesForProvisionedProduct",
|
895
|
-
"http":{
|
896
|
-
"method":"POST",
|
897
|
-
"requestUri":"/"
|
898
|
-
},
|
899
|
-
"input":{"shape":"ListStackInstancesForProvisionedProductInput"},
|
900
|
-
"output":{"shape":"ListStackInstancesForProvisionedProductOutput"},
|
901
|
-
"errors":[
|
902
|
-
{"shape":"InvalidParametersException"},
|
903
|
-
{"shape":"ResourceNotFoundException"}
|
904
|
-
]
|
905
|
-
},
|
906
|
-
"ListTagOptions":{
|
907
|
-
"name":"ListTagOptions",
|
908
|
-
"http":{
|
909
|
-
"method":"POST",
|
910
|
-
"requestUri":"/"
|
911
|
-
},
|
912
|
-
"input":{"shape":"ListTagOptionsInput"},
|
913
|
-
"output":{"shape":"ListTagOptionsOutput"},
|
914
|
-
"errors":[
|
915
|
-
{"shape":"TagOptionNotMigratedException"},
|
916
|
-
{"shape":"InvalidParametersException"}
|
917
|
-
]
|
918
|
-
},
|
919
|
-
"ProvisionProduct":{
|
920
|
-
"name":"ProvisionProduct",
|
921
|
-
"http":{
|
922
|
-
"method":"POST",
|
923
|
-
"requestUri":"/"
|
924
|
-
},
|
925
|
-
"input":{"shape":"ProvisionProductInput"},
|
926
|
-
"output":{"shape":"ProvisionProductOutput"},
|
927
|
-
"errors":[
|
928
|
-
{"shape":"InvalidParametersException"},
|
929
|
-
{"shape":"ResourceNotFoundException"},
|
930
|
-
{"shape":"DuplicateResourceException"}
|
931
|
-
]
|
932
|
-
},
|
933
|
-
"RejectPortfolioShare":{
|
934
|
-
"name":"RejectPortfolioShare",
|
935
|
-
"http":{
|
936
|
-
"method":"POST",
|
937
|
-
"requestUri":"/"
|
938
|
-
},
|
939
|
-
"input":{"shape":"RejectPortfolioShareInput"},
|
940
|
-
"output":{"shape":"RejectPortfolioShareOutput"},
|
941
|
-
"errors":[
|
942
|
-
{"shape":"ResourceNotFoundException"}
|
943
|
-
]
|
944
|
-
},
|
945
|
-
"ScanProvisionedProducts":{
|
946
|
-
"name":"ScanProvisionedProducts",
|
947
|
-
"http":{
|
948
|
-
"method":"POST",
|
949
|
-
"requestUri":"/"
|
950
|
-
},
|
951
|
-
"input":{"shape":"ScanProvisionedProductsInput"},
|
952
|
-
"output":{"shape":"ScanProvisionedProductsOutput"},
|
953
|
-
"errors":[
|
954
|
-
{"shape":"InvalidParametersException"}
|
955
|
-
]
|
956
|
-
},
|
957
|
-
"SearchProducts":{
|
958
|
-
"name":"SearchProducts",
|
959
|
-
"http":{
|
960
|
-
"method":"POST",
|
961
|
-
"requestUri":"/"
|
962
|
-
},
|
963
|
-
"input":{"shape":"SearchProductsInput"},
|
964
|
-
"output":{"shape":"SearchProductsOutput"},
|
965
|
-
"errors":[
|
966
|
-
{"shape":"InvalidParametersException"}
|
967
|
-
]
|
968
|
-
},
|
969
|
-
"SearchProductsAsAdmin":{
|
970
|
-
"name":"SearchProductsAsAdmin",
|
971
|
-
"http":{
|
972
|
-
"method":"POST",
|
973
|
-
"requestUri":"/"
|
974
|
-
},
|
975
|
-
"input":{"shape":"SearchProductsAsAdminInput"},
|
976
|
-
"output":{"shape":"SearchProductsAsAdminOutput"},
|
977
|
-
"errors":[
|
978
|
-
{"shape":"ResourceNotFoundException"},
|
979
|
-
{"shape":"InvalidParametersException"}
|
980
|
-
]
|
981
|
-
},
|
982
|
-
"SearchProvisionedProducts":{
|
983
|
-
"name":"SearchProvisionedProducts",
|
984
|
-
"http":{
|
985
|
-
"method":"POST",
|
986
|
-
"requestUri":"/"
|
987
|
-
},
|
988
|
-
"input":{"shape":"SearchProvisionedProductsInput"},
|
989
|
-
"output":{"shape":"SearchProvisionedProductsOutput"},
|
990
|
-
"errors":[
|
991
|
-
{"shape":"InvalidParametersException"}
|
992
|
-
]
|
993
|
-
},
|
994
|
-
"TerminateProvisionedProduct":{
|
995
|
-
"name":"TerminateProvisionedProduct",
|
996
|
-
"http":{
|
997
|
-
"method":"POST",
|
998
|
-
"requestUri":"/"
|
999
|
-
},
|
1000
|
-
"input":{"shape":"TerminateProvisionedProductInput"},
|
1001
|
-
"output":{"shape":"TerminateProvisionedProductOutput"},
|
1002
|
-
"errors":[
|
1003
|
-
{"shape":"ResourceNotFoundException"}
|
1004
|
-
]
|
1005
|
-
},
|
1006
|
-
"UpdateConstraint":{
|
1007
|
-
"name":"UpdateConstraint",
|
1008
|
-
"http":{
|
1009
|
-
"method":"POST",
|
1010
|
-
"requestUri":"/"
|
1011
|
-
},
|
1012
|
-
"input":{"shape":"UpdateConstraintInput"},
|
1013
|
-
"output":{"shape":"UpdateConstraintOutput"},
|
1014
|
-
"errors":[
|
1015
|
-
{"shape":"ResourceNotFoundException"},
|
1016
|
-
{"shape":"InvalidParametersException"}
|
1017
|
-
]
|
1018
|
-
},
|
1019
|
-
"UpdatePortfolio":{
|
1020
|
-
"name":"UpdatePortfolio",
|
1021
|
-
"http":{
|
1022
|
-
"method":"POST",
|
1023
|
-
"requestUri":"/"
|
1024
|
-
},
|
1025
|
-
"input":{"shape":"UpdatePortfolioInput"},
|
1026
|
-
"output":{"shape":"UpdatePortfolioOutput"},
|
1027
|
-
"errors":[
|
1028
|
-
{"shape":"InvalidParametersException"},
|
1029
|
-
{"shape":"ResourceNotFoundException"},
|
1030
|
-
{"shape":"LimitExceededException"},
|
1031
|
-
{"shape":"TagOptionNotMigratedException"}
|
1032
|
-
]
|
1033
|
-
},
|
1034
|
-
"UpdateProduct":{
|
1035
|
-
"name":"UpdateProduct",
|
1036
|
-
"http":{
|
1037
|
-
"method":"POST",
|
1038
|
-
"requestUri":"/"
|
1039
|
-
},
|
1040
|
-
"input":{"shape":"UpdateProductInput"},
|
1041
|
-
"output":{"shape":"UpdateProductOutput"},
|
1042
|
-
"errors":[
|
1043
|
-
{"shape":"ResourceNotFoundException"},
|
1044
|
-
{"shape":"InvalidParametersException"},
|
1045
|
-
{"shape":"TagOptionNotMigratedException"}
|
1046
|
-
]
|
1047
|
-
},
|
1048
|
-
"UpdateProvisionedProduct":{
|
1049
|
-
"name":"UpdateProvisionedProduct",
|
1050
|
-
"http":{
|
1051
|
-
"method":"POST",
|
1052
|
-
"requestUri":"/"
|
1053
|
-
},
|
1054
|
-
"input":{"shape":"UpdateProvisionedProductInput"},
|
1055
|
-
"output":{"shape":"UpdateProvisionedProductOutput"},
|
1056
|
-
"errors":[
|
1057
|
-
{"shape":"InvalidParametersException"},
|
1058
|
-
{"shape":"ResourceNotFoundException"}
|
1059
|
-
]
|
1060
|
-
},
|
1061
|
-
"UpdateProvisionedProductProperties":{
|
1062
|
-
"name":"UpdateProvisionedProductProperties",
|
1063
|
-
"http":{
|
1064
|
-
"method":"POST",
|
1065
|
-
"requestUri":"/"
|
1066
|
-
},
|
1067
|
-
"input":{"shape":"UpdateProvisionedProductPropertiesInput"},
|
1068
|
-
"output":{"shape":"UpdateProvisionedProductPropertiesOutput"},
|
1069
|
-
"errors":[
|
1070
|
-
{"shape":"InvalidParametersException"},
|
1071
|
-
{"shape":"ResourceNotFoundException"},
|
1072
|
-
{"shape":"InvalidStateException"}
|
1073
|
-
]
|
1074
|
-
},
|
1075
|
-
"UpdateProvisioningArtifact":{
|
1076
|
-
"name":"UpdateProvisioningArtifact",
|
1077
|
-
"http":{
|
1078
|
-
"method":"POST",
|
1079
|
-
"requestUri":"/"
|
1080
|
-
},
|
1081
|
-
"input":{"shape":"UpdateProvisioningArtifactInput"},
|
1082
|
-
"output":{"shape":"UpdateProvisioningArtifactOutput"},
|
1083
|
-
"errors":[
|
1084
|
-
{"shape":"ResourceNotFoundException"},
|
1085
|
-
{"shape":"InvalidParametersException"}
|
1086
|
-
]
|
1087
|
-
},
|
1088
|
-
"UpdateServiceAction":{
|
1089
|
-
"name":"UpdateServiceAction",
|
1090
|
-
"http":{
|
1091
|
-
"method":"POST",
|
1092
|
-
"requestUri":"/"
|
1093
|
-
},
|
1094
|
-
"input":{"shape":"UpdateServiceActionInput"},
|
1095
|
-
"output":{"shape":"UpdateServiceActionOutput"},
|
1096
|
-
"errors":[
|
1097
|
-
{"shape":"ResourceNotFoundException"},
|
1098
|
-
{"shape":"InvalidParametersException"}
|
1099
|
-
]
|
1100
|
-
},
|
1101
|
-
"UpdateTagOption":{
|
1102
|
-
"name":"UpdateTagOption",
|
1103
|
-
"http":{
|
1104
|
-
"method":"POST",
|
1105
|
-
"requestUri":"/"
|
1106
|
-
},
|
1107
|
-
"input":{"shape":"UpdateTagOptionInput"},
|
1108
|
-
"output":{"shape":"UpdateTagOptionOutput"},
|
1109
|
-
"errors":[
|
1110
|
-
{"shape":"TagOptionNotMigratedException"},
|
1111
|
-
{"shape":"ResourceNotFoundException"},
|
1112
|
-
{"shape":"DuplicateResourceException"},
|
1113
|
-
{"shape":"InvalidParametersException"}
|
1114
|
-
]
|
1115
|
-
}
|
1116
|
-
},
|
1117
|
-
"shapes":{
|
1118
|
-
"AcceptLanguage":{
|
1119
|
-
"type":"string",
|
1120
|
-
"max":100
|
1121
|
-
},
|
1122
|
-
"AcceptPortfolioShareInput":{
|
1123
|
-
"type":"structure",
|
1124
|
-
"required":["PortfolioId"],
|
1125
|
-
"members":{
|
1126
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1127
|
-
"PortfolioId":{"shape":"Id"},
|
1128
|
-
"PortfolioShareType":{"shape":"PortfolioShareType"}
|
1129
|
-
}
|
1130
|
-
},
|
1131
|
-
"AcceptPortfolioShareOutput":{
|
1132
|
-
"type":"structure",
|
1133
|
-
"members":{
|
1134
|
-
}
|
1135
|
-
},
|
1136
|
-
"AccessLevelFilter":{
|
1137
|
-
"type":"structure",
|
1138
|
-
"members":{
|
1139
|
-
"Key":{"shape":"AccessLevelFilterKey"},
|
1140
|
-
"Value":{"shape":"AccessLevelFilterValue"}
|
1141
|
-
}
|
1142
|
-
},
|
1143
|
-
"AccessLevelFilterKey":{
|
1144
|
-
"type":"string",
|
1145
|
-
"enum":[
|
1146
|
-
"Account",
|
1147
|
-
"Role",
|
1148
|
-
"User"
|
1149
|
-
]
|
1150
|
-
},
|
1151
|
-
"AccessLevelFilterValue":{"type":"string"},
|
1152
|
-
"AccessStatus":{
|
1153
|
-
"type":"string",
|
1154
|
-
"enum":[
|
1155
|
-
"ENABLED",
|
1156
|
-
"UNDER_CHANGE",
|
1157
|
-
"DISABLED"
|
1158
|
-
]
|
1159
|
-
},
|
1160
|
-
"AccountId":{
|
1161
|
-
"type":"string",
|
1162
|
-
"pattern":"^[0-9]{12}$"
|
1163
|
-
},
|
1164
|
-
"AccountIds":{
|
1165
|
-
"type":"list",
|
1166
|
-
"member":{"shape":"AccountId"}
|
1167
|
-
},
|
1168
|
-
"AddTags":{
|
1169
|
-
"type":"list",
|
1170
|
-
"member":{"shape":"Tag"},
|
1171
|
-
"max":20
|
1172
|
-
},
|
1173
|
-
"AllowedValue":{"type":"string"},
|
1174
|
-
"AllowedValues":{
|
1175
|
-
"type":"list",
|
1176
|
-
"member":{"shape":"AllowedValue"}
|
1177
|
-
},
|
1178
|
-
"ApproximateCount":{"type":"integer"},
|
1179
|
-
"AssociateBudgetWithResourceInput":{
|
1180
|
-
"type":"structure",
|
1181
|
-
"required":[
|
1182
|
-
"BudgetName",
|
1183
|
-
"ResourceId"
|
1184
|
-
],
|
1185
|
-
"members":{
|
1186
|
-
"BudgetName":{"shape":"BudgetName"},
|
1187
|
-
"ResourceId":{"shape":"Id"}
|
1188
|
-
}
|
1189
|
-
},
|
1190
|
-
"AssociateBudgetWithResourceOutput":{
|
1191
|
-
"type":"structure",
|
1192
|
-
"members":{
|
1193
|
-
}
|
1194
|
-
},
|
1195
|
-
"AssociatePrincipalWithPortfolioInput":{
|
1196
|
-
"type":"structure",
|
1197
|
-
"required":[
|
1198
|
-
"PortfolioId",
|
1199
|
-
"PrincipalARN",
|
1200
|
-
"PrincipalType"
|
1201
|
-
],
|
1202
|
-
"members":{
|
1203
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1204
|
-
"PortfolioId":{"shape":"Id"},
|
1205
|
-
"PrincipalARN":{"shape":"PrincipalARN"},
|
1206
|
-
"PrincipalType":{"shape":"PrincipalType"}
|
1207
|
-
}
|
1208
|
-
},
|
1209
|
-
"AssociatePrincipalWithPortfolioOutput":{
|
1210
|
-
"type":"structure",
|
1211
|
-
"members":{
|
1212
|
-
}
|
1213
|
-
},
|
1214
|
-
"AssociateProductWithPortfolioInput":{
|
1215
|
-
"type":"structure",
|
1216
|
-
"required":[
|
1217
|
-
"ProductId",
|
1218
|
-
"PortfolioId"
|
1219
|
-
],
|
1220
|
-
"members":{
|
1221
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1222
|
-
"ProductId":{"shape":"Id"},
|
1223
|
-
"PortfolioId":{"shape":"Id"},
|
1224
|
-
"SourcePortfolioId":{"shape":"Id"}
|
1225
|
-
}
|
1226
|
-
},
|
1227
|
-
"AssociateProductWithPortfolioOutput":{
|
1228
|
-
"type":"structure",
|
1229
|
-
"members":{
|
1230
|
-
}
|
1231
|
-
},
|
1232
|
-
"AssociateServiceActionWithProvisioningArtifactInput":{
|
1233
|
-
"type":"structure",
|
1234
|
-
"required":[
|
1235
|
-
"ProductId",
|
1236
|
-
"ProvisioningArtifactId",
|
1237
|
-
"ServiceActionId"
|
1238
|
-
],
|
1239
|
-
"members":{
|
1240
|
-
"ProductId":{"shape":"Id"},
|
1241
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
1242
|
-
"ServiceActionId":{"shape":"Id"},
|
1243
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1244
|
-
}
|
1245
|
-
},
|
1246
|
-
"AssociateServiceActionWithProvisioningArtifactOutput":{
|
1247
|
-
"type":"structure",
|
1248
|
-
"members":{
|
1249
|
-
}
|
1250
|
-
},
|
1251
|
-
"AssociateTagOptionWithResourceInput":{
|
1252
|
-
"type":"structure",
|
1253
|
-
"required":[
|
1254
|
-
"ResourceId",
|
1255
|
-
"TagOptionId"
|
1256
|
-
],
|
1257
|
-
"members":{
|
1258
|
-
"ResourceId":{"shape":"ResourceId"},
|
1259
|
-
"TagOptionId":{"shape":"TagOptionId"}
|
1260
|
-
}
|
1261
|
-
},
|
1262
|
-
"AssociateTagOptionWithResourceOutput":{
|
1263
|
-
"type":"structure",
|
1264
|
-
"members":{
|
1265
|
-
}
|
1266
|
-
},
|
1267
|
-
"AttributeValue":{"type":"string"},
|
1268
|
-
"BatchAssociateServiceActionWithProvisioningArtifactInput":{
|
1269
|
-
"type":"structure",
|
1270
|
-
"required":["ServiceActionAssociations"],
|
1271
|
-
"members":{
|
1272
|
-
"ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
|
1273
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1274
|
-
}
|
1275
|
-
},
|
1276
|
-
"BatchAssociateServiceActionWithProvisioningArtifactOutput":{
|
1277
|
-
"type":"structure",
|
1278
|
-
"members":{
|
1279
|
-
"FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
|
1280
|
-
}
|
1281
|
-
},
|
1282
|
-
"BatchDisassociateServiceActionFromProvisioningArtifactInput":{
|
1283
|
-
"type":"structure",
|
1284
|
-
"required":["ServiceActionAssociations"],
|
1285
|
-
"members":{
|
1286
|
-
"ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
|
1287
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1288
|
-
}
|
1289
|
-
},
|
1290
|
-
"BatchDisassociateServiceActionFromProvisioningArtifactOutput":{
|
1291
|
-
"type":"structure",
|
1292
|
-
"members":{
|
1293
|
-
"FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
|
1294
|
-
}
|
1295
|
-
},
|
1296
|
-
"BudgetDetail":{
|
1297
|
-
"type":"structure",
|
1298
|
-
"members":{
|
1299
|
-
"BudgetName":{"shape":"BudgetName"}
|
1300
|
-
}
|
1301
|
-
},
|
1302
|
-
"BudgetName":{
|
1303
|
-
"type":"string",
|
1304
|
-
"max":100,
|
1305
|
-
"min":1
|
1306
|
-
},
|
1307
|
-
"Budgets":{
|
1308
|
-
"type":"list",
|
1309
|
-
"member":{"shape":"BudgetDetail"}
|
1310
|
-
},
|
1311
|
-
"CausingEntity":{"type":"string"},
|
1312
|
-
"ChangeAction":{
|
1313
|
-
"type":"string",
|
1314
|
-
"enum":[
|
1315
|
-
"ADD",
|
1316
|
-
"MODIFY",
|
1317
|
-
"REMOVE"
|
1318
|
-
]
|
1319
|
-
},
|
1320
|
-
"CloudWatchDashboard":{
|
1321
|
-
"type":"structure",
|
1322
|
-
"members":{
|
1323
|
-
"Name":{"shape":"CloudWatchDashboardName"}
|
1324
|
-
}
|
1325
|
-
},
|
1326
|
-
"CloudWatchDashboardName":{"type":"string"},
|
1327
|
-
"CloudWatchDashboards":{
|
1328
|
-
"type":"list",
|
1329
|
-
"member":{"shape":"CloudWatchDashboard"}
|
1330
|
-
},
|
1331
|
-
"ConstraintDescription":{
|
1332
|
-
"type":"string",
|
1333
|
-
"max":2000
|
1334
|
-
},
|
1335
|
-
"ConstraintDetail":{
|
1336
|
-
"type":"structure",
|
1337
|
-
"members":{
|
1338
|
-
"ConstraintId":{"shape":"Id"},
|
1339
|
-
"Type":{"shape":"ConstraintType"},
|
1340
|
-
"Description":{"shape":"ConstraintDescription"},
|
1341
|
-
"Owner":{"shape":"AccountId"}
|
1342
|
-
}
|
1343
|
-
},
|
1344
|
-
"ConstraintDetails":{
|
1345
|
-
"type":"list",
|
1346
|
-
"member":{"shape":"ConstraintDetail"}
|
1347
|
-
},
|
1348
|
-
"ConstraintParameters":{"type":"string"},
|
1349
|
-
"ConstraintSummaries":{
|
1350
|
-
"type":"list",
|
1351
|
-
"member":{"shape":"ConstraintSummary"}
|
1352
|
-
},
|
1353
|
-
"ConstraintSummary":{
|
1354
|
-
"type":"structure",
|
1355
|
-
"members":{
|
1356
|
-
"Type":{"shape":"ConstraintType"},
|
1357
|
-
"Description":{"shape":"ConstraintDescription"}
|
1358
|
-
}
|
1359
|
-
},
|
1360
|
-
"ConstraintType":{
|
1361
|
-
"type":"string",
|
1362
|
-
"max":1024,
|
1363
|
-
"min":1
|
1364
|
-
},
|
1365
|
-
"CopyOption":{
|
1366
|
-
"type":"string",
|
1367
|
-
"enum":["CopyTags"]
|
1368
|
-
},
|
1369
|
-
"CopyOptions":{
|
1370
|
-
"type":"list",
|
1371
|
-
"member":{"shape":"CopyOption"}
|
1372
|
-
},
|
1373
|
-
"CopyProductInput":{
|
1374
|
-
"type":"structure",
|
1375
|
-
"required":[
|
1376
|
-
"SourceProductArn",
|
1377
|
-
"IdempotencyToken"
|
1378
|
-
],
|
1379
|
-
"members":{
|
1380
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1381
|
-
"SourceProductArn":{"shape":"ProductArn"},
|
1382
|
-
"TargetProductId":{"shape":"Id"},
|
1383
|
-
"TargetProductName":{"shape":"ProductViewName"},
|
1384
|
-
"SourceProvisioningArtifactIdentifiers":{"shape":"SourceProvisioningArtifactProperties"},
|
1385
|
-
"CopyOptions":{"shape":"CopyOptions"},
|
1386
|
-
"IdempotencyToken":{
|
1387
|
-
"shape":"IdempotencyToken",
|
1388
|
-
"idempotencyToken":true
|
1389
|
-
}
|
1390
|
-
}
|
1391
|
-
},
|
1392
|
-
"CopyProductOutput":{
|
1393
|
-
"type":"structure",
|
1394
|
-
"members":{
|
1395
|
-
"CopyProductToken":{"shape":"Id"}
|
1396
|
-
}
|
1397
|
-
},
|
1398
|
-
"CopyProductStatus":{
|
1399
|
-
"type":"string",
|
1400
|
-
"enum":[
|
1401
|
-
"SUCCEEDED",
|
1402
|
-
"IN_PROGRESS",
|
1403
|
-
"FAILED"
|
1404
|
-
]
|
1405
|
-
},
|
1406
|
-
"CreateConstraintInput":{
|
1407
|
-
"type":"structure",
|
1408
|
-
"required":[
|
1409
|
-
"PortfolioId",
|
1410
|
-
"ProductId",
|
1411
|
-
"Parameters",
|
1412
|
-
"Type",
|
1413
|
-
"IdempotencyToken"
|
1414
|
-
],
|
1415
|
-
"members":{
|
1416
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1417
|
-
"PortfolioId":{"shape":"Id"},
|
1418
|
-
"ProductId":{"shape":"Id"},
|
1419
|
-
"Parameters":{"shape":"ConstraintParameters"},
|
1420
|
-
"Type":{"shape":"ConstraintType"},
|
1421
|
-
"Description":{"shape":"ConstraintDescription"},
|
1422
|
-
"IdempotencyToken":{
|
1423
|
-
"shape":"IdempotencyToken",
|
1424
|
-
"idempotencyToken":true
|
1425
|
-
}
|
1426
|
-
}
|
1427
|
-
},
|
1428
|
-
"CreateConstraintOutput":{
|
1429
|
-
"type":"structure",
|
1430
|
-
"members":{
|
1431
|
-
"ConstraintDetail":{"shape":"ConstraintDetail"},
|
1432
|
-
"ConstraintParameters":{"shape":"ConstraintParameters"},
|
1433
|
-
"Status":{"shape":"Status"}
|
1434
|
-
}
|
1435
|
-
},
|
1436
|
-
"CreatePortfolioInput":{
|
1437
|
-
"type":"structure",
|
1438
|
-
"required":[
|
1439
|
-
"DisplayName",
|
1440
|
-
"ProviderName",
|
1441
|
-
"IdempotencyToken"
|
1442
|
-
],
|
1443
|
-
"members":{
|
1444
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1445
|
-
"DisplayName":{"shape":"PortfolioDisplayName"},
|
1446
|
-
"Description":{"shape":"PortfolioDescription"},
|
1447
|
-
"ProviderName":{"shape":"ProviderName"},
|
1448
|
-
"Tags":{"shape":"AddTags"},
|
1449
|
-
"IdempotencyToken":{
|
1450
|
-
"shape":"IdempotencyToken",
|
1451
|
-
"idempotencyToken":true
|
1452
|
-
}
|
1453
|
-
}
|
1454
|
-
},
|
1455
|
-
"CreatePortfolioOutput":{
|
1456
|
-
"type":"structure",
|
1457
|
-
"members":{
|
1458
|
-
"PortfolioDetail":{"shape":"PortfolioDetail"},
|
1459
|
-
"Tags":{"shape":"Tags"}
|
1460
|
-
}
|
1461
|
-
},
|
1462
|
-
"CreatePortfolioShareInput":{
|
1463
|
-
"type":"structure",
|
1464
|
-
"required":["PortfolioId"],
|
1465
|
-
"members":{
|
1466
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1467
|
-
"PortfolioId":{"shape":"Id"},
|
1468
|
-
"AccountId":{"shape":"AccountId"},
|
1469
|
-
"OrganizationNode":{"shape":"OrganizationNode"}
|
1470
|
-
}
|
1471
|
-
},
|
1472
|
-
"CreatePortfolioShareOutput":{
|
1473
|
-
"type":"structure",
|
1474
|
-
"members":{
|
1475
|
-
"PortfolioShareToken":{"shape":"Id"}
|
1476
|
-
}
|
1477
|
-
},
|
1478
|
-
"CreateProductInput":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"required":[
|
1481
|
-
"Name",
|
1482
|
-
"Owner",
|
1483
|
-
"ProductType",
|
1484
|
-
"ProvisioningArtifactParameters",
|
1485
|
-
"IdempotencyToken"
|
1486
|
-
],
|
1487
|
-
"members":{
|
1488
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1489
|
-
"Name":{"shape":"ProductViewName"},
|
1490
|
-
"Owner":{"shape":"ProductViewOwner"},
|
1491
|
-
"Description":{"shape":"ProductViewShortDescription"},
|
1492
|
-
"Distributor":{"shape":"ProductViewOwner"},
|
1493
|
-
"SupportDescription":{"shape":"SupportDescription"},
|
1494
|
-
"SupportEmail":{"shape":"SupportEmail"},
|
1495
|
-
"SupportUrl":{"shape":"SupportUrl"},
|
1496
|
-
"ProductType":{"shape":"ProductType"},
|
1497
|
-
"Tags":{"shape":"AddTags"},
|
1498
|
-
"ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactProperties"},
|
1499
|
-
"IdempotencyToken":{
|
1500
|
-
"shape":"IdempotencyToken",
|
1501
|
-
"idempotencyToken":true
|
1502
|
-
}
|
1503
|
-
}
|
1504
|
-
},
|
1505
|
-
"CreateProductOutput":{
|
1506
|
-
"type":"structure",
|
1507
|
-
"members":{
|
1508
|
-
"ProductViewDetail":{"shape":"ProductViewDetail"},
|
1509
|
-
"ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
|
1510
|
-
"Tags":{"shape":"Tags"}
|
1511
|
-
}
|
1512
|
-
},
|
1513
|
-
"CreateProvisionedProductPlanInput":{
|
1514
|
-
"type":"structure",
|
1515
|
-
"required":[
|
1516
|
-
"PlanName",
|
1517
|
-
"PlanType",
|
1518
|
-
"ProductId",
|
1519
|
-
"ProvisionedProductName",
|
1520
|
-
"ProvisioningArtifactId",
|
1521
|
-
"IdempotencyToken"
|
1522
|
-
],
|
1523
|
-
"members":{
|
1524
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1525
|
-
"PlanName":{"shape":"ProvisionedProductPlanName"},
|
1526
|
-
"PlanType":{"shape":"ProvisionedProductPlanType"},
|
1527
|
-
"NotificationArns":{"shape":"NotificationArns"},
|
1528
|
-
"PathId":{"shape":"Id"},
|
1529
|
-
"ProductId":{"shape":"Id"},
|
1530
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductName"},
|
1531
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
1532
|
-
"ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
|
1533
|
-
"IdempotencyToken":{
|
1534
|
-
"shape":"IdempotencyToken",
|
1535
|
-
"idempotencyToken":true
|
1536
|
-
},
|
1537
|
-
"Tags":{"shape":"Tags"}
|
1538
|
-
}
|
1539
|
-
},
|
1540
|
-
"CreateProvisionedProductPlanOutput":{
|
1541
|
-
"type":"structure",
|
1542
|
-
"members":{
|
1543
|
-
"PlanName":{"shape":"ProvisionedProductPlanName"},
|
1544
|
-
"PlanId":{"shape":"Id"},
|
1545
|
-
"ProvisionProductId":{"shape":"Id"},
|
1546
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductName"},
|
1547
|
-
"ProvisioningArtifactId":{"shape":"Id"}
|
1548
|
-
}
|
1549
|
-
},
|
1550
|
-
"CreateProvisioningArtifactInput":{
|
1551
|
-
"type":"structure",
|
1552
|
-
"required":[
|
1553
|
-
"ProductId",
|
1554
|
-
"Parameters",
|
1555
|
-
"IdempotencyToken"
|
1556
|
-
],
|
1557
|
-
"members":{
|
1558
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1559
|
-
"ProductId":{"shape":"Id"},
|
1560
|
-
"Parameters":{"shape":"ProvisioningArtifactProperties"},
|
1561
|
-
"IdempotencyToken":{
|
1562
|
-
"shape":"IdempotencyToken",
|
1563
|
-
"idempotencyToken":true
|
1564
|
-
}
|
1565
|
-
}
|
1566
|
-
},
|
1567
|
-
"CreateProvisioningArtifactOutput":{
|
1568
|
-
"type":"structure",
|
1569
|
-
"members":{
|
1570
|
-
"ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
|
1571
|
-
"Info":{"shape":"ProvisioningArtifactInfo"},
|
1572
|
-
"Status":{"shape":"Status"}
|
1573
|
-
}
|
1574
|
-
},
|
1575
|
-
"CreateServiceActionInput":{
|
1576
|
-
"type":"structure",
|
1577
|
-
"required":[
|
1578
|
-
"Name",
|
1579
|
-
"DefinitionType",
|
1580
|
-
"Definition",
|
1581
|
-
"IdempotencyToken"
|
1582
|
-
],
|
1583
|
-
"members":{
|
1584
|
-
"Name":{"shape":"ServiceActionName"},
|
1585
|
-
"DefinitionType":{"shape":"ServiceActionDefinitionType"},
|
1586
|
-
"Definition":{"shape":"ServiceActionDefinitionMap"},
|
1587
|
-
"Description":{"shape":"ServiceActionDescription"},
|
1588
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1589
|
-
"IdempotencyToken":{
|
1590
|
-
"shape":"IdempotencyToken",
|
1591
|
-
"idempotencyToken":true
|
1592
|
-
}
|
1593
|
-
}
|
1594
|
-
},
|
1595
|
-
"CreateServiceActionOutput":{
|
1596
|
-
"type":"structure",
|
1597
|
-
"members":{
|
1598
|
-
"ServiceActionDetail":{"shape":"ServiceActionDetail"}
|
1599
|
-
}
|
1600
|
-
},
|
1601
|
-
"CreateTagOptionInput":{
|
1602
|
-
"type":"structure",
|
1603
|
-
"required":[
|
1604
|
-
"Key",
|
1605
|
-
"Value"
|
1606
|
-
],
|
1607
|
-
"members":{
|
1608
|
-
"Key":{"shape":"TagOptionKey"},
|
1609
|
-
"Value":{"shape":"TagOptionValue"}
|
1610
|
-
}
|
1611
|
-
},
|
1612
|
-
"CreateTagOptionOutput":{
|
1613
|
-
"type":"structure",
|
1614
|
-
"members":{
|
1615
|
-
"TagOptionDetail":{"shape":"TagOptionDetail"}
|
1616
|
-
}
|
1617
|
-
},
|
1618
|
-
"CreatedTime":{"type":"timestamp"},
|
1619
|
-
"CreationTime":{"type":"timestamp"},
|
1620
|
-
"DefaultValue":{"type":"string"},
|
1621
|
-
"DeleteConstraintInput":{
|
1622
|
-
"type":"structure",
|
1623
|
-
"required":["Id"],
|
1624
|
-
"members":{
|
1625
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1626
|
-
"Id":{"shape":"Id"}
|
1627
|
-
}
|
1628
|
-
},
|
1629
|
-
"DeleteConstraintOutput":{
|
1630
|
-
"type":"structure",
|
1631
|
-
"members":{
|
1632
|
-
}
|
1633
|
-
},
|
1634
|
-
"DeletePortfolioInput":{
|
1635
|
-
"type":"structure",
|
1636
|
-
"required":["Id"],
|
1637
|
-
"members":{
|
1638
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1639
|
-
"Id":{"shape":"Id"}
|
1640
|
-
}
|
1641
|
-
},
|
1642
|
-
"DeletePortfolioOutput":{
|
1643
|
-
"type":"structure",
|
1644
|
-
"members":{
|
1645
|
-
}
|
1646
|
-
},
|
1647
|
-
"DeletePortfolioShareInput":{
|
1648
|
-
"type":"structure",
|
1649
|
-
"required":["PortfolioId"],
|
1650
|
-
"members":{
|
1651
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1652
|
-
"PortfolioId":{"shape":"Id"},
|
1653
|
-
"AccountId":{"shape":"AccountId"},
|
1654
|
-
"OrganizationNode":{"shape":"OrganizationNode"}
|
1655
|
-
}
|
1656
|
-
},
|
1657
|
-
"DeletePortfolioShareOutput":{
|
1658
|
-
"type":"structure",
|
1659
|
-
"members":{
|
1660
|
-
"PortfolioShareToken":{"shape":"Id"}
|
1661
|
-
}
|
1662
|
-
},
|
1663
|
-
"DeleteProductInput":{
|
1664
|
-
"type":"structure",
|
1665
|
-
"required":["Id"],
|
1666
|
-
"members":{
|
1667
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1668
|
-
"Id":{"shape":"Id"}
|
1669
|
-
}
|
1670
|
-
},
|
1671
|
-
"DeleteProductOutput":{
|
1672
|
-
"type":"structure",
|
1673
|
-
"members":{
|
1674
|
-
}
|
1675
|
-
},
|
1676
|
-
"DeleteProvisionedProductPlanInput":{
|
1677
|
-
"type":"structure",
|
1678
|
-
"required":["PlanId"],
|
1679
|
-
"members":{
|
1680
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1681
|
-
"PlanId":{"shape":"Id"},
|
1682
|
-
"IgnoreErrors":{"shape":"IgnoreErrors"}
|
1683
|
-
}
|
1684
|
-
},
|
1685
|
-
"DeleteProvisionedProductPlanOutput":{
|
1686
|
-
"type":"structure",
|
1687
|
-
"members":{
|
1688
|
-
}
|
1689
|
-
},
|
1690
|
-
"DeleteProvisioningArtifactInput":{
|
1691
|
-
"type":"structure",
|
1692
|
-
"required":[
|
1693
|
-
"ProductId",
|
1694
|
-
"ProvisioningArtifactId"
|
1695
|
-
],
|
1696
|
-
"members":{
|
1697
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1698
|
-
"ProductId":{"shape":"Id"},
|
1699
|
-
"ProvisioningArtifactId":{"shape":"Id"}
|
1700
|
-
}
|
1701
|
-
},
|
1702
|
-
"DeleteProvisioningArtifactOutput":{
|
1703
|
-
"type":"structure",
|
1704
|
-
"members":{
|
1705
|
-
}
|
1706
|
-
},
|
1707
|
-
"DeleteServiceActionInput":{
|
1708
|
-
"type":"structure",
|
1709
|
-
"required":["Id"],
|
1710
|
-
"members":{
|
1711
|
-
"Id":{"shape":"Id"},
|
1712
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1713
|
-
}
|
1714
|
-
},
|
1715
|
-
"DeleteServiceActionOutput":{
|
1716
|
-
"type":"structure",
|
1717
|
-
"members":{
|
1718
|
-
}
|
1719
|
-
},
|
1720
|
-
"DeleteTagOptionInput":{
|
1721
|
-
"type":"structure",
|
1722
|
-
"required":["Id"],
|
1723
|
-
"members":{
|
1724
|
-
"Id":{"shape":"TagOptionId"}
|
1725
|
-
}
|
1726
|
-
},
|
1727
|
-
"DeleteTagOptionOutput":{
|
1728
|
-
"type":"structure",
|
1729
|
-
"members":{
|
1730
|
-
}
|
1731
|
-
},
|
1732
|
-
"DescribeConstraintInput":{
|
1733
|
-
"type":"structure",
|
1734
|
-
"required":["Id"],
|
1735
|
-
"members":{
|
1736
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1737
|
-
"Id":{"shape":"Id"}
|
1738
|
-
}
|
1739
|
-
},
|
1740
|
-
"DescribeConstraintOutput":{
|
1741
|
-
"type":"structure",
|
1742
|
-
"members":{
|
1743
|
-
"ConstraintDetail":{"shape":"ConstraintDetail"},
|
1744
|
-
"ConstraintParameters":{"shape":"ConstraintParameters"},
|
1745
|
-
"Status":{"shape":"Status"}
|
1746
|
-
}
|
1747
|
-
},
|
1748
|
-
"DescribeCopyProductStatusInput":{
|
1749
|
-
"type":"structure",
|
1750
|
-
"required":["CopyProductToken"],
|
1751
|
-
"members":{
|
1752
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1753
|
-
"CopyProductToken":{"shape":"Id"}
|
1754
|
-
}
|
1755
|
-
},
|
1756
|
-
"DescribeCopyProductStatusOutput":{
|
1757
|
-
"type":"structure",
|
1758
|
-
"members":{
|
1759
|
-
"CopyProductStatus":{"shape":"CopyProductStatus"},
|
1760
|
-
"TargetProductId":{"shape":"Id"},
|
1761
|
-
"StatusDetail":{"shape":"StatusDetail"}
|
1762
|
-
}
|
1763
|
-
},
|
1764
|
-
"DescribePortfolioInput":{
|
1765
|
-
"type":"structure",
|
1766
|
-
"required":["Id"],
|
1767
|
-
"members":{
|
1768
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1769
|
-
"Id":{"shape":"Id"}
|
1770
|
-
}
|
1771
|
-
},
|
1772
|
-
"DescribePortfolioOutput":{
|
1773
|
-
"type":"structure",
|
1774
|
-
"members":{
|
1775
|
-
"PortfolioDetail":{"shape":"PortfolioDetail"},
|
1776
|
-
"Tags":{"shape":"Tags"},
|
1777
|
-
"TagOptions":{"shape":"TagOptionDetails"},
|
1778
|
-
"Budgets":{"shape":"Budgets"}
|
1779
|
-
}
|
1780
|
-
},
|
1781
|
-
"DescribePortfolioShareStatusInput":{
|
1782
|
-
"type":"structure",
|
1783
|
-
"required":["PortfolioShareToken"],
|
1784
|
-
"members":{
|
1785
|
-
"PortfolioShareToken":{"shape":"Id"}
|
1786
|
-
}
|
1787
|
-
},
|
1788
|
-
"DescribePortfolioShareStatusOutput":{
|
1789
|
-
"type":"structure",
|
1790
|
-
"members":{
|
1791
|
-
"PortfolioShareToken":{"shape":"Id"},
|
1792
|
-
"PortfolioId":{"shape":"Id"},
|
1793
|
-
"OrganizationNodeValue":{"shape":"OrganizationNodeValue"},
|
1794
|
-
"Status":{"shape":"ShareStatus"},
|
1795
|
-
"ShareDetails":{"shape":"ShareDetails"}
|
1796
|
-
}
|
1797
|
-
},
|
1798
|
-
"DescribeProductAsAdminInput":{
|
1799
|
-
"type":"structure",
|
1800
|
-
"required":["Id"],
|
1801
|
-
"members":{
|
1802
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1803
|
-
"Id":{"shape":"Id"}
|
1804
|
-
}
|
1805
|
-
},
|
1806
|
-
"DescribeProductAsAdminOutput":{
|
1807
|
-
"type":"structure",
|
1808
|
-
"members":{
|
1809
|
-
"ProductViewDetail":{"shape":"ProductViewDetail"},
|
1810
|
-
"ProvisioningArtifactSummaries":{"shape":"ProvisioningArtifactSummaries"},
|
1811
|
-
"Tags":{"shape":"Tags"},
|
1812
|
-
"TagOptions":{"shape":"TagOptionDetails"},
|
1813
|
-
"Budgets":{"shape":"Budgets"}
|
1814
|
-
}
|
1815
|
-
},
|
1816
|
-
"DescribeProductInput":{
|
1817
|
-
"type":"structure",
|
1818
|
-
"required":["Id"],
|
1819
|
-
"members":{
|
1820
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1821
|
-
"Id":{"shape":"Id"}
|
1822
|
-
}
|
1823
|
-
},
|
1824
|
-
"DescribeProductOutput":{
|
1825
|
-
"type":"structure",
|
1826
|
-
"members":{
|
1827
|
-
"ProductViewSummary":{"shape":"ProductViewSummary"},
|
1828
|
-
"ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"},
|
1829
|
-
"Budgets":{"shape":"Budgets"}
|
1830
|
-
}
|
1831
|
-
},
|
1832
|
-
"DescribeProductViewInput":{
|
1833
|
-
"type":"structure",
|
1834
|
-
"required":["Id"],
|
1835
|
-
"members":{
|
1836
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1837
|
-
"Id":{"shape":"Id"}
|
1838
|
-
}
|
1839
|
-
},
|
1840
|
-
"DescribeProductViewOutput":{
|
1841
|
-
"type":"structure",
|
1842
|
-
"members":{
|
1843
|
-
"ProductViewSummary":{"shape":"ProductViewSummary"},
|
1844
|
-
"ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"}
|
1845
|
-
}
|
1846
|
-
},
|
1847
|
-
"DescribeProvisionedProductInput":{
|
1848
|
-
"type":"structure",
|
1849
|
-
"required":["Id"],
|
1850
|
-
"members":{
|
1851
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1852
|
-
"Id":{"shape":"Id"}
|
1853
|
-
}
|
1854
|
-
},
|
1855
|
-
"DescribeProvisionedProductOutput":{
|
1856
|
-
"type":"structure",
|
1857
|
-
"members":{
|
1858
|
-
"ProvisionedProductDetail":{"shape":"ProvisionedProductDetail"},
|
1859
|
-
"CloudWatchDashboards":{"shape":"CloudWatchDashboards"}
|
1860
|
-
}
|
1861
|
-
},
|
1862
|
-
"DescribeProvisionedProductPlanInput":{
|
1863
|
-
"type":"structure",
|
1864
|
-
"required":["PlanId"],
|
1865
|
-
"members":{
|
1866
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1867
|
-
"PlanId":{"shape":"Id"},
|
1868
|
-
"PageSize":{"shape":"PageSize"},
|
1869
|
-
"PageToken":{"shape":"PageToken"}
|
1870
|
-
}
|
1871
|
-
},
|
1872
|
-
"DescribeProvisionedProductPlanOutput":{
|
1873
|
-
"type":"structure",
|
1874
|
-
"members":{
|
1875
|
-
"ProvisionedProductPlanDetails":{"shape":"ProvisionedProductPlanDetails"},
|
1876
|
-
"ResourceChanges":{"shape":"ResourceChanges"},
|
1877
|
-
"NextPageToken":{"shape":"PageToken"}
|
1878
|
-
}
|
1879
|
-
},
|
1880
|
-
"DescribeProvisioningArtifactInput":{
|
1881
|
-
"type":"structure",
|
1882
|
-
"required":[
|
1883
|
-
"ProvisioningArtifactId",
|
1884
|
-
"ProductId"
|
1885
|
-
],
|
1886
|
-
"members":{
|
1887
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1888
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
1889
|
-
"ProductId":{"shape":"Id"},
|
1890
|
-
"Verbose":{"shape":"Verbose"}
|
1891
|
-
}
|
1892
|
-
},
|
1893
|
-
"DescribeProvisioningArtifactOutput":{
|
1894
|
-
"type":"structure",
|
1895
|
-
"members":{
|
1896
|
-
"ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
|
1897
|
-
"Info":{"shape":"ProvisioningArtifactInfo"},
|
1898
|
-
"Status":{"shape":"Status"}
|
1899
|
-
}
|
1900
|
-
},
|
1901
|
-
"DescribeProvisioningParametersInput":{
|
1902
|
-
"type":"structure",
|
1903
|
-
"required":[
|
1904
|
-
"ProductId",
|
1905
|
-
"ProvisioningArtifactId"
|
1906
|
-
],
|
1907
|
-
"members":{
|
1908
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1909
|
-
"ProductId":{"shape":"Id"},
|
1910
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
1911
|
-
"PathId":{"shape":"Id"}
|
1912
|
-
}
|
1913
|
-
},
|
1914
|
-
"DescribeProvisioningParametersOutput":{
|
1915
|
-
"type":"structure",
|
1916
|
-
"members":{
|
1917
|
-
"ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactParameters"},
|
1918
|
-
"ConstraintSummaries":{"shape":"ConstraintSummaries"},
|
1919
|
-
"UsageInstructions":{"shape":"UsageInstructions"},
|
1920
|
-
"TagOptions":{"shape":"TagOptionSummaries"},
|
1921
|
-
"ProvisioningArtifactPreferences":{"shape":"ProvisioningArtifactPreferences"}
|
1922
|
-
}
|
1923
|
-
},
|
1924
|
-
"DescribeRecordInput":{
|
1925
|
-
"type":"structure",
|
1926
|
-
"required":["Id"],
|
1927
|
-
"members":{
|
1928
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
1929
|
-
"Id":{"shape":"Id"},
|
1930
|
-
"PageToken":{"shape":"PageToken"},
|
1931
|
-
"PageSize":{"shape":"PageSize"}
|
1932
|
-
}
|
1933
|
-
},
|
1934
|
-
"DescribeRecordOutput":{
|
1935
|
-
"type":"structure",
|
1936
|
-
"members":{
|
1937
|
-
"RecordDetail":{"shape":"RecordDetail"},
|
1938
|
-
"RecordOutputs":{"shape":"RecordOutputs"},
|
1939
|
-
"NextPageToken":{"shape":"PageToken"}
|
1940
|
-
}
|
1941
|
-
},
|
1942
|
-
"DescribeServiceActionExecutionParametersInput":{
|
1943
|
-
"type":"structure",
|
1944
|
-
"required":[
|
1945
|
-
"ProvisionedProductId",
|
1946
|
-
"ServiceActionId"
|
1947
|
-
],
|
1948
|
-
"members":{
|
1949
|
-
"ProvisionedProductId":{"shape":"Id"},
|
1950
|
-
"ServiceActionId":{"shape":"Id"},
|
1951
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1952
|
-
}
|
1953
|
-
},
|
1954
|
-
"DescribeServiceActionExecutionParametersOutput":{
|
1955
|
-
"type":"structure",
|
1956
|
-
"members":{
|
1957
|
-
"ServiceActionParameters":{"shape":"ExecutionParameters"}
|
1958
|
-
}
|
1959
|
-
},
|
1960
|
-
"DescribeServiceActionInput":{
|
1961
|
-
"type":"structure",
|
1962
|
-
"required":["Id"],
|
1963
|
-
"members":{
|
1964
|
-
"Id":{"shape":"Id"},
|
1965
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
1966
|
-
}
|
1967
|
-
},
|
1968
|
-
"DescribeServiceActionOutput":{
|
1969
|
-
"type":"structure",
|
1970
|
-
"members":{
|
1971
|
-
"ServiceActionDetail":{"shape":"ServiceActionDetail"}
|
1972
|
-
}
|
1973
|
-
},
|
1974
|
-
"DescribeTagOptionInput":{
|
1975
|
-
"type":"structure",
|
1976
|
-
"required":["Id"],
|
1977
|
-
"members":{
|
1978
|
-
"Id":{"shape":"TagOptionId"}
|
1979
|
-
}
|
1980
|
-
},
|
1981
|
-
"DescribeTagOptionOutput":{
|
1982
|
-
"type":"structure",
|
1983
|
-
"members":{
|
1984
|
-
"TagOptionDetail":{"shape":"TagOptionDetail"}
|
1985
|
-
}
|
1986
|
-
},
|
1987
|
-
"Description":{"type":"string"},
|
1988
|
-
"DisableAWSOrganizationsAccessInput":{
|
1989
|
-
"type":"structure",
|
1990
|
-
"members":{
|
1991
|
-
}
|
1992
|
-
},
|
1993
|
-
"DisableAWSOrganizationsAccessOutput":{
|
1994
|
-
"type":"structure",
|
1995
|
-
"members":{
|
1996
|
-
}
|
1997
|
-
},
|
1998
|
-
"DisableTemplateValidation":{"type":"boolean"},
|
1999
|
-
"DisassociateBudgetFromResourceInput":{
|
2000
|
-
"type":"structure",
|
2001
|
-
"required":[
|
2002
|
-
"BudgetName",
|
2003
|
-
"ResourceId"
|
2004
|
-
],
|
2005
|
-
"members":{
|
2006
|
-
"BudgetName":{"shape":"BudgetName"},
|
2007
|
-
"ResourceId":{"shape":"Id"}
|
2008
|
-
}
|
2009
|
-
},
|
2010
|
-
"DisassociateBudgetFromResourceOutput":{
|
2011
|
-
"type":"structure",
|
2012
|
-
"members":{
|
2013
|
-
}
|
2014
|
-
},
|
2015
|
-
"DisassociatePrincipalFromPortfolioInput":{
|
2016
|
-
"type":"structure",
|
2017
|
-
"required":[
|
2018
|
-
"PortfolioId",
|
2019
|
-
"PrincipalARN"
|
2020
|
-
],
|
2021
|
-
"members":{
|
2022
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2023
|
-
"PortfolioId":{"shape":"Id"},
|
2024
|
-
"PrincipalARN":{"shape":"PrincipalARN"}
|
2025
|
-
}
|
2026
|
-
},
|
2027
|
-
"DisassociatePrincipalFromPortfolioOutput":{
|
2028
|
-
"type":"structure",
|
2029
|
-
"members":{
|
2030
|
-
}
|
2031
|
-
},
|
2032
|
-
"DisassociateProductFromPortfolioInput":{
|
2033
|
-
"type":"structure",
|
2034
|
-
"required":[
|
2035
|
-
"ProductId",
|
2036
|
-
"PortfolioId"
|
2037
|
-
],
|
2038
|
-
"members":{
|
2039
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2040
|
-
"ProductId":{"shape":"Id"},
|
2041
|
-
"PortfolioId":{"shape":"Id"}
|
2042
|
-
}
|
2043
|
-
},
|
2044
|
-
"DisassociateProductFromPortfolioOutput":{
|
2045
|
-
"type":"structure",
|
2046
|
-
"members":{
|
2047
|
-
}
|
2048
|
-
},
|
2049
|
-
"DisassociateServiceActionFromProvisioningArtifactInput":{
|
2050
|
-
"type":"structure",
|
2051
|
-
"required":[
|
2052
|
-
"ProductId",
|
2053
|
-
"ProvisioningArtifactId",
|
2054
|
-
"ServiceActionId"
|
2055
|
-
],
|
2056
|
-
"members":{
|
2057
|
-
"ProductId":{"shape":"Id"},
|
2058
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2059
|
-
"ServiceActionId":{"shape":"Id"},
|
2060
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
2061
|
-
}
|
2062
|
-
},
|
2063
|
-
"DisassociateServiceActionFromProvisioningArtifactOutput":{
|
2064
|
-
"type":"structure",
|
2065
|
-
"members":{
|
2066
|
-
}
|
2067
|
-
},
|
2068
|
-
"DisassociateTagOptionFromResourceInput":{
|
2069
|
-
"type":"structure",
|
2070
|
-
"required":[
|
2071
|
-
"ResourceId",
|
2072
|
-
"TagOptionId"
|
2073
|
-
],
|
2074
|
-
"members":{
|
2075
|
-
"ResourceId":{"shape":"ResourceId"},
|
2076
|
-
"TagOptionId":{"shape":"TagOptionId"}
|
2077
|
-
}
|
2078
|
-
},
|
2079
|
-
"DisassociateTagOptionFromResourceOutput":{
|
2080
|
-
"type":"structure",
|
2081
|
-
"members":{
|
2082
|
-
}
|
2083
|
-
},
|
2084
|
-
"DuplicateResourceException":{
|
2085
|
-
"type":"structure",
|
2086
|
-
"members":{
|
2087
|
-
},
|
2088
|
-
"exception":true
|
2089
|
-
},
|
2090
|
-
"EnableAWSOrganizationsAccessInput":{
|
2091
|
-
"type":"structure",
|
2092
|
-
"members":{
|
2093
|
-
}
|
2094
|
-
},
|
2095
|
-
"EnableAWSOrganizationsAccessOutput":{
|
2096
|
-
"type":"structure",
|
2097
|
-
"members":{
|
2098
|
-
}
|
2099
|
-
},
|
2100
|
-
"Error":{"type":"string"},
|
2101
|
-
"ErrorCode":{"type":"string"},
|
2102
|
-
"ErrorDescription":{"type":"string"},
|
2103
|
-
"EvaluationType":{
|
2104
|
-
"type":"string",
|
2105
|
-
"enum":[
|
2106
|
-
"STATIC",
|
2107
|
-
"DYNAMIC"
|
2108
|
-
]
|
2109
|
-
},
|
2110
|
-
"ExecuteProvisionedProductPlanInput":{
|
2111
|
-
"type":"structure",
|
2112
|
-
"required":[
|
2113
|
-
"PlanId",
|
2114
|
-
"IdempotencyToken"
|
2115
|
-
],
|
2116
|
-
"members":{
|
2117
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2118
|
-
"PlanId":{"shape":"Id"},
|
2119
|
-
"IdempotencyToken":{
|
2120
|
-
"shape":"IdempotencyToken",
|
2121
|
-
"idempotencyToken":true
|
2122
|
-
}
|
2123
|
-
}
|
2124
|
-
},
|
2125
|
-
"ExecuteProvisionedProductPlanOutput":{
|
2126
|
-
"type":"structure",
|
2127
|
-
"members":{
|
2128
|
-
"RecordDetail":{"shape":"RecordDetail"}
|
2129
|
-
}
|
2130
|
-
},
|
2131
|
-
"ExecuteProvisionedProductServiceActionInput":{
|
2132
|
-
"type":"structure",
|
2133
|
-
"required":[
|
2134
|
-
"ProvisionedProductId",
|
2135
|
-
"ServiceActionId",
|
2136
|
-
"ExecuteToken"
|
2137
|
-
],
|
2138
|
-
"members":{
|
2139
|
-
"ProvisionedProductId":{"shape":"Id"},
|
2140
|
-
"ServiceActionId":{"shape":"Id"},
|
2141
|
-
"ExecuteToken":{
|
2142
|
-
"shape":"IdempotencyToken",
|
2143
|
-
"idempotencyToken":true
|
2144
|
-
},
|
2145
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2146
|
-
"Parameters":{"shape":"ExecutionParameterMap"}
|
2147
|
-
}
|
2148
|
-
},
|
2149
|
-
"ExecuteProvisionedProductServiceActionOutput":{
|
2150
|
-
"type":"structure",
|
2151
|
-
"members":{
|
2152
|
-
"RecordDetail":{"shape":"RecordDetail"}
|
2153
|
-
}
|
2154
|
-
},
|
2155
|
-
"ExecutionParameter":{
|
2156
|
-
"type":"structure",
|
2157
|
-
"members":{
|
2158
|
-
"Name":{"shape":"ExecutionParameterKey"},
|
2159
|
-
"Type":{"shape":"ExecutionParameterType"},
|
2160
|
-
"DefaultValues":{"shape":"ExecutionParameterValueList"}
|
2161
|
-
}
|
2162
|
-
},
|
2163
|
-
"ExecutionParameterKey":{
|
2164
|
-
"type":"string",
|
2165
|
-
"max":50,
|
2166
|
-
"min":1
|
2167
|
-
},
|
2168
|
-
"ExecutionParameterMap":{
|
2169
|
-
"type":"map",
|
2170
|
-
"key":{"shape":"ExecutionParameterKey"},
|
2171
|
-
"value":{"shape":"ExecutionParameterValueList"},
|
2172
|
-
"max":200,
|
2173
|
-
"min":1
|
2174
|
-
},
|
2175
|
-
"ExecutionParameterType":{
|
2176
|
-
"type":"string",
|
2177
|
-
"max":1024,
|
2178
|
-
"min":1
|
2179
|
-
},
|
2180
|
-
"ExecutionParameterValue":{
|
2181
|
-
"type":"string",
|
2182
|
-
"max":512,
|
2183
|
-
"min":0
|
2184
|
-
},
|
2185
|
-
"ExecutionParameterValueList":{
|
2186
|
-
"type":"list",
|
2187
|
-
"member":{"shape":"ExecutionParameterValue"},
|
2188
|
-
"max":25,
|
2189
|
-
"min":0
|
2190
|
-
},
|
2191
|
-
"ExecutionParameters":{
|
2192
|
-
"type":"list",
|
2193
|
-
"member":{"shape":"ExecutionParameter"}
|
2194
|
-
},
|
2195
|
-
"FailedServiceActionAssociation":{
|
2196
|
-
"type":"structure",
|
2197
|
-
"members":{
|
2198
|
-
"ServiceActionId":{"shape":"Id"},
|
2199
|
-
"ProductId":{"shape":"Id"},
|
2200
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2201
|
-
"ErrorCode":{"shape":"ServiceActionAssociationErrorCode"},
|
2202
|
-
"ErrorMessage":{"shape":"ServiceActionAssociationErrorMessage"}
|
2203
|
-
}
|
2204
|
-
},
|
2205
|
-
"FailedServiceActionAssociations":{
|
2206
|
-
"type":"list",
|
2207
|
-
"member":{"shape":"FailedServiceActionAssociation"},
|
2208
|
-
"max":50
|
2209
|
-
},
|
2210
|
-
"GetAWSOrganizationsAccessStatusInput":{
|
2211
|
-
"type":"structure",
|
2212
|
-
"members":{
|
2213
|
-
}
|
2214
|
-
},
|
2215
|
-
"GetAWSOrganizationsAccessStatusOutput":{
|
2216
|
-
"type":"structure",
|
2217
|
-
"members":{
|
2218
|
-
"AccessStatus":{"shape":"AccessStatus"}
|
2219
|
-
}
|
2220
|
-
},
|
2221
|
-
"HasDefaultPath":{"type":"boolean"},
|
2222
|
-
"Id":{
|
2223
|
-
"type":"string",
|
2224
|
-
"max":100,
|
2225
|
-
"min":1,
|
2226
|
-
"pattern":"^[a-zA-Z0-9_\\-]*"
|
2227
|
-
},
|
2228
|
-
"IdempotencyToken":{
|
2229
|
-
"type":"string",
|
2230
|
-
"max":128,
|
2231
|
-
"min":1,
|
2232
|
-
"pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
|
2233
|
-
},
|
2234
|
-
"IgnoreErrors":{"type":"boolean"},
|
2235
|
-
"InstructionType":{"type":"string"},
|
2236
|
-
"InstructionValue":{"type":"string"},
|
2237
|
-
"InvalidParametersException":{
|
2238
|
-
"type":"structure",
|
2239
|
-
"members":{
|
2240
|
-
},
|
2241
|
-
"exception":true
|
2242
|
-
},
|
2243
|
-
"InvalidStateException":{
|
2244
|
-
"type":"structure",
|
2245
|
-
"members":{
|
2246
|
-
},
|
2247
|
-
"exception":true
|
2248
|
-
},
|
2249
|
-
"LastRequestId":{"type":"string"},
|
2250
|
-
"LaunchPathSummaries":{
|
2251
|
-
"type":"list",
|
2252
|
-
"member":{"shape":"LaunchPathSummary"}
|
2253
|
-
},
|
2254
|
-
"LaunchPathSummary":{
|
2255
|
-
"type":"structure",
|
2256
|
-
"members":{
|
2257
|
-
"Id":{"shape":"Id"},
|
2258
|
-
"ConstraintSummaries":{"shape":"ConstraintSummaries"},
|
2259
|
-
"Tags":{"shape":"Tags"},
|
2260
|
-
"Name":{"shape":"PortfolioName"}
|
2261
|
-
}
|
2262
|
-
},
|
2263
|
-
"LimitExceededException":{
|
2264
|
-
"type":"structure",
|
2265
|
-
"members":{
|
2266
|
-
},
|
2267
|
-
"exception":true
|
2268
|
-
},
|
2269
|
-
"ListAcceptedPortfolioSharesInput":{
|
2270
|
-
"type":"structure",
|
2271
|
-
"members":{
|
2272
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2273
|
-
"PageToken":{"shape":"PageToken"},
|
2274
|
-
"PageSize":{"shape":"PageSize"},
|
2275
|
-
"PortfolioShareType":{"shape":"PortfolioShareType"}
|
2276
|
-
}
|
2277
|
-
},
|
2278
|
-
"ListAcceptedPortfolioSharesOutput":{
|
2279
|
-
"type":"structure",
|
2280
|
-
"members":{
|
2281
|
-
"PortfolioDetails":{"shape":"PortfolioDetails"},
|
2282
|
-
"NextPageToken":{"shape":"PageToken"}
|
2283
|
-
}
|
2284
|
-
},
|
2285
|
-
"ListBudgetsForResourceInput":{
|
2286
|
-
"type":"structure",
|
2287
|
-
"required":["ResourceId"],
|
2288
|
-
"members":{
|
2289
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2290
|
-
"ResourceId":{"shape":"Id"},
|
2291
|
-
"PageSize":{"shape":"PageSize"},
|
2292
|
-
"PageToken":{"shape":"PageToken"}
|
2293
|
-
}
|
2294
|
-
},
|
2295
|
-
"ListBudgetsForResourceOutput":{
|
2296
|
-
"type":"structure",
|
2297
|
-
"members":{
|
2298
|
-
"Budgets":{"shape":"Budgets"},
|
2299
|
-
"NextPageToken":{"shape":"PageToken"}
|
2300
|
-
}
|
2301
|
-
},
|
2302
|
-
"ListConstraintsForPortfolioInput":{
|
2303
|
-
"type":"structure",
|
2304
|
-
"required":["PortfolioId"],
|
2305
|
-
"members":{
|
2306
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2307
|
-
"PortfolioId":{"shape":"Id"},
|
2308
|
-
"ProductId":{"shape":"Id"},
|
2309
|
-
"PageSize":{"shape":"PageSize"},
|
2310
|
-
"PageToken":{"shape":"PageToken"}
|
2311
|
-
}
|
2312
|
-
},
|
2313
|
-
"ListConstraintsForPortfolioOutput":{
|
2314
|
-
"type":"structure",
|
2315
|
-
"members":{
|
2316
|
-
"ConstraintDetails":{"shape":"ConstraintDetails"},
|
2317
|
-
"NextPageToken":{"shape":"PageToken"}
|
2318
|
-
}
|
2319
|
-
},
|
2320
|
-
"ListLaunchPathsInput":{
|
2321
|
-
"type":"structure",
|
2322
|
-
"required":["ProductId"],
|
2323
|
-
"members":{
|
2324
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2325
|
-
"ProductId":{"shape":"Id"},
|
2326
|
-
"PageSize":{"shape":"PageSize"},
|
2327
|
-
"PageToken":{"shape":"PageToken"}
|
2328
|
-
}
|
2329
|
-
},
|
2330
|
-
"ListLaunchPathsOutput":{
|
2331
|
-
"type":"structure",
|
2332
|
-
"members":{
|
2333
|
-
"LaunchPathSummaries":{"shape":"LaunchPathSummaries"},
|
2334
|
-
"NextPageToken":{"shape":"PageToken"}
|
2335
|
-
}
|
2336
|
-
},
|
2337
|
-
"ListOrganizationPortfolioAccessInput":{
|
2338
|
-
"type":"structure",
|
2339
|
-
"required":[
|
2340
|
-
"PortfolioId",
|
2341
|
-
"OrganizationNodeType"
|
2342
|
-
],
|
2343
|
-
"members":{
|
2344
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2345
|
-
"PortfolioId":{"shape":"Id"},
|
2346
|
-
"OrganizationNodeType":{"shape":"OrganizationNodeType"},
|
2347
|
-
"PageToken":{"shape":"PageToken"},
|
2348
|
-
"PageSize":{"shape":"PageSize"}
|
2349
|
-
}
|
2350
|
-
},
|
2351
|
-
"ListOrganizationPortfolioAccessOutput":{
|
2352
|
-
"type":"structure",
|
2353
|
-
"members":{
|
2354
|
-
"OrganizationNodes":{"shape":"OrganizationNodes"},
|
2355
|
-
"NextPageToken":{"shape":"PageToken"}
|
2356
|
-
}
|
2357
|
-
},
|
2358
|
-
"ListPortfolioAccessInput":{
|
2359
|
-
"type":"structure",
|
2360
|
-
"required":["PortfolioId"],
|
2361
|
-
"members":{
|
2362
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2363
|
-
"PortfolioId":{"shape":"Id"}
|
2364
|
-
}
|
2365
|
-
},
|
2366
|
-
"ListPortfolioAccessOutput":{
|
2367
|
-
"type":"structure",
|
2368
|
-
"members":{
|
2369
|
-
"AccountIds":{"shape":"AccountIds"},
|
2370
|
-
"NextPageToken":{"shape":"PageToken"}
|
2371
|
-
}
|
2372
|
-
},
|
2373
|
-
"ListPortfoliosForProductInput":{
|
2374
|
-
"type":"structure",
|
2375
|
-
"required":["ProductId"],
|
2376
|
-
"members":{
|
2377
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2378
|
-
"ProductId":{"shape":"Id"},
|
2379
|
-
"PageToken":{"shape":"PageToken"},
|
2380
|
-
"PageSize":{"shape":"PageSize"}
|
2381
|
-
}
|
2382
|
-
},
|
2383
|
-
"ListPortfoliosForProductOutput":{
|
2384
|
-
"type":"structure",
|
2385
|
-
"members":{
|
2386
|
-
"PortfolioDetails":{"shape":"PortfolioDetails"},
|
2387
|
-
"NextPageToken":{"shape":"PageToken"}
|
2388
|
-
}
|
2389
|
-
},
|
2390
|
-
"ListPortfoliosInput":{
|
2391
|
-
"type":"structure",
|
2392
|
-
"members":{
|
2393
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2394
|
-
"PageToken":{"shape":"PageToken"},
|
2395
|
-
"PageSize":{"shape":"PageSize"}
|
2396
|
-
}
|
2397
|
-
},
|
2398
|
-
"ListPortfoliosOutput":{
|
2399
|
-
"type":"structure",
|
2400
|
-
"members":{
|
2401
|
-
"PortfolioDetails":{"shape":"PortfolioDetails"},
|
2402
|
-
"NextPageToken":{"shape":"PageToken"}
|
2403
|
-
}
|
2404
|
-
},
|
2405
|
-
"ListPrincipalsForPortfolioInput":{
|
2406
|
-
"type":"structure",
|
2407
|
-
"required":["PortfolioId"],
|
2408
|
-
"members":{
|
2409
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2410
|
-
"PortfolioId":{"shape":"Id"},
|
2411
|
-
"PageSize":{"shape":"PageSize"},
|
2412
|
-
"PageToken":{"shape":"PageToken"}
|
2413
|
-
}
|
2414
|
-
},
|
2415
|
-
"ListPrincipalsForPortfolioOutput":{
|
2416
|
-
"type":"structure",
|
2417
|
-
"members":{
|
2418
|
-
"Principals":{"shape":"Principals"},
|
2419
|
-
"NextPageToken":{"shape":"PageToken"}
|
2420
|
-
}
|
2421
|
-
},
|
2422
|
-
"ListProvisionedProductPlansInput":{
|
2423
|
-
"type":"structure",
|
2424
|
-
"members":{
|
2425
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2426
|
-
"ProvisionProductId":{"shape":"Id"},
|
2427
|
-
"PageSize":{"shape":"PageSize"},
|
2428
|
-
"PageToken":{"shape":"PageToken"},
|
2429
|
-
"AccessLevelFilter":{"shape":"AccessLevelFilter"}
|
2430
|
-
}
|
2431
|
-
},
|
2432
|
-
"ListProvisionedProductPlansOutput":{
|
2433
|
-
"type":"structure",
|
2434
|
-
"members":{
|
2435
|
-
"ProvisionedProductPlans":{"shape":"ProvisionedProductPlans"},
|
2436
|
-
"NextPageToken":{"shape":"PageToken"}
|
2437
|
-
}
|
2438
|
-
},
|
2439
|
-
"ListProvisioningArtifactsForServiceActionInput":{
|
2440
|
-
"type":"structure",
|
2441
|
-
"required":["ServiceActionId"],
|
2442
|
-
"members":{
|
2443
|
-
"ServiceActionId":{"shape":"Id"},
|
2444
|
-
"PageSize":{"shape":"PageSize"},
|
2445
|
-
"PageToken":{"shape":"PageToken"},
|
2446
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
2447
|
-
}
|
2448
|
-
},
|
2449
|
-
"ListProvisioningArtifactsForServiceActionOutput":{
|
2450
|
-
"type":"structure",
|
2451
|
-
"members":{
|
2452
|
-
"ProvisioningArtifactViews":{"shape":"ProvisioningArtifactViews"},
|
2453
|
-
"NextPageToken":{"shape":"PageToken"}
|
2454
|
-
}
|
2455
|
-
},
|
2456
|
-
"ListProvisioningArtifactsInput":{
|
2457
|
-
"type":"structure",
|
2458
|
-
"required":["ProductId"],
|
2459
|
-
"members":{
|
2460
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2461
|
-
"ProductId":{"shape":"Id"}
|
2462
|
-
}
|
2463
|
-
},
|
2464
|
-
"ListProvisioningArtifactsOutput":{
|
2465
|
-
"type":"structure",
|
2466
|
-
"members":{
|
2467
|
-
"ProvisioningArtifactDetails":{"shape":"ProvisioningArtifactDetails"},
|
2468
|
-
"NextPageToken":{"shape":"PageToken"}
|
2469
|
-
}
|
2470
|
-
},
|
2471
|
-
"ListRecordHistoryInput":{
|
2472
|
-
"type":"structure",
|
2473
|
-
"members":{
|
2474
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2475
|
-
"AccessLevelFilter":{"shape":"AccessLevelFilter"},
|
2476
|
-
"SearchFilter":{"shape":"ListRecordHistorySearchFilter"},
|
2477
|
-
"PageSize":{"shape":"PageSize"},
|
2478
|
-
"PageToken":{"shape":"PageToken"}
|
2479
|
-
}
|
2480
|
-
},
|
2481
|
-
"ListRecordHistoryOutput":{
|
2482
|
-
"type":"structure",
|
2483
|
-
"members":{
|
2484
|
-
"RecordDetails":{"shape":"RecordDetails"},
|
2485
|
-
"NextPageToken":{"shape":"PageToken"}
|
2486
|
-
}
|
2487
|
-
},
|
2488
|
-
"ListRecordHistorySearchFilter":{
|
2489
|
-
"type":"structure",
|
2490
|
-
"members":{
|
2491
|
-
"Key":{"shape":"SearchFilterKey"},
|
2492
|
-
"Value":{"shape":"SearchFilterValue"}
|
2493
|
-
}
|
2494
|
-
},
|
2495
|
-
"ListResourcesForTagOptionInput":{
|
2496
|
-
"type":"structure",
|
2497
|
-
"required":["TagOptionId"],
|
2498
|
-
"members":{
|
2499
|
-
"TagOptionId":{"shape":"TagOptionId"},
|
2500
|
-
"ResourceType":{"shape":"ResourceType"},
|
2501
|
-
"PageSize":{"shape":"PageSize"},
|
2502
|
-
"PageToken":{"shape":"PageToken"}
|
2503
|
-
}
|
2504
|
-
},
|
2505
|
-
"ListResourcesForTagOptionOutput":{
|
2506
|
-
"type":"structure",
|
2507
|
-
"members":{
|
2508
|
-
"ResourceDetails":{"shape":"ResourceDetails"},
|
2509
|
-
"PageToken":{"shape":"PageToken"}
|
2510
|
-
}
|
2511
|
-
},
|
2512
|
-
"ListServiceActionsForProvisioningArtifactInput":{
|
2513
|
-
"type":"structure",
|
2514
|
-
"required":[
|
2515
|
-
"ProductId",
|
2516
|
-
"ProvisioningArtifactId"
|
2517
|
-
],
|
2518
|
-
"members":{
|
2519
|
-
"ProductId":{"shape":"Id"},
|
2520
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2521
|
-
"PageSize":{"shape":"PageSize"},
|
2522
|
-
"PageToken":{"shape":"PageToken"},
|
2523
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
2524
|
-
}
|
2525
|
-
},
|
2526
|
-
"ListServiceActionsForProvisioningArtifactOutput":{
|
2527
|
-
"type":"structure",
|
2528
|
-
"members":{
|
2529
|
-
"ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
|
2530
|
-
"NextPageToken":{"shape":"PageToken"}
|
2531
|
-
}
|
2532
|
-
},
|
2533
|
-
"ListServiceActionsInput":{
|
2534
|
-
"type":"structure",
|
2535
|
-
"members":{
|
2536
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2537
|
-
"PageSize":{"shape":"PageSize"},
|
2538
|
-
"PageToken":{"shape":"PageToken"}
|
2539
|
-
}
|
2540
|
-
},
|
2541
|
-
"ListServiceActionsOutput":{
|
2542
|
-
"type":"structure",
|
2543
|
-
"members":{
|
2544
|
-
"ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
|
2545
|
-
"NextPageToken":{"shape":"PageToken"}
|
2546
|
-
}
|
2547
|
-
},
|
2548
|
-
"ListStackInstancesForProvisionedProductInput":{
|
2549
|
-
"type":"structure",
|
2550
|
-
"required":["ProvisionedProductId"],
|
2551
|
-
"members":{
|
2552
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2553
|
-
"ProvisionedProductId":{"shape":"Id"},
|
2554
|
-
"PageToken":{"shape":"PageToken"},
|
2555
|
-
"PageSize":{"shape":"PageSize"}
|
2556
|
-
}
|
2557
|
-
},
|
2558
|
-
"ListStackInstancesForProvisionedProductOutput":{
|
2559
|
-
"type":"structure",
|
2560
|
-
"members":{
|
2561
|
-
"StackInstances":{"shape":"StackInstances"},
|
2562
|
-
"NextPageToken":{"shape":"PageToken"}
|
2563
|
-
}
|
2564
|
-
},
|
2565
|
-
"ListTagOptionsFilters":{
|
2566
|
-
"type":"structure",
|
2567
|
-
"members":{
|
2568
|
-
"Key":{"shape":"TagOptionKey"},
|
2569
|
-
"Value":{"shape":"TagOptionValue"},
|
2570
|
-
"Active":{"shape":"TagOptionActive"}
|
2571
|
-
}
|
2572
|
-
},
|
2573
|
-
"ListTagOptionsInput":{
|
2574
|
-
"type":"structure",
|
2575
|
-
"members":{
|
2576
|
-
"Filters":{"shape":"ListTagOptionsFilters"},
|
2577
|
-
"PageSize":{"shape":"PageSize"},
|
2578
|
-
"PageToken":{"shape":"PageToken"}
|
2579
|
-
}
|
2580
|
-
},
|
2581
|
-
"ListTagOptionsOutput":{
|
2582
|
-
"type":"structure",
|
2583
|
-
"members":{
|
2584
|
-
"TagOptionDetails":{"shape":"TagOptionDetails"},
|
2585
|
-
"PageToken":{"shape":"PageToken"}
|
2586
|
-
}
|
2587
|
-
},
|
2588
|
-
"LogicalResourceId":{"type":"string"},
|
2589
|
-
"Message":{"type":"string"},
|
2590
|
-
"Namespaces":{
|
2591
|
-
"type":"list",
|
2592
|
-
"member":{"shape":"AccountId"}
|
2593
|
-
},
|
2594
|
-
"NoEcho":{"type":"boolean"},
|
2595
|
-
"NotificationArn":{
|
2596
|
-
"type":"string",
|
2597
|
-
"max":1224,
|
2598
|
-
"min":1,
|
2599
|
-
"pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
|
2600
|
-
},
|
2601
|
-
"NotificationArns":{
|
2602
|
-
"type":"list",
|
2603
|
-
"member":{"shape":"NotificationArn"},
|
2604
|
-
"max":5
|
2605
|
-
},
|
2606
|
-
"OperationNotSupportedException":{
|
2607
|
-
"type":"structure",
|
2608
|
-
"members":{
|
2609
|
-
},
|
2610
|
-
"exception":true
|
2611
|
-
},
|
2612
|
-
"OrganizationNode":{
|
2613
|
-
"type":"structure",
|
2614
|
-
"members":{
|
2615
|
-
"Type":{"shape":"OrganizationNodeType"},
|
2616
|
-
"Value":{"shape":"OrganizationNodeValue"}
|
2617
|
-
}
|
2618
|
-
},
|
2619
|
-
"OrganizationNodeType":{
|
2620
|
-
"type":"string",
|
2621
|
-
"enum":[
|
2622
|
-
"ORGANIZATION",
|
2623
|
-
"ORGANIZATIONAL_UNIT",
|
2624
|
-
"ACCOUNT"
|
2625
|
-
]
|
2626
|
-
},
|
2627
|
-
"OrganizationNodeValue":{
|
2628
|
-
"type":"string",
|
2629
|
-
"pattern":"(^[0-9]{12}$)|(^arn:aws:organizations::\\d{12}:organization\\/o-[a-z0-9]{10,32})|(^o-[a-z0-9]{10,32}$)|(^arn:aws:organizations::\\d{12}:ou\\/o-[a-z0-9]{10,32}\\/ou-[0-9a-z]{4,32}-[0-9a-z]{8,32}$)|(^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$)"
|
2630
|
-
},
|
2631
|
-
"OrganizationNodes":{
|
2632
|
-
"type":"list",
|
2633
|
-
"member":{"shape":"OrganizationNode"}
|
2634
|
-
},
|
2635
|
-
"OutputKey":{"type":"string"},
|
2636
|
-
"OutputValue":{"type":"string"},
|
2637
|
-
"PageSize":{
|
2638
|
-
"type":"integer",
|
2639
|
-
"max":20,
|
2640
|
-
"min":0
|
2641
|
-
},
|
2642
|
-
"PageToken":{
|
2643
|
-
"type":"string",
|
2644
|
-
"max":2024,
|
2645
|
-
"pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
|
2646
|
-
},
|
2647
|
-
"ParameterConstraints":{
|
2648
|
-
"type":"structure",
|
2649
|
-
"members":{
|
2650
|
-
"AllowedValues":{"shape":"AllowedValues"}
|
2651
|
-
}
|
2652
|
-
},
|
2653
|
-
"ParameterKey":{
|
2654
|
-
"type":"string",
|
2655
|
-
"max":1000,
|
2656
|
-
"min":1
|
2657
|
-
},
|
2658
|
-
"ParameterType":{"type":"string"},
|
2659
|
-
"ParameterValue":{
|
2660
|
-
"type":"string",
|
2661
|
-
"max":4096
|
2662
|
-
},
|
2663
|
-
"PhysicalId":{"type":"string"},
|
2664
|
-
"PhysicalResourceId":{"type":"string"},
|
2665
|
-
"PlanResourceType":{
|
2666
|
-
"type":"string",
|
2667
|
-
"max":256,
|
2668
|
-
"min":1
|
2669
|
-
},
|
2670
|
-
"PortfolioDescription":{
|
2671
|
-
"type":"string",
|
2672
|
-
"max":2000
|
2673
|
-
},
|
2674
|
-
"PortfolioDetail":{
|
2675
|
-
"type":"structure",
|
2676
|
-
"members":{
|
2677
|
-
"Id":{"shape":"Id"},
|
2678
|
-
"ARN":{"shape":"ResourceARN"},
|
2679
|
-
"DisplayName":{"shape":"PortfolioDisplayName"},
|
2680
|
-
"Description":{"shape":"PortfolioDescription"},
|
2681
|
-
"CreatedTime":{"shape":"CreationTime"},
|
2682
|
-
"ProviderName":{"shape":"ProviderName"}
|
2683
|
-
}
|
2684
|
-
},
|
2685
|
-
"PortfolioDetails":{
|
2686
|
-
"type":"list",
|
2687
|
-
"member":{"shape":"PortfolioDetail"}
|
2688
|
-
},
|
2689
|
-
"PortfolioDisplayName":{
|
2690
|
-
"type":"string",
|
2691
|
-
"max":100,
|
2692
|
-
"min":1
|
2693
|
-
},
|
2694
|
-
"PortfolioName":{"type":"string"},
|
2695
|
-
"PortfolioShareType":{
|
2696
|
-
"type":"string",
|
2697
|
-
"enum":[
|
2698
|
-
"IMPORTED",
|
2699
|
-
"AWS_SERVICECATALOG",
|
2700
|
-
"AWS_ORGANIZATIONS"
|
2701
|
-
]
|
2702
|
-
},
|
2703
|
-
"Principal":{
|
2704
|
-
"type":"structure",
|
2705
|
-
"members":{
|
2706
|
-
"PrincipalARN":{"shape":"PrincipalARN"},
|
2707
|
-
"PrincipalType":{"shape":"PrincipalType"}
|
2708
|
-
}
|
2709
|
-
},
|
2710
|
-
"PrincipalARN":{
|
2711
|
-
"type":"string",
|
2712
|
-
"max":1000,
|
2713
|
-
"min":1
|
2714
|
-
},
|
2715
|
-
"PrincipalType":{
|
2716
|
-
"type":"string",
|
2717
|
-
"enum":["IAM"]
|
2718
|
-
},
|
2719
|
-
"Principals":{
|
2720
|
-
"type":"list",
|
2721
|
-
"member":{"shape":"Principal"}
|
2722
|
-
},
|
2723
|
-
"ProductArn":{
|
2724
|
-
"type":"string",
|
2725
|
-
"max":1224,
|
2726
|
-
"min":1,
|
2727
|
-
"pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
|
2728
|
-
},
|
2729
|
-
"ProductSource":{
|
2730
|
-
"type":"string",
|
2731
|
-
"enum":["ACCOUNT"]
|
2732
|
-
},
|
2733
|
-
"ProductType":{
|
2734
|
-
"type":"string",
|
2735
|
-
"enum":[
|
2736
|
-
"CLOUD_FORMATION_TEMPLATE",
|
2737
|
-
"MARKETPLACE"
|
2738
|
-
],
|
2739
|
-
"max":8191
|
2740
|
-
},
|
2741
|
-
"ProductViewAggregationType":{"type":"string"},
|
2742
|
-
"ProductViewAggregationValue":{
|
2743
|
-
"type":"structure",
|
2744
|
-
"members":{
|
2745
|
-
"Value":{"shape":"AttributeValue"},
|
2746
|
-
"ApproximateCount":{"shape":"ApproximateCount"}
|
2747
|
-
}
|
2748
|
-
},
|
2749
|
-
"ProductViewAggregationValues":{
|
2750
|
-
"type":"list",
|
2751
|
-
"member":{"shape":"ProductViewAggregationValue"}
|
2752
|
-
},
|
2753
|
-
"ProductViewAggregations":{
|
2754
|
-
"type":"map",
|
2755
|
-
"key":{"shape":"ProductViewAggregationType"},
|
2756
|
-
"value":{"shape":"ProductViewAggregationValues"}
|
2757
|
-
},
|
2758
|
-
"ProductViewDetail":{
|
2759
|
-
"type":"structure",
|
2760
|
-
"members":{
|
2761
|
-
"ProductViewSummary":{"shape":"ProductViewSummary"},
|
2762
|
-
"Status":{"shape":"Status"},
|
2763
|
-
"ProductARN":{"shape":"ResourceARN"},
|
2764
|
-
"CreatedTime":{"shape":"CreatedTime"}
|
2765
|
-
}
|
2766
|
-
},
|
2767
|
-
"ProductViewDetails":{
|
2768
|
-
"type":"list",
|
2769
|
-
"member":{"shape":"ProductViewDetail"}
|
2770
|
-
},
|
2771
|
-
"ProductViewDistributor":{"type":"string"},
|
2772
|
-
"ProductViewFilterBy":{
|
2773
|
-
"type":"string",
|
2774
|
-
"enum":[
|
2775
|
-
"FullTextSearch",
|
2776
|
-
"Owner",
|
2777
|
-
"ProductType",
|
2778
|
-
"SourceProductId"
|
2779
|
-
]
|
2780
|
-
},
|
2781
|
-
"ProductViewFilterValue":{"type":"string"},
|
2782
|
-
"ProductViewFilterValues":{
|
2783
|
-
"type":"list",
|
2784
|
-
"member":{"shape":"ProductViewFilterValue"}
|
2785
|
-
},
|
2786
|
-
"ProductViewFilters":{
|
2787
|
-
"type":"map",
|
2788
|
-
"key":{"shape":"ProductViewFilterBy"},
|
2789
|
-
"value":{"shape":"ProductViewFilterValues"}
|
2790
|
-
},
|
2791
|
-
"ProductViewName":{
|
2792
|
-
"type":"string",
|
2793
|
-
"max":8191
|
2794
|
-
},
|
2795
|
-
"ProductViewOwner":{
|
2796
|
-
"type":"string",
|
2797
|
-
"max":8191
|
2798
|
-
},
|
2799
|
-
"ProductViewShortDescription":{
|
2800
|
-
"type":"string",
|
2801
|
-
"max":8191
|
2802
|
-
},
|
2803
|
-
"ProductViewSortBy":{
|
2804
|
-
"type":"string",
|
2805
|
-
"enum":[
|
2806
|
-
"Title",
|
2807
|
-
"VersionCount",
|
2808
|
-
"CreationDate"
|
2809
|
-
]
|
2810
|
-
},
|
2811
|
-
"ProductViewSummaries":{
|
2812
|
-
"type":"list",
|
2813
|
-
"member":{"shape":"ProductViewSummary"}
|
2814
|
-
},
|
2815
|
-
"ProductViewSummary":{
|
2816
|
-
"type":"structure",
|
2817
|
-
"members":{
|
2818
|
-
"Id":{"shape":"Id"},
|
2819
|
-
"ProductId":{"shape":"Id"},
|
2820
|
-
"Name":{"shape":"ProductViewName"},
|
2821
|
-
"Owner":{"shape":"ProductViewOwner"},
|
2822
|
-
"ShortDescription":{"shape":"ProductViewShortDescription"},
|
2823
|
-
"Type":{"shape":"ProductType"},
|
2824
|
-
"Distributor":{"shape":"ProductViewDistributor"},
|
2825
|
-
"HasDefaultPath":{"shape":"HasDefaultPath"},
|
2826
|
-
"SupportEmail":{"shape":"SupportEmail"},
|
2827
|
-
"SupportDescription":{"shape":"SupportDescription"},
|
2828
|
-
"SupportUrl":{"shape":"SupportUrl"}
|
2829
|
-
}
|
2830
|
-
},
|
2831
|
-
"PropertyKey":{
|
2832
|
-
"type":"string",
|
2833
|
-
"enum":["OWNER"],
|
2834
|
-
"max":128,
|
2835
|
-
"min":1
|
2836
|
-
},
|
2837
|
-
"PropertyName":{"type":"string"},
|
2838
|
-
"PropertyValue":{
|
2839
|
-
"type":"string",
|
2840
|
-
"max":1024,
|
2841
|
-
"min":1
|
2842
|
-
},
|
2843
|
-
"ProviderName":{
|
2844
|
-
"type":"string",
|
2845
|
-
"max":50,
|
2846
|
-
"min":1
|
2847
|
-
},
|
2848
|
-
"ProvisionProductInput":{
|
2849
|
-
"type":"structure",
|
2850
|
-
"required":[
|
2851
|
-
"ProductId",
|
2852
|
-
"ProvisioningArtifactId",
|
2853
|
-
"ProvisionedProductName",
|
2854
|
-
"ProvisionToken"
|
2855
|
-
],
|
2856
|
-
"members":{
|
2857
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
2858
|
-
"ProductId":{"shape":"Id"},
|
2859
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2860
|
-
"PathId":{"shape":"Id"},
|
2861
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductName"},
|
2862
|
-
"ProvisioningParameters":{"shape":"ProvisioningParameters"},
|
2863
|
-
"ProvisioningPreferences":{"shape":"ProvisioningPreferences"},
|
2864
|
-
"Tags":{"shape":"Tags"},
|
2865
|
-
"NotificationArns":{"shape":"NotificationArns"},
|
2866
|
-
"ProvisionToken":{
|
2867
|
-
"shape":"IdempotencyToken",
|
2868
|
-
"idempotencyToken":true
|
2869
|
-
}
|
2870
|
-
}
|
2871
|
-
},
|
2872
|
-
"ProvisionProductOutput":{
|
2873
|
-
"type":"structure",
|
2874
|
-
"members":{
|
2875
|
-
"RecordDetail":{"shape":"RecordDetail"}
|
2876
|
-
}
|
2877
|
-
},
|
2878
|
-
"ProvisionedProductAttribute":{
|
2879
|
-
"type":"structure",
|
2880
|
-
"members":{
|
2881
|
-
"Name":{"shape":"ProvisionedProductNameOrArn"},
|
2882
|
-
"Arn":{"shape":"ProvisionedProductNameOrArn"},
|
2883
|
-
"Type":{"shape":"ProvisionedProductType"},
|
2884
|
-
"Id":{"shape":"Id"},
|
2885
|
-
"Status":{"shape":"ProvisionedProductStatus"},
|
2886
|
-
"StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
|
2887
|
-
"CreatedTime":{"shape":"CreatedTime"},
|
2888
|
-
"IdempotencyToken":{"shape":"IdempotencyToken"},
|
2889
|
-
"LastRecordId":{"shape":"Id"},
|
2890
|
-
"Tags":{"shape":"Tags"},
|
2891
|
-
"PhysicalId":{"shape":"PhysicalId"},
|
2892
|
-
"ProductId":{"shape":"Id"},
|
2893
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2894
|
-
"UserArn":{"shape":"UserArn"},
|
2895
|
-
"UserArnSession":{"shape":"UserArnSession"}
|
2896
|
-
}
|
2897
|
-
},
|
2898
|
-
"ProvisionedProductAttributes":{
|
2899
|
-
"type":"list",
|
2900
|
-
"member":{"shape":"ProvisionedProductAttribute"}
|
2901
|
-
},
|
2902
|
-
"ProvisionedProductDetail":{
|
2903
|
-
"type":"structure",
|
2904
|
-
"members":{
|
2905
|
-
"Name":{"shape":"ProvisionedProductNameOrArn"},
|
2906
|
-
"Arn":{"shape":"ProvisionedProductNameOrArn"},
|
2907
|
-
"Type":{"shape":"ProvisionedProductType"},
|
2908
|
-
"Id":{"shape":"ProvisionedProductId"},
|
2909
|
-
"Status":{"shape":"ProvisionedProductStatus"},
|
2910
|
-
"StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
|
2911
|
-
"CreatedTime":{"shape":"CreatedTime"},
|
2912
|
-
"IdempotencyToken":{"shape":"IdempotencyToken"},
|
2913
|
-
"LastRecordId":{"shape":"LastRequestId"},
|
2914
|
-
"ProductId":{"shape":"Id"},
|
2915
|
-
"ProvisioningArtifactId":{"shape":"Id"}
|
2916
|
-
}
|
2917
|
-
},
|
2918
|
-
"ProvisionedProductDetails":{
|
2919
|
-
"type":"list",
|
2920
|
-
"member":{"shape":"ProvisionedProductDetail"}
|
2921
|
-
},
|
2922
|
-
"ProvisionedProductFilters":{
|
2923
|
-
"type":"map",
|
2924
|
-
"key":{"shape":"ProvisionedProductViewFilterBy"},
|
2925
|
-
"value":{"shape":"ProvisionedProductViewFilterValues"}
|
2926
|
-
},
|
2927
|
-
"ProvisionedProductId":{"type":"string"},
|
2928
|
-
"ProvisionedProductName":{
|
2929
|
-
"type":"string",
|
2930
|
-
"max":128,
|
2931
|
-
"min":1,
|
2932
|
-
"pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]*"
|
2933
|
-
},
|
2934
|
-
"ProvisionedProductNameOrArn":{
|
2935
|
-
"type":"string",
|
2936
|
-
"max":1224,
|
2937
|
-
"min":1,
|
2938
|
-
"pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]{0,127}|arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
|
2939
|
-
},
|
2940
|
-
"ProvisionedProductPlanDetails":{
|
2941
|
-
"type":"structure",
|
2942
|
-
"members":{
|
2943
|
-
"CreatedTime":{"shape":"CreatedTime"},
|
2944
|
-
"PathId":{"shape":"Id"},
|
2945
|
-
"ProductId":{"shape":"Id"},
|
2946
|
-
"PlanName":{"shape":"ProvisionedProductPlanName"},
|
2947
|
-
"PlanId":{"shape":"Id"},
|
2948
|
-
"ProvisionProductId":{"shape":"Id"},
|
2949
|
-
"ProvisionProductName":{"shape":"ProvisionedProductName"},
|
2950
|
-
"PlanType":{"shape":"ProvisionedProductPlanType"},
|
2951
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
2952
|
-
"Status":{"shape":"ProvisionedProductPlanStatus"},
|
2953
|
-
"UpdatedTime":{"shape":"UpdatedTime"},
|
2954
|
-
"NotificationArns":{"shape":"NotificationArns"},
|
2955
|
-
"ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
|
2956
|
-
"Tags":{"shape":"Tags"},
|
2957
|
-
"StatusMessage":{"shape":"StatusMessage"}
|
2958
|
-
}
|
2959
|
-
},
|
2960
|
-
"ProvisionedProductPlanName":{"type":"string"},
|
2961
|
-
"ProvisionedProductPlanStatus":{
|
2962
|
-
"type":"string",
|
2963
|
-
"enum":[
|
2964
|
-
"CREATE_IN_PROGRESS",
|
2965
|
-
"CREATE_SUCCESS",
|
2966
|
-
"CREATE_FAILED",
|
2967
|
-
"EXECUTE_IN_PROGRESS",
|
2968
|
-
"EXECUTE_SUCCESS",
|
2969
|
-
"EXECUTE_FAILED"
|
2970
|
-
]
|
2971
|
-
},
|
2972
|
-
"ProvisionedProductPlanSummary":{
|
2973
|
-
"type":"structure",
|
2974
|
-
"members":{
|
2975
|
-
"PlanName":{"shape":"ProvisionedProductPlanName"},
|
2976
|
-
"PlanId":{"shape":"Id"},
|
2977
|
-
"ProvisionProductId":{"shape":"Id"},
|
2978
|
-
"ProvisionProductName":{"shape":"ProvisionedProductName"},
|
2979
|
-
"PlanType":{"shape":"ProvisionedProductPlanType"},
|
2980
|
-
"ProvisioningArtifactId":{"shape":"Id"}
|
2981
|
-
}
|
2982
|
-
},
|
2983
|
-
"ProvisionedProductPlanType":{
|
2984
|
-
"type":"string",
|
2985
|
-
"enum":["CLOUDFORMATION"]
|
2986
|
-
},
|
2987
|
-
"ProvisionedProductPlans":{
|
2988
|
-
"type":"list",
|
2989
|
-
"member":{"shape":"ProvisionedProductPlanSummary"}
|
2990
|
-
},
|
2991
|
-
"ProvisionedProductProperties":{
|
2992
|
-
"type":"map",
|
2993
|
-
"key":{"shape":"PropertyKey"},
|
2994
|
-
"value":{"shape":"PropertyValue"},
|
2995
|
-
"max":100,
|
2996
|
-
"min":1
|
2997
|
-
},
|
2998
|
-
"ProvisionedProductStatus":{
|
2999
|
-
"type":"string",
|
3000
|
-
"enum":[
|
3001
|
-
"AVAILABLE",
|
3002
|
-
"UNDER_CHANGE",
|
3003
|
-
"TAINTED",
|
3004
|
-
"ERROR",
|
3005
|
-
"PLAN_IN_PROGRESS"
|
3006
|
-
]
|
3007
|
-
},
|
3008
|
-
"ProvisionedProductStatusMessage":{"type":"string"},
|
3009
|
-
"ProvisionedProductType":{"type":"string"},
|
3010
|
-
"ProvisionedProductViewFilterBy":{
|
3011
|
-
"type":"string",
|
3012
|
-
"enum":["SearchQuery"]
|
3013
|
-
},
|
3014
|
-
"ProvisionedProductViewFilterValue":{"type":"string"},
|
3015
|
-
"ProvisionedProductViewFilterValues":{
|
3016
|
-
"type":"list",
|
3017
|
-
"member":{"shape":"ProvisionedProductViewFilterValue"}
|
3018
|
-
},
|
3019
|
-
"ProvisioningArtifact":{
|
3020
|
-
"type":"structure",
|
3021
|
-
"members":{
|
3022
|
-
"Id":{"shape":"Id"},
|
3023
|
-
"Name":{"shape":"ProvisioningArtifactName"},
|
3024
|
-
"Description":{"shape":"ProvisioningArtifactDescription"},
|
3025
|
-
"CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
|
3026
|
-
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
|
3027
|
-
}
|
3028
|
-
},
|
3029
|
-
"ProvisioningArtifactActive":{"type":"boolean"},
|
3030
|
-
"ProvisioningArtifactCreatedTime":{"type":"timestamp"},
|
3031
|
-
"ProvisioningArtifactDescription":{"type":"string"},
|
3032
|
-
"ProvisioningArtifactDetail":{
|
3033
|
-
"type":"structure",
|
3034
|
-
"members":{
|
3035
|
-
"Id":{"shape":"Id"},
|
3036
|
-
"Name":{"shape":"ProvisioningArtifactName"},
|
3037
|
-
"Description":{"shape":"ProvisioningArtifactName"},
|
3038
|
-
"Type":{"shape":"ProvisioningArtifactType"},
|
3039
|
-
"CreatedTime":{"shape":"CreationTime"},
|
3040
|
-
"Active":{"shape":"ProvisioningArtifactActive"},
|
3041
|
-
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
|
3042
|
-
}
|
3043
|
-
},
|
3044
|
-
"ProvisioningArtifactDetails":{
|
3045
|
-
"type":"list",
|
3046
|
-
"member":{"shape":"ProvisioningArtifactDetail"}
|
3047
|
-
},
|
3048
|
-
"ProvisioningArtifactGuidance":{
|
3049
|
-
"type":"string",
|
3050
|
-
"enum":[
|
3051
|
-
"DEFAULT",
|
3052
|
-
"DEPRECATED"
|
3053
|
-
]
|
3054
|
-
},
|
3055
|
-
"ProvisioningArtifactInfo":{
|
3056
|
-
"type":"map",
|
3057
|
-
"key":{"shape":"ProvisioningArtifactInfoKey"},
|
3058
|
-
"value":{"shape":"ProvisioningArtifactInfoValue"},
|
3059
|
-
"max":100,
|
3060
|
-
"min":1
|
3061
|
-
},
|
3062
|
-
"ProvisioningArtifactInfoKey":{"type":"string"},
|
3063
|
-
"ProvisioningArtifactInfoValue":{"type":"string"},
|
3064
|
-
"ProvisioningArtifactName":{"type":"string"},
|
3065
|
-
"ProvisioningArtifactParameter":{
|
3066
|
-
"type":"structure",
|
3067
|
-
"members":{
|
3068
|
-
"ParameterKey":{"shape":"ParameterKey"},
|
3069
|
-
"DefaultValue":{"shape":"DefaultValue"},
|
3070
|
-
"ParameterType":{"shape":"ParameterType"},
|
3071
|
-
"IsNoEcho":{"shape":"NoEcho"},
|
3072
|
-
"Description":{"shape":"Description"},
|
3073
|
-
"ParameterConstraints":{"shape":"ParameterConstraints"}
|
3074
|
-
}
|
3075
|
-
},
|
3076
|
-
"ProvisioningArtifactParameters":{
|
3077
|
-
"type":"list",
|
3078
|
-
"member":{"shape":"ProvisioningArtifactParameter"}
|
3079
|
-
},
|
3080
|
-
"ProvisioningArtifactPreferences":{
|
3081
|
-
"type":"structure",
|
3082
|
-
"members":{
|
3083
|
-
"StackSetAccounts":{"shape":"StackSetAccounts"},
|
3084
|
-
"StackSetRegions":{"shape":"StackSetRegions"}
|
3085
|
-
}
|
3086
|
-
},
|
3087
|
-
"ProvisioningArtifactProperties":{
|
3088
|
-
"type":"structure",
|
3089
|
-
"required":["Info"],
|
3090
|
-
"members":{
|
3091
|
-
"Name":{"shape":"ProvisioningArtifactName"},
|
3092
|
-
"Description":{"shape":"ProvisioningArtifactDescription"},
|
3093
|
-
"Info":{"shape":"ProvisioningArtifactInfo"},
|
3094
|
-
"Type":{"shape":"ProvisioningArtifactType"},
|
3095
|
-
"DisableTemplateValidation":{"shape":"DisableTemplateValidation"}
|
3096
|
-
}
|
3097
|
-
},
|
3098
|
-
"ProvisioningArtifactPropertyName":{
|
3099
|
-
"type":"string",
|
3100
|
-
"enum":["Id"]
|
3101
|
-
},
|
3102
|
-
"ProvisioningArtifactPropertyValue":{"type":"string"},
|
3103
|
-
"ProvisioningArtifactSummaries":{
|
3104
|
-
"type":"list",
|
3105
|
-
"member":{"shape":"ProvisioningArtifactSummary"}
|
3106
|
-
},
|
3107
|
-
"ProvisioningArtifactSummary":{
|
3108
|
-
"type":"structure",
|
3109
|
-
"members":{
|
3110
|
-
"Id":{"shape":"Id"},
|
3111
|
-
"Name":{"shape":"ProvisioningArtifactName"},
|
3112
|
-
"Description":{"shape":"ProvisioningArtifactDescription"},
|
3113
|
-
"CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
|
3114
|
-
"ProvisioningArtifactMetadata":{"shape":"ProvisioningArtifactInfo"}
|
3115
|
-
}
|
3116
|
-
},
|
3117
|
-
"ProvisioningArtifactType":{
|
3118
|
-
"type":"string",
|
3119
|
-
"enum":[
|
3120
|
-
"CLOUD_FORMATION_TEMPLATE",
|
3121
|
-
"MARKETPLACE_AMI",
|
3122
|
-
"MARKETPLACE_CAR"
|
3123
|
-
]
|
3124
|
-
},
|
3125
|
-
"ProvisioningArtifactView":{
|
3126
|
-
"type":"structure",
|
3127
|
-
"members":{
|
3128
|
-
"ProductViewSummary":{"shape":"ProductViewSummary"},
|
3129
|
-
"ProvisioningArtifact":{"shape":"ProvisioningArtifact"}
|
3130
|
-
}
|
3131
|
-
},
|
3132
|
-
"ProvisioningArtifactViews":{
|
3133
|
-
"type":"list",
|
3134
|
-
"member":{"shape":"ProvisioningArtifactView"}
|
3135
|
-
},
|
3136
|
-
"ProvisioningArtifacts":{
|
3137
|
-
"type":"list",
|
3138
|
-
"member":{"shape":"ProvisioningArtifact"}
|
3139
|
-
},
|
3140
|
-
"ProvisioningParameter":{
|
3141
|
-
"type":"structure",
|
3142
|
-
"members":{
|
3143
|
-
"Key":{"shape":"ParameterKey"},
|
3144
|
-
"Value":{"shape":"ParameterValue"}
|
3145
|
-
}
|
3146
|
-
},
|
3147
|
-
"ProvisioningParameters":{
|
3148
|
-
"type":"list",
|
3149
|
-
"member":{"shape":"ProvisioningParameter"}
|
3150
|
-
},
|
3151
|
-
"ProvisioningPreferences":{
|
3152
|
-
"type":"structure",
|
3153
|
-
"members":{
|
3154
|
-
"StackSetAccounts":{"shape":"StackSetAccounts"},
|
3155
|
-
"StackSetRegions":{"shape":"StackSetRegions"},
|
3156
|
-
"StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
|
3157
|
-
"StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
|
3158
|
-
"StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
|
3159
|
-
"StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"}
|
3160
|
-
}
|
3161
|
-
},
|
3162
|
-
"RecordDetail":{
|
3163
|
-
"type":"structure",
|
3164
|
-
"members":{
|
3165
|
-
"RecordId":{"shape":"Id"},
|
3166
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductName"},
|
3167
|
-
"Status":{"shape":"RecordStatus"},
|
3168
|
-
"CreatedTime":{"shape":"CreatedTime"},
|
3169
|
-
"UpdatedTime":{"shape":"UpdatedTime"},
|
3170
|
-
"ProvisionedProductType":{"shape":"ProvisionedProductType"},
|
3171
|
-
"RecordType":{"shape":"RecordType"},
|
3172
|
-
"ProvisionedProductId":{"shape":"Id"},
|
3173
|
-
"ProductId":{"shape":"Id"},
|
3174
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
3175
|
-
"PathId":{"shape":"Id"},
|
3176
|
-
"RecordErrors":{"shape":"RecordErrors"},
|
3177
|
-
"RecordTags":{"shape":"RecordTags"}
|
3178
|
-
}
|
3179
|
-
},
|
3180
|
-
"RecordDetails":{
|
3181
|
-
"type":"list",
|
3182
|
-
"member":{"shape":"RecordDetail"}
|
3183
|
-
},
|
3184
|
-
"RecordError":{
|
3185
|
-
"type":"structure",
|
3186
|
-
"members":{
|
3187
|
-
"Code":{"shape":"ErrorCode"},
|
3188
|
-
"Description":{"shape":"ErrorDescription"}
|
3189
|
-
}
|
3190
|
-
},
|
3191
|
-
"RecordErrors":{
|
3192
|
-
"type":"list",
|
3193
|
-
"member":{"shape":"RecordError"}
|
3194
|
-
},
|
3195
|
-
"RecordOutput":{
|
3196
|
-
"type":"structure",
|
3197
|
-
"members":{
|
3198
|
-
"OutputKey":{"shape":"OutputKey"},
|
3199
|
-
"OutputValue":{"shape":"OutputValue"},
|
3200
|
-
"Description":{"shape":"Description"}
|
3201
|
-
}
|
3202
|
-
},
|
3203
|
-
"RecordOutputs":{
|
3204
|
-
"type":"list",
|
3205
|
-
"member":{"shape":"RecordOutput"}
|
3206
|
-
},
|
3207
|
-
"RecordStatus":{
|
3208
|
-
"type":"string",
|
3209
|
-
"enum":[
|
3210
|
-
"CREATED",
|
3211
|
-
"IN_PROGRESS",
|
3212
|
-
"IN_PROGRESS_IN_ERROR",
|
3213
|
-
"SUCCEEDED",
|
3214
|
-
"FAILED"
|
3215
|
-
]
|
3216
|
-
},
|
3217
|
-
"RecordTag":{
|
3218
|
-
"type":"structure",
|
3219
|
-
"members":{
|
3220
|
-
"Key":{"shape":"RecordTagKey"},
|
3221
|
-
"Value":{"shape":"RecordTagValue"}
|
3222
|
-
}
|
3223
|
-
},
|
3224
|
-
"RecordTagKey":{
|
3225
|
-
"type":"string",
|
3226
|
-
"max":128,
|
3227
|
-
"min":1,
|
3228
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
|
3229
|
-
},
|
3230
|
-
"RecordTagValue":{
|
3231
|
-
"type":"string",
|
3232
|
-
"max":256,
|
3233
|
-
"min":1,
|
3234
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
|
3235
|
-
},
|
3236
|
-
"RecordTags":{
|
3237
|
-
"type":"list",
|
3238
|
-
"member":{"shape":"RecordTag"},
|
3239
|
-
"max":50
|
3240
|
-
},
|
3241
|
-
"RecordType":{"type":"string"},
|
3242
|
-
"Region":{"type":"string"},
|
3243
|
-
"RejectPortfolioShareInput":{
|
3244
|
-
"type":"structure",
|
3245
|
-
"required":["PortfolioId"],
|
3246
|
-
"members":{
|
3247
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3248
|
-
"PortfolioId":{"shape":"Id"},
|
3249
|
-
"PortfolioShareType":{"shape":"PortfolioShareType"}
|
3250
|
-
}
|
3251
|
-
},
|
3252
|
-
"RejectPortfolioShareOutput":{
|
3253
|
-
"type":"structure",
|
3254
|
-
"members":{
|
3255
|
-
}
|
3256
|
-
},
|
3257
|
-
"Replacement":{
|
3258
|
-
"type":"string",
|
3259
|
-
"enum":[
|
3260
|
-
"TRUE",
|
3261
|
-
"FALSE",
|
3262
|
-
"CONDITIONAL"
|
3263
|
-
]
|
3264
|
-
},
|
3265
|
-
"RequiresRecreation":{
|
3266
|
-
"type":"string",
|
3267
|
-
"enum":[
|
3268
|
-
"NEVER",
|
3269
|
-
"CONDITIONALLY",
|
3270
|
-
"ALWAYS"
|
3271
|
-
]
|
3272
|
-
},
|
3273
|
-
"ResourceARN":{
|
3274
|
-
"type":"string",
|
3275
|
-
"max":150,
|
3276
|
-
"min":1
|
3277
|
-
},
|
3278
|
-
"ResourceAttribute":{
|
3279
|
-
"type":"string",
|
3280
|
-
"enum":[
|
3281
|
-
"PROPERTIES",
|
3282
|
-
"METADATA",
|
3283
|
-
"CREATIONPOLICY",
|
3284
|
-
"UPDATEPOLICY",
|
3285
|
-
"DELETIONPOLICY",
|
3286
|
-
"TAGS"
|
3287
|
-
]
|
3288
|
-
},
|
3289
|
-
"ResourceChange":{
|
3290
|
-
"type":"structure",
|
3291
|
-
"members":{
|
3292
|
-
"Action":{"shape":"ChangeAction"},
|
3293
|
-
"LogicalResourceId":{"shape":"LogicalResourceId"},
|
3294
|
-
"PhysicalResourceId":{"shape":"PhysicalResourceId"},
|
3295
|
-
"ResourceType":{"shape":"PlanResourceType"},
|
3296
|
-
"Replacement":{"shape":"Replacement"},
|
3297
|
-
"Scope":{"shape":"Scope"},
|
3298
|
-
"Details":{"shape":"ResourceChangeDetails"}
|
3299
|
-
}
|
3300
|
-
},
|
3301
|
-
"ResourceChangeDetail":{
|
3302
|
-
"type":"structure",
|
3303
|
-
"members":{
|
3304
|
-
"Target":{"shape":"ResourceTargetDefinition"},
|
3305
|
-
"Evaluation":{"shape":"EvaluationType"},
|
3306
|
-
"CausingEntity":{"shape":"CausingEntity"}
|
3307
|
-
}
|
3308
|
-
},
|
3309
|
-
"ResourceChangeDetails":{
|
3310
|
-
"type":"list",
|
3311
|
-
"member":{"shape":"ResourceChangeDetail"}
|
3312
|
-
},
|
3313
|
-
"ResourceChanges":{
|
3314
|
-
"type":"list",
|
3315
|
-
"member":{"shape":"ResourceChange"}
|
3316
|
-
},
|
3317
|
-
"ResourceDetail":{
|
3318
|
-
"type":"structure",
|
3319
|
-
"members":{
|
3320
|
-
"Id":{"shape":"ResourceDetailId"},
|
3321
|
-
"ARN":{"shape":"ResourceDetailARN"},
|
3322
|
-
"Name":{"shape":"ResourceDetailName"},
|
3323
|
-
"Description":{"shape":"ResourceDetailDescription"},
|
3324
|
-
"CreatedTime":{"shape":"ResourceDetailCreatedTime"}
|
3325
|
-
}
|
3326
|
-
},
|
3327
|
-
"ResourceDetailARN":{"type":"string"},
|
3328
|
-
"ResourceDetailCreatedTime":{"type":"timestamp"},
|
3329
|
-
"ResourceDetailDescription":{"type":"string"},
|
3330
|
-
"ResourceDetailId":{"type":"string"},
|
3331
|
-
"ResourceDetailName":{"type":"string"},
|
3332
|
-
"ResourceDetails":{
|
3333
|
-
"type":"list",
|
3334
|
-
"member":{"shape":"ResourceDetail"}
|
3335
|
-
},
|
3336
|
-
"ResourceId":{"type":"string"},
|
3337
|
-
"ResourceInUseException":{
|
3338
|
-
"type":"structure",
|
3339
|
-
"members":{
|
3340
|
-
},
|
3341
|
-
"exception":true
|
3342
|
-
},
|
3343
|
-
"ResourceNotFoundException":{
|
3344
|
-
"type":"structure",
|
3345
|
-
"members":{
|
3346
|
-
},
|
3347
|
-
"exception":true
|
3348
|
-
},
|
3349
|
-
"ResourceTargetDefinition":{
|
3350
|
-
"type":"structure",
|
3351
|
-
"members":{
|
3352
|
-
"Attribute":{"shape":"ResourceAttribute"},
|
3353
|
-
"Name":{"shape":"PropertyName"},
|
3354
|
-
"RequiresRecreation":{"shape":"RequiresRecreation"}
|
3355
|
-
}
|
3356
|
-
},
|
3357
|
-
"ResourceType":{"type":"string"},
|
3358
|
-
"ScanProvisionedProductsInput":{
|
3359
|
-
"type":"structure",
|
3360
|
-
"members":{
|
3361
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3362
|
-
"AccessLevelFilter":{"shape":"AccessLevelFilter"},
|
3363
|
-
"PageSize":{"shape":"PageSize"},
|
3364
|
-
"PageToken":{"shape":"PageToken"}
|
3365
|
-
}
|
3366
|
-
},
|
3367
|
-
"ScanProvisionedProductsOutput":{
|
3368
|
-
"type":"structure",
|
3369
|
-
"members":{
|
3370
|
-
"ProvisionedProducts":{"shape":"ProvisionedProductDetails"},
|
3371
|
-
"NextPageToken":{"shape":"PageToken"}
|
3372
|
-
}
|
3373
|
-
},
|
3374
|
-
"Scope":{
|
3375
|
-
"type":"list",
|
3376
|
-
"member":{"shape":"ResourceAttribute"}
|
3377
|
-
},
|
3378
|
-
"SearchFilterKey":{"type":"string"},
|
3379
|
-
"SearchFilterValue":{"type":"string"},
|
3380
|
-
"SearchProductsAsAdminInput":{
|
3381
|
-
"type":"structure",
|
3382
|
-
"members":{
|
3383
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3384
|
-
"PortfolioId":{"shape":"Id"},
|
3385
|
-
"Filters":{"shape":"ProductViewFilters"},
|
3386
|
-
"SortBy":{"shape":"ProductViewSortBy"},
|
3387
|
-
"SortOrder":{"shape":"SortOrder"},
|
3388
|
-
"PageToken":{"shape":"PageToken"},
|
3389
|
-
"PageSize":{"shape":"PageSize"},
|
3390
|
-
"ProductSource":{"shape":"ProductSource"}
|
3391
|
-
}
|
3392
|
-
},
|
3393
|
-
"SearchProductsAsAdminOutput":{
|
3394
|
-
"type":"structure",
|
3395
|
-
"members":{
|
3396
|
-
"ProductViewDetails":{"shape":"ProductViewDetails"},
|
3397
|
-
"NextPageToken":{"shape":"PageToken"}
|
3398
|
-
}
|
3399
|
-
},
|
3400
|
-
"SearchProductsInput":{
|
3401
|
-
"type":"structure",
|
3402
|
-
"members":{
|
3403
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3404
|
-
"Filters":{"shape":"ProductViewFilters"},
|
3405
|
-
"PageSize":{"shape":"PageSize"},
|
3406
|
-
"SortBy":{"shape":"ProductViewSortBy"},
|
3407
|
-
"SortOrder":{"shape":"SortOrder"},
|
3408
|
-
"PageToken":{"shape":"PageToken"}
|
3409
|
-
}
|
3410
|
-
},
|
3411
|
-
"SearchProductsOutput":{
|
3412
|
-
"type":"structure",
|
3413
|
-
"members":{
|
3414
|
-
"ProductViewSummaries":{"shape":"ProductViewSummaries"},
|
3415
|
-
"ProductViewAggregations":{"shape":"ProductViewAggregations"},
|
3416
|
-
"NextPageToken":{"shape":"PageToken"}
|
3417
|
-
}
|
3418
|
-
},
|
3419
|
-
"SearchProvisionedProductsInput":{
|
3420
|
-
"type":"structure",
|
3421
|
-
"members":{
|
3422
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3423
|
-
"AccessLevelFilter":{"shape":"AccessLevelFilter"},
|
3424
|
-
"Filters":{"shape":"ProvisionedProductFilters"},
|
3425
|
-
"SortBy":{"shape":"SortField"},
|
3426
|
-
"SortOrder":{"shape":"SortOrder"},
|
3427
|
-
"PageSize":{"shape":"SearchProvisionedProductsPageSize"},
|
3428
|
-
"PageToken":{"shape":"PageToken"}
|
3429
|
-
}
|
3430
|
-
},
|
3431
|
-
"SearchProvisionedProductsOutput":{
|
3432
|
-
"type":"structure",
|
3433
|
-
"members":{
|
3434
|
-
"ProvisionedProducts":{"shape":"ProvisionedProductAttributes"},
|
3435
|
-
"TotalResultsCount":{"shape":"TotalResultsCount"},
|
3436
|
-
"NextPageToken":{"shape":"PageToken"}
|
3437
|
-
}
|
3438
|
-
},
|
3439
|
-
"SearchProvisionedProductsPageSize":{
|
3440
|
-
"type":"integer",
|
3441
|
-
"max":100,
|
3442
|
-
"min":0
|
3443
|
-
},
|
3444
|
-
"ServiceActionAssociation":{
|
3445
|
-
"type":"structure",
|
3446
|
-
"required":[
|
3447
|
-
"ServiceActionId",
|
3448
|
-
"ProductId",
|
3449
|
-
"ProvisioningArtifactId"
|
3450
|
-
],
|
3451
|
-
"members":{
|
3452
|
-
"ServiceActionId":{"shape":"Id"},
|
3453
|
-
"ProductId":{"shape":"Id"},
|
3454
|
-
"ProvisioningArtifactId":{"shape":"Id"}
|
3455
|
-
}
|
3456
|
-
},
|
3457
|
-
"ServiceActionAssociationErrorCode":{
|
3458
|
-
"type":"string",
|
3459
|
-
"enum":[
|
3460
|
-
"DUPLICATE_RESOURCE",
|
3461
|
-
"INTERNAL_FAILURE",
|
3462
|
-
"LIMIT_EXCEEDED",
|
3463
|
-
"RESOURCE_NOT_FOUND",
|
3464
|
-
"THROTTLING"
|
3465
|
-
]
|
3466
|
-
},
|
3467
|
-
"ServiceActionAssociationErrorMessage":{
|
3468
|
-
"type":"string",
|
3469
|
-
"max":1024,
|
3470
|
-
"min":1
|
3471
|
-
},
|
3472
|
-
"ServiceActionAssociations":{
|
3473
|
-
"type":"list",
|
3474
|
-
"member":{"shape":"ServiceActionAssociation"},
|
3475
|
-
"max":50,
|
3476
|
-
"min":1
|
3477
|
-
},
|
3478
|
-
"ServiceActionDefinitionKey":{
|
3479
|
-
"type":"string",
|
3480
|
-
"enum":[
|
3481
|
-
"Name",
|
3482
|
-
"Version",
|
3483
|
-
"AssumeRole",
|
3484
|
-
"Parameters"
|
3485
|
-
]
|
3486
|
-
},
|
3487
|
-
"ServiceActionDefinitionMap":{
|
3488
|
-
"type":"map",
|
3489
|
-
"key":{"shape":"ServiceActionDefinitionKey"},
|
3490
|
-
"value":{"shape":"ServiceActionDefinitionValue"},
|
3491
|
-
"max":100,
|
3492
|
-
"min":1
|
3493
|
-
},
|
3494
|
-
"ServiceActionDefinitionType":{
|
3495
|
-
"type":"string",
|
3496
|
-
"enum":["SSM_AUTOMATION"]
|
3497
|
-
},
|
3498
|
-
"ServiceActionDefinitionValue":{
|
3499
|
-
"type":"string",
|
3500
|
-
"max":1024,
|
3501
|
-
"min":1
|
3502
|
-
},
|
3503
|
-
"ServiceActionDescription":{
|
3504
|
-
"type":"string",
|
3505
|
-
"max":1024
|
3506
|
-
},
|
3507
|
-
"ServiceActionDetail":{
|
3508
|
-
"type":"structure",
|
3509
|
-
"members":{
|
3510
|
-
"ServiceActionSummary":{"shape":"ServiceActionSummary"},
|
3511
|
-
"Definition":{"shape":"ServiceActionDefinitionMap"}
|
3512
|
-
}
|
3513
|
-
},
|
3514
|
-
"ServiceActionName":{
|
3515
|
-
"type":"string",
|
3516
|
-
"max":256,
|
3517
|
-
"min":1,
|
3518
|
-
"pattern":"^[a-zA-Z0-9_\\-.]*"
|
3519
|
-
},
|
3520
|
-
"ServiceActionSummaries":{
|
3521
|
-
"type":"list",
|
3522
|
-
"member":{"shape":"ServiceActionSummary"}
|
3523
|
-
},
|
3524
|
-
"ServiceActionSummary":{
|
3525
|
-
"type":"structure",
|
3526
|
-
"members":{
|
3527
|
-
"Id":{"shape":"Id"},
|
3528
|
-
"Name":{"shape":"ServiceActionName"},
|
3529
|
-
"Description":{"shape":"ServiceActionDescription"},
|
3530
|
-
"DefinitionType":{"shape":"ServiceActionDefinitionType"}
|
3531
|
-
}
|
3532
|
-
},
|
3533
|
-
"ShareDetails":{
|
3534
|
-
"type":"structure",
|
3535
|
-
"members":{
|
3536
|
-
"SuccessfulShares":{"shape":"SuccessfulShares"},
|
3537
|
-
"ShareErrors":{"shape":"ShareErrors"}
|
3538
|
-
}
|
3539
|
-
},
|
3540
|
-
"ShareError":{
|
3541
|
-
"type":"structure",
|
3542
|
-
"members":{
|
3543
|
-
"Accounts":{"shape":"Namespaces"},
|
3544
|
-
"Message":{"shape":"Message"},
|
3545
|
-
"Error":{"shape":"Error"}
|
3546
|
-
}
|
3547
|
-
},
|
3548
|
-
"ShareErrors":{
|
3549
|
-
"type":"list",
|
3550
|
-
"member":{"shape":"ShareError"}
|
3551
|
-
},
|
3552
|
-
"ShareStatus":{
|
3553
|
-
"type":"string",
|
3554
|
-
"enum":[
|
3555
|
-
"NOT_STARTED",
|
3556
|
-
"IN_PROGRESS",
|
3557
|
-
"COMPLETED",
|
3558
|
-
"COMPLETED_WITH_ERRORS",
|
3559
|
-
"ERROR"
|
3560
|
-
]
|
3561
|
-
},
|
3562
|
-
"SortField":{"type":"string"},
|
3563
|
-
"SortOrder":{
|
3564
|
-
"type":"string",
|
3565
|
-
"enum":[
|
3566
|
-
"ASCENDING",
|
3567
|
-
"DESCENDING"
|
3568
|
-
]
|
3569
|
-
},
|
3570
|
-
"SourceProvisioningArtifactProperties":{
|
3571
|
-
"type":"list",
|
3572
|
-
"member":{"shape":"SourceProvisioningArtifactPropertiesMap"}
|
3573
|
-
},
|
3574
|
-
"SourceProvisioningArtifactPropertiesMap":{
|
3575
|
-
"type":"map",
|
3576
|
-
"key":{"shape":"ProvisioningArtifactPropertyName"},
|
3577
|
-
"value":{"shape":"ProvisioningArtifactPropertyValue"}
|
3578
|
-
},
|
3579
|
-
"StackInstance":{
|
3580
|
-
"type":"structure",
|
3581
|
-
"members":{
|
3582
|
-
"Account":{"shape":"AccountId"},
|
3583
|
-
"Region":{"shape":"Region"},
|
3584
|
-
"StackInstanceStatus":{"shape":"StackInstanceStatus"}
|
3585
|
-
}
|
3586
|
-
},
|
3587
|
-
"StackInstanceStatus":{
|
3588
|
-
"type":"string",
|
3589
|
-
"enum":[
|
3590
|
-
"CURRENT",
|
3591
|
-
"OUTDATED",
|
3592
|
-
"INOPERABLE"
|
3593
|
-
]
|
3594
|
-
},
|
3595
|
-
"StackInstances":{
|
3596
|
-
"type":"list",
|
3597
|
-
"member":{"shape":"StackInstance"}
|
3598
|
-
},
|
3599
|
-
"StackSetAccounts":{
|
3600
|
-
"type":"list",
|
3601
|
-
"member":{"shape":"AccountId"}
|
3602
|
-
},
|
3603
|
-
"StackSetFailureToleranceCount":{
|
3604
|
-
"type":"integer",
|
3605
|
-
"min":0
|
3606
|
-
},
|
3607
|
-
"StackSetFailureTolerancePercentage":{
|
3608
|
-
"type":"integer",
|
3609
|
-
"max":100,
|
3610
|
-
"min":0
|
3611
|
-
},
|
3612
|
-
"StackSetMaxConcurrencyCount":{
|
3613
|
-
"type":"integer",
|
3614
|
-
"min":1
|
3615
|
-
},
|
3616
|
-
"StackSetMaxConcurrencyPercentage":{
|
3617
|
-
"type":"integer",
|
3618
|
-
"max":100,
|
3619
|
-
"min":1
|
3620
|
-
},
|
3621
|
-
"StackSetOperationType":{
|
3622
|
-
"type":"string",
|
3623
|
-
"enum":[
|
3624
|
-
"CREATE",
|
3625
|
-
"UPDATE",
|
3626
|
-
"DELETE"
|
3627
|
-
]
|
3628
|
-
},
|
3629
|
-
"StackSetRegions":{
|
3630
|
-
"type":"list",
|
3631
|
-
"member":{"shape":"Region"}
|
3632
|
-
},
|
3633
|
-
"Status":{
|
3634
|
-
"type":"string",
|
3635
|
-
"enum":[
|
3636
|
-
"AVAILABLE",
|
3637
|
-
"CREATING",
|
3638
|
-
"FAILED"
|
3639
|
-
]
|
3640
|
-
},
|
3641
|
-
"StatusDetail":{"type":"string"},
|
3642
|
-
"StatusMessage":{
|
3643
|
-
"type":"string",
|
3644
|
-
"pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
|
3645
|
-
},
|
3646
|
-
"SuccessfulShares":{
|
3647
|
-
"type":"list",
|
3648
|
-
"member":{"shape":"AccountId"}
|
3649
|
-
},
|
3650
|
-
"SupportDescription":{
|
3651
|
-
"type":"string",
|
3652
|
-
"max":8191
|
3653
|
-
},
|
3654
|
-
"SupportEmail":{
|
3655
|
-
"type":"string",
|
3656
|
-
"max":254
|
3657
|
-
},
|
3658
|
-
"SupportUrl":{
|
3659
|
-
"type":"string",
|
3660
|
-
"max":2083
|
3661
|
-
},
|
3662
|
-
"Tag":{
|
3663
|
-
"type":"structure",
|
3664
|
-
"required":[
|
3665
|
-
"Key",
|
3666
|
-
"Value"
|
3667
|
-
],
|
3668
|
-
"members":{
|
3669
|
-
"Key":{"shape":"TagKey"},
|
3670
|
-
"Value":{"shape":"TagValue"}
|
3671
|
-
}
|
3672
|
-
},
|
3673
|
-
"TagKey":{
|
3674
|
-
"type":"string",
|
3675
|
-
"max":128,
|
3676
|
-
"min":1,
|
3677
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
3678
|
-
},
|
3679
|
-
"TagKeys":{
|
3680
|
-
"type":"list",
|
3681
|
-
"member":{"shape":"TagKey"}
|
3682
|
-
},
|
3683
|
-
"TagOptionActive":{"type":"boolean"},
|
3684
|
-
"TagOptionDetail":{
|
3685
|
-
"type":"structure",
|
3686
|
-
"members":{
|
3687
|
-
"Key":{"shape":"TagOptionKey"},
|
3688
|
-
"Value":{"shape":"TagOptionValue"},
|
3689
|
-
"Active":{"shape":"TagOptionActive"},
|
3690
|
-
"Id":{"shape":"TagOptionId"}
|
3691
|
-
}
|
3692
|
-
},
|
3693
|
-
"TagOptionDetails":{
|
3694
|
-
"type":"list",
|
3695
|
-
"member":{"shape":"TagOptionDetail"}
|
3696
|
-
},
|
3697
|
-
"TagOptionId":{
|
3698
|
-
"type":"string",
|
3699
|
-
"max":100,
|
3700
|
-
"min":1
|
3701
|
-
},
|
3702
|
-
"TagOptionKey":{
|
3703
|
-
"type":"string",
|
3704
|
-
"max":128,
|
3705
|
-
"min":1,
|
3706
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
3707
|
-
},
|
3708
|
-
"TagOptionNotMigratedException":{
|
3709
|
-
"type":"structure",
|
3710
|
-
"members":{
|
3711
|
-
},
|
3712
|
-
"exception":true
|
3713
|
-
},
|
3714
|
-
"TagOptionSummaries":{
|
3715
|
-
"type":"list",
|
3716
|
-
"member":{"shape":"TagOptionSummary"}
|
3717
|
-
},
|
3718
|
-
"TagOptionSummary":{
|
3719
|
-
"type":"structure",
|
3720
|
-
"members":{
|
3721
|
-
"Key":{"shape":"TagOptionKey"},
|
3722
|
-
"Values":{"shape":"TagOptionValues"}
|
3723
|
-
}
|
3724
|
-
},
|
3725
|
-
"TagOptionValue":{
|
3726
|
-
"type":"string",
|
3727
|
-
"max":256,
|
3728
|
-
"min":1,
|
3729
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
3730
|
-
},
|
3731
|
-
"TagOptionValues":{
|
3732
|
-
"type":"list",
|
3733
|
-
"member":{"shape":"TagOptionValue"}
|
3734
|
-
},
|
3735
|
-
"TagValue":{
|
3736
|
-
"type":"string",
|
3737
|
-
"max":256,
|
3738
|
-
"min":1,
|
3739
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
3740
|
-
},
|
3741
|
-
"Tags":{
|
3742
|
-
"type":"list",
|
3743
|
-
"member":{"shape":"Tag"},
|
3744
|
-
"max":50
|
3745
|
-
},
|
3746
|
-
"TerminateProvisionedProductInput":{
|
3747
|
-
"type":"structure",
|
3748
|
-
"required":["TerminateToken"],
|
3749
|
-
"members":{
|
3750
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
|
3751
|
-
"ProvisionedProductId":{"shape":"Id"},
|
3752
|
-
"TerminateToken":{
|
3753
|
-
"shape":"IdempotencyToken",
|
3754
|
-
"idempotencyToken":true
|
3755
|
-
},
|
3756
|
-
"IgnoreErrors":{"shape":"IgnoreErrors"},
|
3757
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
3758
|
-
}
|
3759
|
-
},
|
3760
|
-
"TerminateProvisionedProductOutput":{
|
3761
|
-
"type":"structure",
|
3762
|
-
"members":{
|
3763
|
-
"RecordDetail":{"shape":"RecordDetail"}
|
3764
|
-
}
|
3765
|
-
},
|
3766
|
-
"TotalResultsCount":{"type":"integer"},
|
3767
|
-
"UpdateConstraintInput":{
|
3768
|
-
"type":"structure",
|
3769
|
-
"required":["Id"],
|
3770
|
-
"members":{
|
3771
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3772
|
-
"Id":{"shape":"Id"},
|
3773
|
-
"Description":{"shape":"ConstraintDescription"},
|
3774
|
-
"Parameters":{"shape":"ConstraintParameters"}
|
3775
|
-
}
|
3776
|
-
},
|
3777
|
-
"UpdateConstraintOutput":{
|
3778
|
-
"type":"structure",
|
3779
|
-
"members":{
|
3780
|
-
"ConstraintDetail":{"shape":"ConstraintDetail"},
|
3781
|
-
"ConstraintParameters":{"shape":"ConstraintParameters"},
|
3782
|
-
"Status":{"shape":"Status"}
|
3783
|
-
}
|
3784
|
-
},
|
3785
|
-
"UpdatePortfolioInput":{
|
3786
|
-
"type":"structure",
|
3787
|
-
"required":["Id"],
|
3788
|
-
"members":{
|
3789
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3790
|
-
"Id":{"shape":"Id"},
|
3791
|
-
"DisplayName":{"shape":"PortfolioDisplayName"},
|
3792
|
-
"Description":{"shape":"PortfolioDescription"},
|
3793
|
-
"ProviderName":{"shape":"ProviderName"},
|
3794
|
-
"AddTags":{"shape":"AddTags"},
|
3795
|
-
"RemoveTags":{"shape":"TagKeys"}
|
3796
|
-
}
|
3797
|
-
},
|
3798
|
-
"UpdatePortfolioOutput":{
|
3799
|
-
"type":"structure",
|
3800
|
-
"members":{
|
3801
|
-
"PortfolioDetail":{"shape":"PortfolioDetail"},
|
3802
|
-
"Tags":{"shape":"Tags"}
|
3803
|
-
}
|
3804
|
-
},
|
3805
|
-
"UpdateProductInput":{
|
3806
|
-
"type":"structure",
|
3807
|
-
"required":["Id"],
|
3808
|
-
"members":{
|
3809
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3810
|
-
"Id":{"shape":"Id"},
|
3811
|
-
"Name":{"shape":"ProductViewName"},
|
3812
|
-
"Owner":{"shape":"ProductViewOwner"},
|
3813
|
-
"Description":{"shape":"ProductViewShortDescription"},
|
3814
|
-
"Distributor":{"shape":"ProductViewOwner"},
|
3815
|
-
"SupportDescription":{"shape":"SupportDescription"},
|
3816
|
-
"SupportEmail":{"shape":"SupportEmail"},
|
3817
|
-
"SupportUrl":{"shape":"SupportUrl"},
|
3818
|
-
"AddTags":{"shape":"AddTags"},
|
3819
|
-
"RemoveTags":{"shape":"TagKeys"}
|
3820
|
-
}
|
3821
|
-
},
|
3822
|
-
"UpdateProductOutput":{
|
3823
|
-
"type":"structure",
|
3824
|
-
"members":{
|
3825
|
-
"ProductViewDetail":{"shape":"ProductViewDetail"},
|
3826
|
-
"Tags":{"shape":"Tags"}
|
3827
|
-
}
|
3828
|
-
},
|
3829
|
-
"UpdateProvisionedProductInput":{
|
3830
|
-
"type":"structure",
|
3831
|
-
"required":["UpdateToken"],
|
3832
|
-
"members":{
|
3833
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3834
|
-
"ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
|
3835
|
-
"ProvisionedProductId":{"shape":"Id"},
|
3836
|
-
"ProductId":{"shape":"Id"},
|
3837
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
3838
|
-
"PathId":{"shape":"Id"},
|
3839
|
-
"ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
|
3840
|
-
"ProvisioningPreferences":{"shape":"UpdateProvisioningPreferences"},
|
3841
|
-
"Tags":{"shape":"Tags"},
|
3842
|
-
"UpdateToken":{
|
3843
|
-
"shape":"IdempotencyToken",
|
3844
|
-
"idempotencyToken":true
|
3845
|
-
}
|
3846
|
-
}
|
3847
|
-
},
|
3848
|
-
"UpdateProvisionedProductOutput":{
|
3849
|
-
"type":"structure",
|
3850
|
-
"members":{
|
3851
|
-
"RecordDetail":{"shape":"RecordDetail"}
|
3852
|
-
}
|
3853
|
-
},
|
3854
|
-
"UpdateProvisionedProductPropertiesInput":{
|
3855
|
-
"type":"structure",
|
3856
|
-
"required":[
|
3857
|
-
"ProvisionedProductId",
|
3858
|
-
"ProvisionedProductProperties",
|
3859
|
-
"IdempotencyToken"
|
3860
|
-
],
|
3861
|
-
"members":{
|
3862
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3863
|
-
"ProvisionedProductId":{"shape":"Id"},
|
3864
|
-
"ProvisionedProductProperties":{"shape":"ProvisionedProductProperties"},
|
3865
|
-
"IdempotencyToken":{
|
3866
|
-
"shape":"IdempotencyToken",
|
3867
|
-
"idempotencyToken":true
|
3868
|
-
}
|
3869
|
-
}
|
3870
|
-
},
|
3871
|
-
"UpdateProvisionedProductPropertiesOutput":{
|
3872
|
-
"type":"structure",
|
3873
|
-
"members":{
|
3874
|
-
"ProvisionedProductId":{"shape":"Id"},
|
3875
|
-
"ProvisionedProductProperties":{"shape":"ProvisionedProductProperties"},
|
3876
|
-
"RecordId":{"shape":"Id"},
|
3877
|
-
"Status":{"shape":"RecordStatus"}
|
3878
|
-
}
|
3879
|
-
},
|
3880
|
-
"UpdateProvisioningArtifactInput":{
|
3881
|
-
"type":"structure",
|
3882
|
-
"required":[
|
3883
|
-
"ProductId",
|
3884
|
-
"ProvisioningArtifactId"
|
3885
|
-
],
|
3886
|
-
"members":{
|
3887
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"},
|
3888
|
-
"ProductId":{"shape":"Id"},
|
3889
|
-
"ProvisioningArtifactId":{"shape":"Id"},
|
3890
|
-
"Name":{"shape":"ProvisioningArtifactName"},
|
3891
|
-
"Description":{"shape":"ProvisioningArtifactDescription"},
|
3892
|
-
"Active":{"shape":"ProvisioningArtifactActive"},
|
3893
|
-
"Guidance":{"shape":"ProvisioningArtifactGuidance"}
|
3894
|
-
}
|
3895
|
-
},
|
3896
|
-
"UpdateProvisioningArtifactOutput":{
|
3897
|
-
"type":"structure",
|
3898
|
-
"members":{
|
3899
|
-
"ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
|
3900
|
-
"Info":{"shape":"ProvisioningArtifactInfo"},
|
3901
|
-
"Status":{"shape":"Status"}
|
3902
|
-
}
|
3903
|
-
},
|
3904
|
-
"UpdateProvisioningParameter":{
|
3905
|
-
"type":"structure",
|
3906
|
-
"members":{
|
3907
|
-
"Key":{"shape":"ParameterKey"},
|
3908
|
-
"Value":{"shape":"ParameterValue"},
|
3909
|
-
"UsePreviousValue":{"shape":"UsePreviousValue"}
|
3910
|
-
}
|
3911
|
-
},
|
3912
|
-
"UpdateProvisioningParameters":{
|
3913
|
-
"type":"list",
|
3914
|
-
"member":{"shape":"UpdateProvisioningParameter"}
|
3915
|
-
},
|
3916
|
-
"UpdateProvisioningPreferences":{
|
3917
|
-
"type":"structure",
|
3918
|
-
"members":{
|
3919
|
-
"StackSetAccounts":{"shape":"StackSetAccounts"},
|
3920
|
-
"StackSetRegions":{"shape":"StackSetRegions"},
|
3921
|
-
"StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
|
3922
|
-
"StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
|
3923
|
-
"StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
|
3924
|
-
"StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"},
|
3925
|
-
"StackSetOperationType":{"shape":"StackSetOperationType"}
|
3926
|
-
}
|
3927
|
-
},
|
3928
|
-
"UpdateServiceActionInput":{
|
3929
|
-
"type":"structure",
|
3930
|
-
"required":["Id"],
|
3931
|
-
"members":{
|
3932
|
-
"Id":{"shape":"Id"},
|
3933
|
-
"Name":{"shape":"ServiceActionName"},
|
3934
|
-
"Definition":{"shape":"ServiceActionDefinitionMap"},
|
3935
|
-
"Description":{"shape":"ServiceActionDescription"},
|
3936
|
-
"AcceptLanguage":{"shape":"AcceptLanguage"}
|
3937
|
-
}
|
3938
|
-
},
|
3939
|
-
"UpdateServiceActionOutput":{
|
3940
|
-
"type":"structure",
|
3941
|
-
"members":{
|
3942
|
-
"ServiceActionDetail":{"shape":"ServiceActionDetail"}
|
3943
|
-
}
|
3944
|
-
},
|
3945
|
-
"UpdateTagOptionInput":{
|
3946
|
-
"type":"structure",
|
3947
|
-
"required":["Id"],
|
3948
|
-
"members":{
|
3949
|
-
"Id":{"shape":"TagOptionId"},
|
3950
|
-
"Value":{"shape":"TagOptionValue"},
|
3951
|
-
"Active":{"shape":"TagOptionActive"}
|
3952
|
-
}
|
3953
|
-
},
|
3954
|
-
"UpdateTagOptionOutput":{
|
3955
|
-
"type":"structure",
|
3956
|
-
"members":{
|
3957
|
-
"TagOptionDetail":{"shape":"TagOptionDetail"}
|
3958
|
-
}
|
3959
|
-
},
|
3960
|
-
"UpdatedTime":{"type":"timestamp"},
|
3961
|
-
"UsageInstruction":{
|
3962
|
-
"type":"structure",
|
3963
|
-
"members":{
|
3964
|
-
"Type":{"shape":"InstructionType"},
|
3965
|
-
"Value":{"shape":"InstructionValue"}
|
3966
|
-
}
|
3967
|
-
},
|
3968
|
-
"UsageInstructions":{
|
3969
|
-
"type":"list",
|
3970
|
-
"member":{"shape":"UsageInstruction"}
|
3971
|
-
},
|
3972
|
-
"UsePreviousValue":{"type":"boolean"},
|
3973
|
-
"UserArn":{"type":"string"},
|
3974
|
-
"UserArnSession":{"type":"string"},
|
3975
|
-
"Verbose":{"type":"boolean"}
|
3976
|
-
}
|
3977
|
-
}
|