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,49 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeDestinations": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"limit_key": "limit",
|
6
|
-
"output_token": "nextToken",
|
7
|
-
"result_key": "destinations"
|
8
|
-
},
|
9
|
-
"DescribeLogGroups": {
|
10
|
-
"input_token": "nextToken",
|
11
|
-
"limit_key": "limit",
|
12
|
-
"output_token": "nextToken",
|
13
|
-
"result_key": "logGroups"
|
14
|
-
},
|
15
|
-
"DescribeLogStreams": {
|
16
|
-
"input_token": "nextToken",
|
17
|
-
"limit_key": "limit",
|
18
|
-
"output_token": "nextToken",
|
19
|
-
"result_key": "logStreams"
|
20
|
-
},
|
21
|
-
"DescribeMetricFilters": {
|
22
|
-
"input_token": "nextToken",
|
23
|
-
"limit_key": "limit",
|
24
|
-
"output_token": "nextToken",
|
25
|
-
"result_key": "metricFilters"
|
26
|
-
},
|
27
|
-
"DescribeSubscriptionFilters": {
|
28
|
-
"input_token": "nextToken",
|
29
|
-
"limit_key": "limit",
|
30
|
-
"output_token": "nextToken",
|
31
|
-
"result_key": "subscriptionFilters"
|
32
|
-
},
|
33
|
-
"FilterLogEvents": {
|
34
|
-
"input_token": "nextToken",
|
35
|
-
"limit_key": "limit",
|
36
|
-
"output_token": "nextToken",
|
37
|
-
"result_key": [
|
38
|
-
"events",
|
39
|
-
"searchedLogStreams"
|
40
|
-
]
|
41
|
-
},
|
42
|
-
"GetLogEvents": {
|
43
|
-
"input_token": "nextToken",
|
44
|
-
"limit_key": "limit",
|
45
|
-
"output_token": "nextForwardToken",
|
46
|
-
"result_key": "events"
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "DescribeLogGroups",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "GetLogEvents",
|
12
|
-
"input": {
|
13
|
-
"logGroupName": "fakegroup",
|
14
|
-
"logStreamName": "fakestream"
|
15
|
-
},
|
16
|
-
"errorExpectedFromService": true
|
17
|
-
}
|
18
|
-
]
|
19
|
-
}
|
@@ -1,1978 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"uid":"machinelearning-2014-12-12",
|
5
|
-
"apiVersion":"2014-12-12",
|
6
|
-
"endpointPrefix":"machinelearning",
|
7
|
-
"jsonVersion":"1.1",
|
8
|
-
"serviceFullName":"Amazon Machine Learning",
|
9
|
-
"signatureVersion":"v4",
|
10
|
-
"targetPrefix":"AmazonML_20141212",
|
11
|
-
"protocol":"json"
|
12
|
-
},
|
13
|
-
"operations":{
|
14
|
-
"AddTags":{
|
15
|
-
"name":"AddTags",
|
16
|
-
"http":{
|
17
|
-
"method":"POST",
|
18
|
-
"requestUri":"/"
|
19
|
-
},
|
20
|
-
"input":{"shape":"AddTagsInput"},
|
21
|
-
"output":{"shape":"AddTagsOutput"},
|
22
|
-
"errors":[
|
23
|
-
{
|
24
|
-
"shape":"InvalidInputException",
|
25
|
-
"error":{"httpStatusCode":400},
|
26
|
-
"exception":true
|
27
|
-
},
|
28
|
-
{
|
29
|
-
"shape":"InvalidTagException",
|
30
|
-
"exception":true
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"shape":"TagLimitExceededException",
|
34
|
-
"exception":true
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"shape":"ResourceNotFoundException",
|
38
|
-
"error":{"httpStatusCode":404},
|
39
|
-
"exception":true
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"shape":"InternalServerException",
|
43
|
-
"error":{"httpStatusCode":500},
|
44
|
-
"exception":true,
|
45
|
-
"fault":true
|
46
|
-
}
|
47
|
-
]
|
48
|
-
},
|
49
|
-
"CreateBatchPrediction":{
|
50
|
-
"name":"CreateBatchPrediction",
|
51
|
-
"http":{
|
52
|
-
"method":"POST",
|
53
|
-
"requestUri":"/"
|
54
|
-
},
|
55
|
-
"input":{"shape":"CreateBatchPredictionInput"},
|
56
|
-
"output":{"shape":"CreateBatchPredictionOutput"},
|
57
|
-
"errors":[
|
58
|
-
{
|
59
|
-
"shape":"InvalidInputException",
|
60
|
-
"error":{"httpStatusCode":400},
|
61
|
-
"exception":true
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"shape":"InternalServerException",
|
65
|
-
"error":{"httpStatusCode":500},
|
66
|
-
"exception":true,
|
67
|
-
"fault":true
|
68
|
-
},
|
69
|
-
{
|
70
|
-
"shape":"IdempotentParameterMismatchException",
|
71
|
-
"error":{"httpStatusCode":400},
|
72
|
-
"exception":true
|
73
|
-
}
|
74
|
-
]
|
75
|
-
},
|
76
|
-
"CreateDataSourceFromRDS":{
|
77
|
-
"name":"CreateDataSourceFromRDS",
|
78
|
-
"http":{
|
79
|
-
"method":"POST",
|
80
|
-
"requestUri":"/"
|
81
|
-
},
|
82
|
-
"input":{"shape":"CreateDataSourceFromRDSInput"},
|
83
|
-
"output":{"shape":"CreateDataSourceFromRDSOutput"},
|
84
|
-
"errors":[
|
85
|
-
{
|
86
|
-
"shape":"InvalidInputException",
|
87
|
-
"error":{"httpStatusCode":400},
|
88
|
-
"exception":true
|
89
|
-
},
|
90
|
-
{
|
91
|
-
"shape":"InternalServerException",
|
92
|
-
"error":{"httpStatusCode":500},
|
93
|
-
"exception":true,
|
94
|
-
"fault":true
|
95
|
-
},
|
96
|
-
{
|
97
|
-
"shape":"IdempotentParameterMismatchException",
|
98
|
-
"error":{"httpStatusCode":400},
|
99
|
-
"exception":true
|
100
|
-
}
|
101
|
-
]
|
102
|
-
},
|
103
|
-
"CreateDataSourceFromRedshift":{
|
104
|
-
"name":"CreateDataSourceFromRedshift",
|
105
|
-
"http":{
|
106
|
-
"method":"POST",
|
107
|
-
"requestUri":"/"
|
108
|
-
},
|
109
|
-
"input":{"shape":"CreateDataSourceFromRedshiftInput"},
|
110
|
-
"output":{"shape":"CreateDataSourceFromRedshiftOutput"},
|
111
|
-
"errors":[
|
112
|
-
{
|
113
|
-
"shape":"InvalidInputException",
|
114
|
-
"error":{"httpStatusCode":400},
|
115
|
-
"exception":true
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"shape":"InternalServerException",
|
119
|
-
"error":{"httpStatusCode":500},
|
120
|
-
"exception":true,
|
121
|
-
"fault":true
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"shape":"IdempotentParameterMismatchException",
|
125
|
-
"error":{"httpStatusCode":400},
|
126
|
-
"exception":true
|
127
|
-
}
|
128
|
-
]
|
129
|
-
},
|
130
|
-
"CreateDataSourceFromS3":{
|
131
|
-
"name":"CreateDataSourceFromS3",
|
132
|
-
"http":{
|
133
|
-
"method":"POST",
|
134
|
-
"requestUri":"/"
|
135
|
-
},
|
136
|
-
"input":{"shape":"CreateDataSourceFromS3Input"},
|
137
|
-
"output":{"shape":"CreateDataSourceFromS3Output"},
|
138
|
-
"errors":[
|
139
|
-
{
|
140
|
-
"shape":"InvalidInputException",
|
141
|
-
"error":{"httpStatusCode":400},
|
142
|
-
"exception":true
|
143
|
-
},
|
144
|
-
{
|
145
|
-
"shape":"InternalServerException",
|
146
|
-
"error":{"httpStatusCode":500},
|
147
|
-
"exception":true,
|
148
|
-
"fault":true
|
149
|
-
},
|
150
|
-
{
|
151
|
-
"shape":"IdempotentParameterMismatchException",
|
152
|
-
"error":{"httpStatusCode":400},
|
153
|
-
"exception":true
|
154
|
-
}
|
155
|
-
]
|
156
|
-
},
|
157
|
-
"CreateEvaluation":{
|
158
|
-
"name":"CreateEvaluation",
|
159
|
-
"http":{
|
160
|
-
"method":"POST",
|
161
|
-
"requestUri":"/"
|
162
|
-
},
|
163
|
-
"input":{"shape":"CreateEvaluationInput"},
|
164
|
-
"output":{"shape":"CreateEvaluationOutput"},
|
165
|
-
"errors":[
|
166
|
-
{
|
167
|
-
"shape":"InvalidInputException",
|
168
|
-
"error":{"httpStatusCode":400},
|
169
|
-
"exception":true
|
170
|
-
},
|
171
|
-
{
|
172
|
-
"shape":"InternalServerException",
|
173
|
-
"error":{"httpStatusCode":500},
|
174
|
-
"exception":true,
|
175
|
-
"fault":true
|
176
|
-
},
|
177
|
-
{
|
178
|
-
"shape":"IdempotentParameterMismatchException",
|
179
|
-
"error":{"httpStatusCode":400},
|
180
|
-
"exception":true
|
181
|
-
}
|
182
|
-
]
|
183
|
-
},
|
184
|
-
"CreateMLModel":{
|
185
|
-
"name":"CreateMLModel",
|
186
|
-
"http":{
|
187
|
-
"method":"POST",
|
188
|
-
"requestUri":"/"
|
189
|
-
},
|
190
|
-
"input":{"shape":"CreateMLModelInput"},
|
191
|
-
"output":{"shape":"CreateMLModelOutput"},
|
192
|
-
"errors":[
|
193
|
-
{
|
194
|
-
"shape":"InvalidInputException",
|
195
|
-
"error":{"httpStatusCode":400},
|
196
|
-
"exception":true
|
197
|
-
},
|
198
|
-
{
|
199
|
-
"shape":"InternalServerException",
|
200
|
-
"error":{"httpStatusCode":500},
|
201
|
-
"exception":true,
|
202
|
-
"fault":true
|
203
|
-
},
|
204
|
-
{
|
205
|
-
"shape":"IdempotentParameterMismatchException",
|
206
|
-
"error":{"httpStatusCode":400},
|
207
|
-
"exception":true
|
208
|
-
}
|
209
|
-
]
|
210
|
-
},
|
211
|
-
"CreateRealtimeEndpoint":{
|
212
|
-
"name":"CreateRealtimeEndpoint",
|
213
|
-
"http":{
|
214
|
-
"method":"POST",
|
215
|
-
"requestUri":"/"
|
216
|
-
},
|
217
|
-
"input":{"shape":"CreateRealtimeEndpointInput"},
|
218
|
-
"output":{"shape":"CreateRealtimeEndpointOutput"},
|
219
|
-
"errors":[
|
220
|
-
{
|
221
|
-
"shape":"InvalidInputException",
|
222
|
-
"error":{"httpStatusCode":400},
|
223
|
-
"exception":true
|
224
|
-
},
|
225
|
-
{
|
226
|
-
"shape":"ResourceNotFoundException",
|
227
|
-
"error":{"httpStatusCode":404},
|
228
|
-
"exception":true
|
229
|
-
},
|
230
|
-
{
|
231
|
-
"shape":"InternalServerException",
|
232
|
-
"error":{"httpStatusCode":500},
|
233
|
-
"exception":true,
|
234
|
-
"fault":true
|
235
|
-
}
|
236
|
-
]
|
237
|
-
},
|
238
|
-
"DeleteBatchPrediction":{
|
239
|
-
"name":"DeleteBatchPrediction",
|
240
|
-
"http":{
|
241
|
-
"method":"POST",
|
242
|
-
"requestUri":"/"
|
243
|
-
},
|
244
|
-
"input":{"shape":"DeleteBatchPredictionInput"},
|
245
|
-
"output":{"shape":"DeleteBatchPredictionOutput"},
|
246
|
-
"errors":[
|
247
|
-
{
|
248
|
-
"shape":"InvalidInputException",
|
249
|
-
"error":{"httpStatusCode":400},
|
250
|
-
"exception":true
|
251
|
-
},
|
252
|
-
{
|
253
|
-
"shape":"ResourceNotFoundException",
|
254
|
-
"error":{"httpStatusCode":404},
|
255
|
-
"exception":true
|
256
|
-
},
|
257
|
-
{
|
258
|
-
"shape":"InternalServerException",
|
259
|
-
"error":{"httpStatusCode":500},
|
260
|
-
"exception":true,
|
261
|
-
"fault":true
|
262
|
-
}
|
263
|
-
]
|
264
|
-
},
|
265
|
-
"DeleteDataSource":{
|
266
|
-
"name":"DeleteDataSource",
|
267
|
-
"http":{
|
268
|
-
"method":"POST",
|
269
|
-
"requestUri":"/"
|
270
|
-
},
|
271
|
-
"input":{"shape":"DeleteDataSourceInput"},
|
272
|
-
"output":{"shape":"DeleteDataSourceOutput"},
|
273
|
-
"errors":[
|
274
|
-
{
|
275
|
-
"shape":"InvalidInputException",
|
276
|
-
"error":{"httpStatusCode":400},
|
277
|
-
"exception":true
|
278
|
-
},
|
279
|
-
{
|
280
|
-
"shape":"ResourceNotFoundException",
|
281
|
-
"error":{"httpStatusCode":404},
|
282
|
-
"exception":true
|
283
|
-
},
|
284
|
-
{
|
285
|
-
"shape":"InternalServerException",
|
286
|
-
"error":{"httpStatusCode":500},
|
287
|
-
"exception":true,
|
288
|
-
"fault":true
|
289
|
-
}
|
290
|
-
]
|
291
|
-
},
|
292
|
-
"DeleteEvaluation":{
|
293
|
-
"name":"DeleteEvaluation",
|
294
|
-
"http":{
|
295
|
-
"method":"POST",
|
296
|
-
"requestUri":"/"
|
297
|
-
},
|
298
|
-
"input":{"shape":"DeleteEvaluationInput"},
|
299
|
-
"output":{"shape":"DeleteEvaluationOutput"},
|
300
|
-
"errors":[
|
301
|
-
{
|
302
|
-
"shape":"InvalidInputException",
|
303
|
-
"error":{"httpStatusCode":400},
|
304
|
-
"exception":true
|
305
|
-
},
|
306
|
-
{
|
307
|
-
"shape":"ResourceNotFoundException",
|
308
|
-
"error":{"httpStatusCode":404},
|
309
|
-
"exception":true
|
310
|
-
},
|
311
|
-
{
|
312
|
-
"shape":"InternalServerException",
|
313
|
-
"error":{"httpStatusCode":500},
|
314
|
-
"exception":true,
|
315
|
-
"fault":true
|
316
|
-
}
|
317
|
-
]
|
318
|
-
},
|
319
|
-
"DeleteMLModel":{
|
320
|
-
"name":"DeleteMLModel",
|
321
|
-
"http":{
|
322
|
-
"method":"POST",
|
323
|
-
"requestUri":"/"
|
324
|
-
},
|
325
|
-
"input":{"shape":"DeleteMLModelInput"},
|
326
|
-
"output":{"shape":"DeleteMLModelOutput"},
|
327
|
-
"errors":[
|
328
|
-
{
|
329
|
-
"shape":"InvalidInputException",
|
330
|
-
"error":{"httpStatusCode":400},
|
331
|
-
"exception":true
|
332
|
-
},
|
333
|
-
{
|
334
|
-
"shape":"ResourceNotFoundException",
|
335
|
-
"error":{"httpStatusCode":404},
|
336
|
-
"exception":true
|
337
|
-
},
|
338
|
-
{
|
339
|
-
"shape":"InternalServerException",
|
340
|
-
"error":{"httpStatusCode":500},
|
341
|
-
"exception":true,
|
342
|
-
"fault":true
|
343
|
-
}
|
344
|
-
]
|
345
|
-
},
|
346
|
-
"DeleteRealtimeEndpoint":{
|
347
|
-
"name":"DeleteRealtimeEndpoint",
|
348
|
-
"http":{
|
349
|
-
"method":"POST",
|
350
|
-
"requestUri":"/"
|
351
|
-
},
|
352
|
-
"input":{"shape":"DeleteRealtimeEndpointInput"},
|
353
|
-
"output":{"shape":"DeleteRealtimeEndpointOutput"},
|
354
|
-
"errors":[
|
355
|
-
{
|
356
|
-
"shape":"InvalidInputException",
|
357
|
-
"error":{"httpStatusCode":400},
|
358
|
-
"exception":true
|
359
|
-
},
|
360
|
-
{
|
361
|
-
"shape":"ResourceNotFoundException",
|
362
|
-
"error":{"httpStatusCode":404},
|
363
|
-
"exception":true
|
364
|
-
},
|
365
|
-
{
|
366
|
-
"shape":"InternalServerException",
|
367
|
-
"error":{"httpStatusCode":500},
|
368
|
-
"exception":true,
|
369
|
-
"fault":true
|
370
|
-
}
|
371
|
-
]
|
372
|
-
},
|
373
|
-
"DeleteTags":{
|
374
|
-
"name":"DeleteTags",
|
375
|
-
"http":{
|
376
|
-
"method":"POST",
|
377
|
-
"requestUri":"/"
|
378
|
-
},
|
379
|
-
"input":{"shape":"DeleteTagsInput"},
|
380
|
-
"output":{"shape":"DeleteTagsOutput"},
|
381
|
-
"errors":[
|
382
|
-
{
|
383
|
-
"shape":"InvalidInputException",
|
384
|
-
"error":{"httpStatusCode":400},
|
385
|
-
"exception":true
|
386
|
-
},
|
387
|
-
{
|
388
|
-
"shape":"InvalidTagException",
|
389
|
-
"exception":true
|
390
|
-
},
|
391
|
-
{
|
392
|
-
"shape":"ResourceNotFoundException",
|
393
|
-
"error":{"httpStatusCode":404},
|
394
|
-
"exception":true
|
395
|
-
},
|
396
|
-
{
|
397
|
-
"shape":"InternalServerException",
|
398
|
-
"error":{"httpStatusCode":500},
|
399
|
-
"exception":true,
|
400
|
-
"fault":true
|
401
|
-
}
|
402
|
-
]
|
403
|
-
},
|
404
|
-
"DescribeBatchPredictions":{
|
405
|
-
"name":"DescribeBatchPredictions",
|
406
|
-
"http":{
|
407
|
-
"method":"POST",
|
408
|
-
"requestUri":"/"
|
409
|
-
},
|
410
|
-
"input":{"shape":"DescribeBatchPredictionsInput"},
|
411
|
-
"output":{"shape":"DescribeBatchPredictionsOutput"},
|
412
|
-
"errors":[
|
413
|
-
{
|
414
|
-
"shape":"InvalidInputException",
|
415
|
-
"error":{"httpStatusCode":400},
|
416
|
-
"exception":true
|
417
|
-
},
|
418
|
-
{
|
419
|
-
"shape":"InternalServerException",
|
420
|
-
"error":{"httpStatusCode":500},
|
421
|
-
"exception":true,
|
422
|
-
"fault":true
|
423
|
-
}
|
424
|
-
]
|
425
|
-
},
|
426
|
-
"DescribeDataSources":{
|
427
|
-
"name":"DescribeDataSources",
|
428
|
-
"http":{
|
429
|
-
"method":"POST",
|
430
|
-
"requestUri":"/"
|
431
|
-
},
|
432
|
-
"input":{"shape":"DescribeDataSourcesInput"},
|
433
|
-
"output":{"shape":"DescribeDataSourcesOutput"},
|
434
|
-
"errors":[
|
435
|
-
{
|
436
|
-
"shape":"InvalidInputException",
|
437
|
-
"error":{"httpStatusCode":400},
|
438
|
-
"exception":true
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"shape":"InternalServerException",
|
442
|
-
"error":{"httpStatusCode":500},
|
443
|
-
"exception":true,
|
444
|
-
"fault":true
|
445
|
-
}
|
446
|
-
]
|
447
|
-
},
|
448
|
-
"DescribeEvaluations":{
|
449
|
-
"name":"DescribeEvaluations",
|
450
|
-
"http":{
|
451
|
-
"method":"POST",
|
452
|
-
"requestUri":"/"
|
453
|
-
},
|
454
|
-
"input":{"shape":"DescribeEvaluationsInput"},
|
455
|
-
"output":{"shape":"DescribeEvaluationsOutput"},
|
456
|
-
"errors":[
|
457
|
-
{
|
458
|
-
"shape":"InvalidInputException",
|
459
|
-
"error":{"httpStatusCode":400},
|
460
|
-
"exception":true
|
461
|
-
},
|
462
|
-
{
|
463
|
-
"shape":"InternalServerException",
|
464
|
-
"error":{"httpStatusCode":500},
|
465
|
-
"exception":true,
|
466
|
-
"fault":true
|
467
|
-
}
|
468
|
-
]
|
469
|
-
},
|
470
|
-
"DescribeMLModels":{
|
471
|
-
"name":"DescribeMLModels",
|
472
|
-
"http":{
|
473
|
-
"method":"POST",
|
474
|
-
"requestUri":"/"
|
475
|
-
},
|
476
|
-
"input":{"shape":"DescribeMLModelsInput"},
|
477
|
-
"output":{"shape":"DescribeMLModelsOutput"},
|
478
|
-
"errors":[
|
479
|
-
{
|
480
|
-
"shape":"InvalidInputException",
|
481
|
-
"error":{"httpStatusCode":400},
|
482
|
-
"exception":true
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"shape":"InternalServerException",
|
486
|
-
"error":{"httpStatusCode":500},
|
487
|
-
"exception":true,
|
488
|
-
"fault":true
|
489
|
-
}
|
490
|
-
]
|
491
|
-
},
|
492
|
-
"DescribeTags":{
|
493
|
-
"name":"DescribeTags",
|
494
|
-
"http":{
|
495
|
-
"method":"POST",
|
496
|
-
"requestUri":"/"
|
497
|
-
},
|
498
|
-
"input":{"shape":"DescribeTagsInput"},
|
499
|
-
"output":{"shape":"DescribeTagsOutput"},
|
500
|
-
"errors":[
|
501
|
-
{
|
502
|
-
"shape":"InvalidInputException",
|
503
|
-
"error":{"httpStatusCode":400},
|
504
|
-
"exception":true
|
505
|
-
},
|
506
|
-
{
|
507
|
-
"shape":"ResourceNotFoundException",
|
508
|
-
"error":{"httpStatusCode":404},
|
509
|
-
"exception":true
|
510
|
-
},
|
511
|
-
{
|
512
|
-
"shape":"InternalServerException",
|
513
|
-
"error":{"httpStatusCode":500},
|
514
|
-
"exception":true,
|
515
|
-
"fault":true
|
516
|
-
}
|
517
|
-
]
|
518
|
-
},
|
519
|
-
"GetBatchPrediction":{
|
520
|
-
"name":"GetBatchPrediction",
|
521
|
-
"http":{
|
522
|
-
"method":"POST",
|
523
|
-
"requestUri":"/"
|
524
|
-
},
|
525
|
-
"input":{"shape":"GetBatchPredictionInput"},
|
526
|
-
"output":{"shape":"GetBatchPredictionOutput"},
|
527
|
-
"errors":[
|
528
|
-
{
|
529
|
-
"shape":"InvalidInputException",
|
530
|
-
"error":{"httpStatusCode":400},
|
531
|
-
"exception":true
|
532
|
-
},
|
533
|
-
{
|
534
|
-
"shape":"ResourceNotFoundException",
|
535
|
-
"error":{"httpStatusCode":404},
|
536
|
-
"exception":true
|
537
|
-
},
|
538
|
-
{
|
539
|
-
"shape":"InternalServerException",
|
540
|
-
"error":{"httpStatusCode":500},
|
541
|
-
"exception":true,
|
542
|
-
"fault":true
|
543
|
-
}
|
544
|
-
]
|
545
|
-
},
|
546
|
-
"GetDataSource":{
|
547
|
-
"name":"GetDataSource",
|
548
|
-
"http":{
|
549
|
-
"method":"POST",
|
550
|
-
"requestUri":"/"
|
551
|
-
},
|
552
|
-
"input":{"shape":"GetDataSourceInput"},
|
553
|
-
"output":{"shape":"GetDataSourceOutput"},
|
554
|
-
"errors":[
|
555
|
-
{
|
556
|
-
"shape":"InvalidInputException",
|
557
|
-
"error":{"httpStatusCode":400},
|
558
|
-
"exception":true
|
559
|
-
},
|
560
|
-
{
|
561
|
-
"shape":"ResourceNotFoundException",
|
562
|
-
"error":{"httpStatusCode":404},
|
563
|
-
"exception":true
|
564
|
-
},
|
565
|
-
{
|
566
|
-
"shape":"InternalServerException",
|
567
|
-
"error":{"httpStatusCode":500},
|
568
|
-
"exception":true,
|
569
|
-
"fault":true
|
570
|
-
}
|
571
|
-
]
|
572
|
-
},
|
573
|
-
"GetEvaluation":{
|
574
|
-
"name":"GetEvaluation",
|
575
|
-
"http":{
|
576
|
-
"method":"POST",
|
577
|
-
"requestUri":"/"
|
578
|
-
},
|
579
|
-
"input":{"shape":"GetEvaluationInput"},
|
580
|
-
"output":{"shape":"GetEvaluationOutput"},
|
581
|
-
"errors":[
|
582
|
-
{
|
583
|
-
"shape":"InvalidInputException",
|
584
|
-
"error":{"httpStatusCode":400},
|
585
|
-
"exception":true
|
586
|
-
},
|
587
|
-
{
|
588
|
-
"shape":"ResourceNotFoundException",
|
589
|
-
"error":{"httpStatusCode":404},
|
590
|
-
"exception":true
|
591
|
-
},
|
592
|
-
{
|
593
|
-
"shape":"InternalServerException",
|
594
|
-
"error":{"httpStatusCode":500},
|
595
|
-
"exception":true,
|
596
|
-
"fault":true
|
597
|
-
}
|
598
|
-
]
|
599
|
-
},
|
600
|
-
"GetMLModel":{
|
601
|
-
"name":"GetMLModel",
|
602
|
-
"http":{
|
603
|
-
"method":"POST",
|
604
|
-
"requestUri":"/"
|
605
|
-
},
|
606
|
-
"input":{"shape":"GetMLModelInput"},
|
607
|
-
"output":{"shape":"GetMLModelOutput"},
|
608
|
-
"errors":[
|
609
|
-
{
|
610
|
-
"shape":"InvalidInputException",
|
611
|
-
"error":{"httpStatusCode":400},
|
612
|
-
"exception":true
|
613
|
-
},
|
614
|
-
{
|
615
|
-
"shape":"ResourceNotFoundException",
|
616
|
-
"error":{"httpStatusCode":404},
|
617
|
-
"exception":true
|
618
|
-
},
|
619
|
-
{
|
620
|
-
"shape":"InternalServerException",
|
621
|
-
"error":{"httpStatusCode":500},
|
622
|
-
"exception":true,
|
623
|
-
"fault":true
|
624
|
-
}
|
625
|
-
]
|
626
|
-
},
|
627
|
-
"Predict":{
|
628
|
-
"name":"Predict",
|
629
|
-
"http":{
|
630
|
-
"method":"POST",
|
631
|
-
"requestUri":"/"
|
632
|
-
},
|
633
|
-
"input":{"shape":"PredictInput"},
|
634
|
-
"output":{"shape":"PredictOutput"},
|
635
|
-
"errors":[
|
636
|
-
{
|
637
|
-
"shape":"InvalidInputException",
|
638
|
-
"error":{"httpStatusCode":400},
|
639
|
-
"exception":true
|
640
|
-
},
|
641
|
-
{
|
642
|
-
"shape":"ResourceNotFoundException",
|
643
|
-
"error":{"httpStatusCode":404},
|
644
|
-
"exception":true
|
645
|
-
},
|
646
|
-
{
|
647
|
-
"shape":"LimitExceededException",
|
648
|
-
"error":{"httpStatusCode":417},
|
649
|
-
"exception":true
|
650
|
-
},
|
651
|
-
{
|
652
|
-
"shape":"InternalServerException",
|
653
|
-
"error":{"httpStatusCode":500},
|
654
|
-
"exception":true,
|
655
|
-
"fault":true
|
656
|
-
},
|
657
|
-
{
|
658
|
-
"shape":"PredictorNotMountedException",
|
659
|
-
"error":{"httpStatusCode":400},
|
660
|
-
"exception":true
|
661
|
-
}
|
662
|
-
]
|
663
|
-
},
|
664
|
-
"UpdateBatchPrediction":{
|
665
|
-
"name":"UpdateBatchPrediction",
|
666
|
-
"http":{
|
667
|
-
"method":"POST",
|
668
|
-
"requestUri":"/"
|
669
|
-
},
|
670
|
-
"input":{"shape":"UpdateBatchPredictionInput"},
|
671
|
-
"output":{"shape":"UpdateBatchPredictionOutput"},
|
672
|
-
"errors":[
|
673
|
-
{
|
674
|
-
"shape":"InvalidInputException",
|
675
|
-
"error":{"httpStatusCode":400},
|
676
|
-
"exception":true
|
677
|
-
},
|
678
|
-
{
|
679
|
-
"shape":"ResourceNotFoundException",
|
680
|
-
"error":{"httpStatusCode":404},
|
681
|
-
"exception":true
|
682
|
-
},
|
683
|
-
{
|
684
|
-
"shape":"InternalServerException",
|
685
|
-
"error":{"httpStatusCode":500},
|
686
|
-
"exception":true,
|
687
|
-
"fault":true
|
688
|
-
}
|
689
|
-
]
|
690
|
-
},
|
691
|
-
"UpdateDataSource":{
|
692
|
-
"name":"UpdateDataSource",
|
693
|
-
"http":{
|
694
|
-
"method":"POST",
|
695
|
-
"requestUri":"/"
|
696
|
-
},
|
697
|
-
"input":{"shape":"UpdateDataSourceInput"},
|
698
|
-
"output":{"shape":"UpdateDataSourceOutput"},
|
699
|
-
"errors":[
|
700
|
-
{
|
701
|
-
"shape":"InvalidInputException",
|
702
|
-
"error":{"httpStatusCode":400},
|
703
|
-
"exception":true
|
704
|
-
},
|
705
|
-
{
|
706
|
-
"shape":"ResourceNotFoundException",
|
707
|
-
"error":{"httpStatusCode":404},
|
708
|
-
"exception":true
|
709
|
-
},
|
710
|
-
{
|
711
|
-
"shape":"InternalServerException",
|
712
|
-
"error":{"httpStatusCode":500},
|
713
|
-
"exception":true,
|
714
|
-
"fault":true
|
715
|
-
}
|
716
|
-
]
|
717
|
-
},
|
718
|
-
"UpdateEvaluation":{
|
719
|
-
"name":"UpdateEvaluation",
|
720
|
-
"http":{
|
721
|
-
"method":"POST",
|
722
|
-
"requestUri":"/"
|
723
|
-
},
|
724
|
-
"input":{"shape":"UpdateEvaluationInput"},
|
725
|
-
"output":{"shape":"UpdateEvaluationOutput"},
|
726
|
-
"errors":[
|
727
|
-
{
|
728
|
-
"shape":"InvalidInputException",
|
729
|
-
"error":{"httpStatusCode":400},
|
730
|
-
"exception":true
|
731
|
-
},
|
732
|
-
{
|
733
|
-
"shape":"ResourceNotFoundException",
|
734
|
-
"error":{"httpStatusCode":404},
|
735
|
-
"exception":true
|
736
|
-
},
|
737
|
-
{
|
738
|
-
"shape":"InternalServerException",
|
739
|
-
"error":{"httpStatusCode":500},
|
740
|
-
"exception":true,
|
741
|
-
"fault":true
|
742
|
-
}
|
743
|
-
]
|
744
|
-
},
|
745
|
-
"UpdateMLModel":{
|
746
|
-
"name":"UpdateMLModel",
|
747
|
-
"http":{
|
748
|
-
"method":"POST",
|
749
|
-
"requestUri":"/"
|
750
|
-
},
|
751
|
-
"input":{"shape":"UpdateMLModelInput"},
|
752
|
-
"output":{"shape":"UpdateMLModelOutput"},
|
753
|
-
"errors":[
|
754
|
-
{
|
755
|
-
"shape":"InvalidInputException",
|
756
|
-
"error":{"httpStatusCode":400},
|
757
|
-
"exception":true
|
758
|
-
},
|
759
|
-
{
|
760
|
-
"shape":"ResourceNotFoundException",
|
761
|
-
"error":{"httpStatusCode":404},
|
762
|
-
"exception":true
|
763
|
-
},
|
764
|
-
{
|
765
|
-
"shape":"InternalServerException",
|
766
|
-
"error":{"httpStatusCode":500},
|
767
|
-
"exception":true,
|
768
|
-
"fault":true
|
769
|
-
}
|
770
|
-
]
|
771
|
-
}
|
772
|
-
},
|
773
|
-
"shapes":{
|
774
|
-
"AddTagsInput":{
|
775
|
-
"type":"structure",
|
776
|
-
"required":[
|
777
|
-
"Tags",
|
778
|
-
"ResourceId",
|
779
|
-
"ResourceType"
|
780
|
-
],
|
781
|
-
"members":{
|
782
|
-
"Tags":{"shape":"TagList"},
|
783
|
-
"ResourceId":{"shape":"EntityId"},
|
784
|
-
"ResourceType":{"shape":"TaggableResourceType"}
|
785
|
-
}
|
786
|
-
},
|
787
|
-
"AddTagsOutput":{
|
788
|
-
"type":"structure",
|
789
|
-
"members":{
|
790
|
-
"ResourceId":{"shape":"EntityId"},
|
791
|
-
"ResourceType":{"shape":"TaggableResourceType"}
|
792
|
-
}
|
793
|
-
},
|
794
|
-
"Algorithm":{
|
795
|
-
"type":"string",
|
796
|
-
"enum":["sgd"]
|
797
|
-
},
|
798
|
-
"AwsUserArn":{
|
799
|
-
"type":"string",
|
800
|
-
"pattern":"arn:aws:iam::[0-9]+:((user/.+)|(root))"
|
801
|
-
},
|
802
|
-
"BatchPrediction":{
|
803
|
-
"type":"structure",
|
804
|
-
"members":{
|
805
|
-
"BatchPredictionId":{"shape":"EntityId"},
|
806
|
-
"MLModelId":{"shape":"EntityId"},
|
807
|
-
"BatchPredictionDataSourceId":{"shape":"EntityId"},
|
808
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
809
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
810
|
-
"CreatedAt":{"shape":"EpochTime"},
|
811
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
812
|
-
"Name":{"shape":"EntityName"},
|
813
|
-
"Status":{"shape":"EntityStatus"},
|
814
|
-
"OutputUri":{"shape":"S3Url"},
|
815
|
-
"Message":{"shape":"Message"},
|
816
|
-
"ComputeTime":{"shape":"LongType"},
|
817
|
-
"FinishedAt":{"shape":"EpochTime"},
|
818
|
-
"StartedAt":{"shape":"EpochTime"},
|
819
|
-
"TotalRecordCount":{"shape":"LongType"},
|
820
|
-
"InvalidRecordCount":{"shape":"LongType"}
|
821
|
-
}
|
822
|
-
},
|
823
|
-
"BatchPredictionFilterVariable":{
|
824
|
-
"type":"string",
|
825
|
-
"enum":[
|
826
|
-
"CreatedAt",
|
827
|
-
"LastUpdatedAt",
|
828
|
-
"Status",
|
829
|
-
"Name",
|
830
|
-
"IAMUser",
|
831
|
-
"MLModelId",
|
832
|
-
"DataSourceId",
|
833
|
-
"DataURI"
|
834
|
-
]
|
835
|
-
},
|
836
|
-
"BatchPredictions":{
|
837
|
-
"type":"list",
|
838
|
-
"member":{"shape":"BatchPrediction"}
|
839
|
-
},
|
840
|
-
"ComparatorValue":{
|
841
|
-
"type":"string",
|
842
|
-
"max":1024,
|
843
|
-
"pattern":".*\\S.*|^$"
|
844
|
-
},
|
845
|
-
"ComputeStatistics":{"type":"boolean"},
|
846
|
-
"CreateBatchPredictionInput":{
|
847
|
-
"type":"structure",
|
848
|
-
"required":[
|
849
|
-
"BatchPredictionId",
|
850
|
-
"MLModelId",
|
851
|
-
"BatchPredictionDataSourceId",
|
852
|
-
"OutputUri"
|
853
|
-
],
|
854
|
-
"members":{
|
855
|
-
"BatchPredictionId":{"shape":"EntityId"},
|
856
|
-
"BatchPredictionName":{"shape":"EntityName"},
|
857
|
-
"MLModelId":{"shape":"EntityId"},
|
858
|
-
"BatchPredictionDataSourceId":{"shape":"EntityId"},
|
859
|
-
"OutputUri":{"shape":"S3Url"}
|
860
|
-
}
|
861
|
-
},
|
862
|
-
"CreateBatchPredictionOutput":{
|
863
|
-
"type":"structure",
|
864
|
-
"members":{
|
865
|
-
"BatchPredictionId":{"shape":"EntityId"}
|
866
|
-
}
|
867
|
-
},
|
868
|
-
"CreateDataSourceFromRDSInput":{
|
869
|
-
"type":"structure",
|
870
|
-
"required":[
|
871
|
-
"DataSourceId",
|
872
|
-
"RDSData",
|
873
|
-
"RoleARN"
|
874
|
-
],
|
875
|
-
"members":{
|
876
|
-
"DataSourceId":{"shape":"EntityId"},
|
877
|
-
"DataSourceName":{"shape":"EntityName"},
|
878
|
-
"RDSData":{"shape":"RDSDataSpec"},
|
879
|
-
"RoleARN":{"shape":"RoleARN"},
|
880
|
-
"ComputeStatistics":{"shape":"ComputeStatistics"}
|
881
|
-
}
|
882
|
-
},
|
883
|
-
"CreateDataSourceFromRDSOutput":{
|
884
|
-
"type":"structure",
|
885
|
-
"members":{
|
886
|
-
"DataSourceId":{"shape":"EntityId"}
|
887
|
-
}
|
888
|
-
},
|
889
|
-
"CreateDataSourceFromRedshiftInput":{
|
890
|
-
"type":"structure",
|
891
|
-
"required":[
|
892
|
-
"DataSourceId",
|
893
|
-
"DataSpec",
|
894
|
-
"RoleARN"
|
895
|
-
],
|
896
|
-
"members":{
|
897
|
-
"DataSourceId":{"shape":"EntityId"},
|
898
|
-
"DataSourceName":{"shape":"EntityName"},
|
899
|
-
"DataSpec":{"shape":"RedshiftDataSpec"},
|
900
|
-
"RoleARN":{"shape":"RoleARN"},
|
901
|
-
"ComputeStatistics":{"shape":"ComputeStatistics"}
|
902
|
-
}
|
903
|
-
},
|
904
|
-
"CreateDataSourceFromRedshiftOutput":{
|
905
|
-
"type":"structure",
|
906
|
-
"members":{
|
907
|
-
"DataSourceId":{"shape":"EntityId"}
|
908
|
-
}
|
909
|
-
},
|
910
|
-
"CreateDataSourceFromS3Input":{
|
911
|
-
"type":"structure",
|
912
|
-
"required":[
|
913
|
-
"DataSourceId",
|
914
|
-
"DataSpec"
|
915
|
-
],
|
916
|
-
"members":{
|
917
|
-
"DataSourceId":{"shape":"EntityId"},
|
918
|
-
"DataSourceName":{"shape":"EntityName"},
|
919
|
-
"DataSpec":{"shape":"S3DataSpec"},
|
920
|
-
"ComputeStatistics":{"shape":"ComputeStatistics"}
|
921
|
-
}
|
922
|
-
},
|
923
|
-
"CreateDataSourceFromS3Output":{
|
924
|
-
"type":"structure",
|
925
|
-
"members":{
|
926
|
-
"DataSourceId":{"shape":"EntityId"}
|
927
|
-
}
|
928
|
-
},
|
929
|
-
"CreateEvaluationInput":{
|
930
|
-
"type":"structure",
|
931
|
-
"required":[
|
932
|
-
"EvaluationId",
|
933
|
-
"MLModelId",
|
934
|
-
"EvaluationDataSourceId"
|
935
|
-
],
|
936
|
-
"members":{
|
937
|
-
"EvaluationId":{"shape":"EntityId"},
|
938
|
-
"EvaluationName":{"shape":"EntityName"},
|
939
|
-
"MLModelId":{"shape":"EntityId"},
|
940
|
-
"EvaluationDataSourceId":{"shape":"EntityId"}
|
941
|
-
}
|
942
|
-
},
|
943
|
-
"CreateEvaluationOutput":{
|
944
|
-
"type":"structure",
|
945
|
-
"members":{
|
946
|
-
"EvaluationId":{"shape":"EntityId"}
|
947
|
-
}
|
948
|
-
},
|
949
|
-
"CreateMLModelInput":{
|
950
|
-
"type":"structure",
|
951
|
-
"required":[
|
952
|
-
"MLModelId",
|
953
|
-
"MLModelType",
|
954
|
-
"TrainingDataSourceId"
|
955
|
-
],
|
956
|
-
"members":{
|
957
|
-
"MLModelId":{"shape":"EntityId"},
|
958
|
-
"MLModelName":{"shape":"EntityName"},
|
959
|
-
"MLModelType":{"shape":"MLModelType"},
|
960
|
-
"Parameters":{"shape":"TrainingParameters"},
|
961
|
-
"TrainingDataSourceId":{"shape":"EntityId"},
|
962
|
-
"Recipe":{"shape":"Recipe"},
|
963
|
-
"RecipeUri":{"shape":"S3Url"}
|
964
|
-
}
|
965
|
-
},
|
966
|
-
"CreateMLModelOutput":{
|
967
|
-
"type":"structure",
|
968
|
-
"members":{
|
969
|
-
"MLModelId":{"shape":"EntityId"}
|
970
|
-
}
|
971
|
-
},
|
972
|
-
"CreateRealtimeEndpointInput":{
|
973
|
-
"type":"structure",
|
974
|
-
"required":["MLModelId"],
|
975
|
-
"members":{
|
976
|
-
"MLModelId":{"shape":"EntityId"}
|
977
|
-
}
|
978
|
-
},
|
979
|
-
"CreateRealtimeEndpointOutput":{
|
980
|
-
"type":"structure",
|
981
|
-
"members":{
|
982
|
-
"MLModelId":{"shape":"EntityId"},
|
983
|
-
"RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
|
984
|
-
}
|
985
|
-
},
|
986
|
-
"DataRearrangement":{"type":"string"},
|
987
|
-
"DataSchema":{
|
988
|
-
"type":"string",
|
989
|
-
"max":131071
|
990
|
-
},
|
991
|
-
"DataSource":{
|
992
|
-
"type":"structure",
|
993
|
-
"members":{
|
994
|
-
"DataSourceId":{"shape":"EntityId"},
|
995
|
-
"DataLocationS3":{"shape":"S3Url"},
|
996
|
-
"DataRearrangement":{"shape":"DataRearrangement"},
|
997
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
998
|
-
"CreatedAt":{"shape":"EpochTime"},
|
999
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1000
|
-
"DataSizeInBytes":{"shape":"LongType"},
|
1001
|
-
"NumberOfFiles":{"shape":"LongType"},
|
1002
|
-
"Name":{"shape":"EntityName"},
|
1003
|
-
"Status":{"shape":"EntityStatus"},
|
1004
|
-
"Message":{"shape":"Message"},
|
1005
|
-
"RedshiftMetadata":{"shape":"RedshiftMetadata"},
|
1006
|
-
"RDSMetadata":{"shape":"RDSMetadata"},
|
1007
|
-
"RoleARN":{"shape":"RoleARN"},
|
1008
|
-
"ComputeStatistics":{"shape":"ComputeStatistics"},
|
1009
|
-
"ComputeTime":{"shape":"LongType"},
|
1010
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1011
|
-
"StartedAt":{"shape":"EpochTime"}
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
"DataSourceFilterVariable":{
|
1015
|
-
"type":"string",
|
1016
|
-
"enum":[
|
1017
|
-
"CreatedAt",
|
1018
|
-
"LastUpdatedAt",
|
1019
|
-
"Status",
|
1020
|
-
"Name",
|
1021
|
-
"DataLocationS3",
|
1022
|
-
"IAMUser"
|
1023
|
-
]
|
1024
|
-
},
|
1025
|
-
"DataSources":{
|
1026
|
-
"type":"list",
|
1027
|
-
"member":{"shape":"DataSource"}
|
1028
|
-
},
|
1029
|
-
"DeleteBatchPredictionInput":{
|
1030
|
-
"type":"structure",
|
1031
|
-
"required":["BatchPredictionId"],
|
1032
|
-
"members":{
|
1033
|
-
"BatchPredictionId":{"shape":"EntityId"}
|
1034
|
-
}
|
1035
|
-
},
|
1036
|
-
"DeleteBatchPredictionOutput":{
|
1037
|
-
"type":"structure",
|
1038
|
-
"members":{
|
1039
|
-
"BatchPredictionId":{"shape":"EntityId"}
|
1040
|
-
}
|
1041
|
-
},
|
1042
|
-
"DeleteDataSourceInput":{
|
1043
|
-
"type":"structure",
|
1044
|
-
"required":["DataSourceId"],
|
1045
|
-
"members":{
|
1046
|
-
"DataSourceId":{"shape":"EntityId"}
|
1047
|
-
}
|
1048
|
-
},
|
1049
|
-
"DeleteDataSourceOutput":{
|
1050
|
-
"type":"structure",
|
1051
|
-
"members":{
|
1052
|
-
"DataSourceId":{"shape":"EntityId"}
|
1053
|
-
}
|
1054
|
-
},
|
1055
|
-
"DeleteEvaluationInput":{
|
1056
|
-
"type":"structure",
|
1057
|
-
"required":["EvaluationId"],
|
1058
|
-
"members":{
|
1059
|
-
"EvaluationId":{"shape":"EntityId"}
|
1060
|
-
}
|
1061
|
-
},
|
1062
|
-
"DeleteEvaluationOutput":{
|
1063
|
-
"type":"structure",
|
1064
|
-
"members":{
|
1065
|
-
"EvaluationId":{"shape":"EntityId"}
|
1066
|
-
}
|
1067
|
-
},
|
1068
|
-
"DeleteMLModelInput":{
|
1069
|
-
"type":"structure",
|
1070
|
-
"required":["MLModelId"],
|
1071
|
-
"members":{
|
1072
|
-
"MLModelId":{"shape":"EntityId"}
|
1073
|
-
}
|
1074
|
-
},
|
1075
|
-
"DeleteMLModelOutput":{
|
1076
|
-
"type":"structure",
|
1077
|
-
"members":{
|
1078
|
-
"MLModelId":{"shape":"EntityId"}
|
1079
|
-
}
|
1080
|
-
},
|
1081
|
-
"DeleteRealtimeEndpointInput":{
|
1082
|
-
"type":"structure",
|
1083
|
-
"required":["MLModelId"],
|
1084
|
-
"members":{
|
1085
|
-
"MLModelId":{"shape":"EntityId"}
|
1086
|
-
}
|
1087
|
-
},
|
1088
|
-
"DeleteRealtimeEndpointOutput":{
|
1089
|
-
"type":"structure",
|
1090
|
-
"members":{
|
1091
|
-
"MLModelId":{"shape":"EntityId"},
|
1092
|
-
"RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
|
1093
|
-
}
|
1094
|
-
},
|
1095
|
-
"DeleteTagsInput":{
|
1096
|
-
"type":"structure",
|
1097
|
-
"required":[
|
1098
|
-
"TagKeys",
|
1099
|
-
"ResourceId",
|
1100
|
-
"ResourceType"
|
1101
|
-
],
|
1102
|
-
"members":{
|
1103
|
-
"TagKeys":{"shape":"TagKeyList"},
|
1104
|
-
"ResourceId":{"shape":"EntityId"},
|
1105
|
-
"ResourceType":{"shape":"TaggableResourceType"}
|
1106
|
-
}
|
1107
|
-
},
|
1108
|
-
"DeleteTagsOutput":{
|
1109
|
-
"type":"structure",
|
1110
|
-
"members":{
|
1111
|
-
"ResourceId":{"shape":"EntityId"},
|
1112
|
-
"ResourceType":{"shape":"TaggableResourceType"}
|
1113
|
-
}
|
1114
|
-
},
|
1115
|
-
"DescribeBatchPredictionsInput":{
|
1116
|
-
"type":"structure",
|
1117
|
-
"members":{
|
1118
|
-
"FilterVariable":{"shape":"BatchPredictionFilterVariable"},
|
1119
|
-
"EQ":{"shape":"ComparatorValue"},
|
1120
|
-
"GT":{"shape":"ComparatorValue"},
|
1121
|
-
"LT":{"shape":"ComparatorValue"},
|
1122
|
-
"GE":{"shape":"ComparatorValue"},
|
1123
|
-
"LE":{"shape":"ComparatorValue"},
|
1124
|
-
"NE":{"shape":"ComparatorValue"},
|
1125
|
-
"Prefix":{"shape":"ComparatorValue"},
|
1126
|
-
"SortOrder":{"shape":"SortOrder"},
|
1127
|
-
"NextToken":{"shape":"StringType"},
|
1128
|
-
"Limit":{"shape":"PageLimit"}
|
1129
|
-
}
|
1130
|
-
},
|
1131
|
-
"DescribeBatchPredictionsOutput":{
|
1132
|
-
"type":"structure",
|
1133
|
-
"members":{
|
1134
|
-
"Results":{"shape":"BatchPredictions"},
|
1135
|
-
"NextToken":{"shape":"StringType"}
|
1136
|
-
}
|
1137
|
-
},
|
1138
|
-
"DescribeDataSourcesInput":{
|
1139
|
-
"type":"structure",
|
1140
|
-
"members":{
|
1141
|
-
"FilterVariable":{"shape":"DataSourceFilterVariable"},
|
1142
|
-
"EQ":{"shape":"ComparatorValue"},
|
1143
|
-
"GT":{"shape":"ComparatorValue"},
|
1144
|
-
"LT":{"shape":"ComparatorValue"},
|
1145
|
-
"GE":{"shape":"ComparatorValue"},
|
1146
|
-
"LE":{"shape":"ComparatorValue"},
|
1147
|
-
"NE":{"shape":"ComparatorValue"},
|
1148
|
-
"Prefix":{"shape":"ComparatorValue"},
|
1149
|
-
"SortOrder":{"shape":"SortOrder"},
|
1150
|
-
"NextToken":{"shape":"StringType"},
|
1151
|
-
"Limit":{"shape":"PageLimit"}
|
1152
|
-
}
|
1153
|
-
},
|
1154
|
-
"DescribeDataSourcesOutput":{
|
1155
|
-
"type":"structure",
|
1156
|
-
"members":{
|
1157
|
-
"Results":{"shape":"DataSources"},
|
1158
|
-
"NextToken":{"shape":"StringType"}
|
1159
|
-
}
|
1160
|
-
},
|
1161
|
-
"DescribeEvaluationsInput":{
|
1162
|
-
"type":"structure",
|
1163
|
-
"members":{
|
1164
|
-
"FilterVariable":{"shape":"EvaluationFilterVariable"},
|
1165
|
-
"EQ":{"shape":"ComparatorValue"},
|
1166
|
-
"GT":{"shape":"ComparatorValue"},
|
1167
|
-
"LT":{"shape":"ComparatorValue"},
|
1168
|
-
"GE":{"shape":"ComparatorValue"},
|
1169
|
-
"LE":{"shape":"ComparatorValue"},
|
1170
|
-
"NE":{"shape":"ComparatorValue"},
|
1171
|
-
"Prefix":{"shape":"ComparatorValue"},
|
1172
|
-
"SortOrder":{"shape":"SortOrder"},
|
1173
|
-
"NextToken":{"shape":"StringType"},
|
1174
|
-
"Limit":{"shape":"PageLimit"}
|
1175
|
-
}
|
1176
|
-
},
|
1177
|
-
"DescribeEvaluationsOutput":{
|
1178
|
-
"type":"structure",
|
1179
|
-
"members":{
|
1180
|
-
"Results":{"shape":"Evaluations"},
|
1181
|
-
"NextToken":{"shape":"StringType"}
|
1182
|
-
}
|
1183
|
-
},
|
1184
|
-
"DescribeMLModelsInput":{
|
1185
|
-
"type":"structure",
|
1186
|
-
"members":{
|
1187
|
-
"FilterVariable":{"shape":"MLModelFilterVariable"},
|
1188
|
-
"EQ":{"shape":"ComparatorValue"},
|
1189
|
-
"GT":{"shape":"ComparatorValue"},
|
1190
|
-
"LT":{"shape":"ComparatorValue"},
|
1191
|
-
"GE":{"shape":"ComparatorValue"},
|
1192
|
-
"LE":{"shape":"ComparatorValue"},
|
1193
|
-
"NE":{"shape":"ComparatorValue"},
|
1194
|
-
"Prefix":{"shape":"ComparatorValue"},
|
1195
|
-
"SortOrder":{"shape":"SortOrder"},
|
1196
|
-
"NextToken":{"shape":"StringType"},
|
1197
|
-
"Limit":{"shape":"PageLimit"}
|
1198
|
-
}
|
1199
|
-
},
|
1200
|
-
"DescribeMLModelsOutput":{
|
1201
|
-
"type":"structure",
|
1202
|
-
"members":{
|
1203
|
-
"Results":{"shape":"MLModels"},
|
1204
|
-
"NextToken":{"shape":"StringType"}
|
1205
|
-
}
|
1206
|
-
},
|
1207
|
-
"DescribeTagsInput":{
|
1208
|
-
"type":"structure",
|
1209
|
-
"required":[
|
1210
|
-
"ResourceId",
|
1211
|
-
"ResourceType"
|
1212
|
-
],
|
1213
|
-
"members":{
|
1214
|
-
"ResourceId":{"shape":"EntityId"},
|
1215
|
-
"ResourceType":{"shape":"TaggableResourceType"}
|
1216
|
-
}
|
1217
|
-
},
|
1218
|
-
"DescribeTagsOutput":{
|
1219
|
-
"type":"structure",
|
1220
|
-
"members":{
|
1221
|
-
"ResourceId":{"shape":"EntityId"},
|
1222
|
-
"ResourceType":{"shape":"TaggableResourceType"},
|
1223
|
-
"Tags":{"shape":"TagList"}
|
1224
|
-
}
|
1225
|
-
},
|
1226
|
-
"DetailsAttributes":{
|
1227
|
-
"type":"string",
|
1228
|
-
"enum":[
|
1229
|
-
"PredictiveModelType",
|
1230
|
-
"Algorithm"
|
1231
|
-
]
|
1232
|
-
},
|
1233
|
-
"DetailsMap":{
|
1234
|
-
"type":"map",
|
1235
|
-
"key":{"shape":"DetailsAttributes"},
|
1236
|
-
"value":{"shape":"DetailsValue"}
|
1237
|
-
},
|
1238
|
-
"DetailsValue":{
|
1239
|
-
"type":"string",
|
1240
|
-
"min":1
|
1241
|
-
},
|
1242
|
-
"EDPPipelineId":{
|
1243
|
-
"type":"string",
|
1244
|
-
"min":1,
|
1245
|
-
"max":1024
|
1246
|
-
},
|
1247
|
-
"EDPResourceRole":{
|
1248
|
-
"type":"string",
|
1249
|
-
"min":1,
|
1250
|
-
"max":64
|
1251
|
-
},
|
1252
|
-
"EDPSecurityGroupId":{
|
1253
|
-
"type":"string",
|
1254
|
-
"min":1,
|
1255
|
-
"max":255
|
1256
|
-
},
|
1257
|
-
"EDPSecurityGroupIds":{
|
1258
|
-
"type":"list",
|
1259
|
-
"member":{"shape":"EDPSecurityGroupId"}
|
1260
|
-
},
|
1261
|
-
"EDPServiceRole":{
|
1262
|
-
"type":"string",
|
1263
|
-
"min":1,
|
1264
|
-
"max":64
|
1265
|
-
},
|
1266
|
-
"EDPSubnetId":{
|
1267
|
-
"type":"string",
|
1268
|
-
"min":1,
|
1269
|
-
"max":255
|
1270
|
-
},
|
1271
|
-
"EntityId":{
|
1272
|
-
"type":"string",
|
1273
|
-
"min":1,
|
1274
|
-
"max":64,
|
1275
|
-
"pattern":"[a-zA-Z0-9_.-]+"
|
1276
|
-
},
|
1277
|
-
"EntityName":{
|
1278
|
-
"type":"string",
|
1279
|
-
"max":1024,
|
1280
|
-
"pattern":".*\\S.*|^$"
|
1281
|
-
},
|
1282
|
-
"EntityStatus":{
|
1283
|
-
"type":"string",
|
1284
|
-
"enum":[
|
1285
|
-
"PENDING",
|
1286
|
-
"INPROGRESS",
|
1287
|
-
"FAILED",
|
1288
|
-
"COMPLETED",
|
1289
|
-
"DELETED"
|
1290
|
-
]
|
1291
|
-
},
|
1292
|
-
"EpochTime":{"type":"timestamp"},
|
1293
|
-
"ErrorCode":{"type":"integer"},
|
1294
|
-
"ErrorMessage":{
|
1295
|
-
"type":"string",
|
1296
|
-
"max":2048
|
1297
|
-
},
|
1298
|
-
"Evaluation":{
|
1299
|
-
"type":"structure",
|
1300
|
-
"members":{
|
1301
|
-
"EvaluationId":{"shape":"EntityId"},
|
1302
|
-
"MLModelId":{"shape":"EntityId"},
|
1303
|
-
"EvaluationDataSourceId":{"shape":"EntityId"},
|
1304
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
1305
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1306
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1307
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1308
|
-
"Name":{"shape":"EntityName"},
|
1309
|
-
"Status":{"shape":"EntityStatus"},
|
1310
|
-
"PerformanceMetrics":{"shape":"PerformanceMetrics"},
|
1311
|
-
"Message":{"shape":"Message"},
|
1312
|
-
"ComputeTime":{"shape":"LongType"},
|
1313
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1314
|
-
"StartedAt":{"shape":"EpochTime"}
|
1315
|
-
}
|
1316
|
-
},
|
1317
|
-
"EvaluationFilterVariable":{
|
1318
|
-
"type":"string",
|
1319
|
-
"enum":[
|
1320
|
-
"CreatedAt",
|
1321
|
-
"LastUpdatedAt",
|
1322
|
-
"Status",
|
1323
|
-
"Name",
|
1324
|
-
"IAMUser",
|
1325
|
-
"MLModelId",
|
1326
|
-
"DataSourceId",
|
1327
|
-
"DataURI"
|
1328
|
-
]
|
1329
|
-
},
|
1330
|
-
"Evaluations":{
|
1331
|
-
"type":"list",
|
1332
|
-
"member":{"shape":"Evaluation"}
|
1333
|
-
},
|
1334
|
-
"GetBatchPredictionInput":{
|
1335
|
-
"type":"structure",
|
1336
|
-
"required":["BatchPredictionId"],
|
1337
|
-
"members":{
|
1338
|
-
"BatchPredictionId":{"shape":"EntityId"}
|
1339
|
-
}
|
1340
|
-
},
|
1341
|
-
"GetBatchPredictionOutput":{
|
1342
|
-
"type":"structure",
|
1343
|
-
"members":{
|
1344
|
-
"BatchPredictionId":{"shape":"EntityId"},
|
1345
|
-
"MLModelId":{"shape":"EntityId"},
|
1346
|
-
"BatchPredictionDataSourceId":{"shape":"EntityId"},
|
1347
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
1348
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1349
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1350
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1351
|
-
"Name":{"shape":"EntityName"},
|
1352
|
-
"Status":{"shape":"EntityStatus"},
|
1353
|
-
"OutputUri":{"shape":"S3Url"},
|
1354
|
-
"LogUri":{"shape":"PresignedS3Url"},
|
1355
|
-
"Message":{"shape":"Message"},
|
1356
|
-
"ComputeTime":{"shape":"LongType"},
|
1357
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1358
|
-
"StartedAt":{"shape":"EpochTime"},
|
1359
|
-
"TotalRecordCount":{"shape":"LongType"},
|
1360
|
-
"InvalidRecordCount":{"shape":"LongType"}
|
1361
|
-
}
|
1362
|
-
},
|
1363
|
-
"GetDataSourceInput":{
|
1364
|
-
"type":"structure",
|
1365
|
-
"required":["DataSourceId"],
|
1366
|
-
"members":{
|
1367
|
-
"DataSourceId":{"shape":"EntityId"},
|
1368
|
-
"Verbose":{"shape":"Verbose"}
|
1369
|
-
}
|
1370
|
-
},
|
1371
|
-
"GetDataSourceOutput":{
|
1372
|
-
"type":"structure",
|
1373
|
-
"members":{
|
1374
|
-
"DataSourceId":{"shape":"EntityId"},
|
1375
|
-
"DataLocationS3":{"shape":"S3Url"},
|
1376
|
-
"DataRearrangement":{"shape":"DataRearrangement"},
|
1377
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1378
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1379
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1380
|
-
"DataSizeInBytes":{"shape":"LongType"},
|
1381
|
-
"NumberOfFiles":{"shape":"LongType"},
|
1382
|
-
"Name":{"shape":"EntityName"},
|
1383
|
-
"Status":{"shape":"EntityStatus"},
|
1384
|
-
"LogUri":{"shape":"PresignedS3Url"},
|
1385
|
-
"Message":{"shape":"Message"},
|
1386
|
-
"RedshiftMetadata":{"shape":"RedshiftMetadata"},
|
1387
|
-
"RDSMetadata":{"shape":"RDSMetadata"},
|
1388
|
-
"RoleARN":{"shape":"RoleARN"},
|
1389
|
-
"ComputeStatistics":{"shape":"ComputeStatistics"},
|
1390
|
-
"ComputeTime":{"shape":"LongType"},
|
1391
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1392
|
-
"StartedAt":{"shape":"EpochTime"},
|
1393
|
-
"DataSourceSchema":{"shape":"DataSchema"}
|
1394
|
-
}
|
1395
|
-
},
|
1396
|
-
"GetEvaluationInput":{
|
1397
|
-
"type":"structure",
|
1398
|
-
"required":["EvaluationId"],
|
1399
|
-
"members":{
|
1400
|
-
"EvaluationId":{"shape":"EntityId"}
|
1401
|
-
}
|
1402
|
-
},
|
1403
|
-
"GetEvaluationOutput":{
|
1404
|
-
"type":"structure",
|
1405
|
-
"members":{
|
1406
|
-
"EvaluationId":{"shape":"EntityId"},
|
1407
|
-
"MLModelId":{"shape":"EntityId"},
|
1408
|
-
"EvaluationDataSourceId":{"shape":"EntityId"},
|
1409
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
1410
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1411
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1412
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1413
|
-
"Name":{"shape":"EntityName"},
|
1414
|
-
"Status":{"shape":"EntityStatus"},
|
1415
|
-
"PerformanceMetrics":{"shape":"PerformanceMetrics"},
|
1416
|
-
"LogUri":{"shape":"PresignedS3Url"},
|
1417
|
-
"Message":{"shape":"Message"},
|
1418
|
-
"ComputeTime":{"shape":"LongType"},
|
1419
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1420
|
-
"StartedAt":{"shape":"EpochTime"}
|
1421
|
-
}
|
1422
|
-
},
|
1423
|
-
"GetMLModelInput":{
|
1424
|
-
"type":"structure",
|
1425
|
-
"required":["MLModelId"],
|
1426
|
-
"members":{
|
1427
|
-
"MLModelId":{"shape":"EntityId"},
|
1428
|
-
"Verbose":{"shape":"Verbose"}
|
1429
|
-
}
|
1430
|
-
},
|
1431
|
-
"GetMLModelOutput":{
|
1432
|
-
"type":"structure",
|
1433
|
-
"members":{
|
1434
|
-
"MLModelId":{"shape":"EntityId"},
|
1435
|
-
"TrainingDataSourceId":{"shape":"EntityId"},
|
1436
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1437
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1438
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1439
|
-
"Name":{"shape":"MLModelName"},
|
1440
|
-
"Status":{"shape":"EntityStatus"},
|
1441
|
-
"SizeInBytes":{"shape":"LongType"},
|
1442
|
-
"EndpointInfo":{"shape":"RealtimeEndpointInfo"},
|
1443
|
-
"TrainingParameters":{"shape":"TrainingParameters"},
|
1444
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
1445
|
-
"MLModelType":{"shape":"MLModelType"},
|
1446
|
-
"ScoreThreshold":{"shape":"ScoreThreshold"},
|
1447
|
-
"ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
|
1448
|
-
"LogUri":{"shape":"PresignedS3Url"},
|
1449
|
-
"Message":{"shape":"Message"},
|
1450
|
-
"ComputeTime":{"shape":"LongType"},
|
1451
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1452
|
-
"StartedAt":{"shape":"EpochTime"},
|
1453
|
-
"Recipe":{"shape":"Recipe"},
|
1454
|
-
"Schema":{"shape":"DataSchema"}
|
1455
|
-
}
|
1456
|
-
},
|
1457
|
-
"IdempotentParameterMismatchException":{
|
1458
|
-
"type":"structure",
|
1459
|
-
"members":{
|
1460
|
-
"message":{"shape":"ErrorMessage"},
|
1461
|
-
"code":{"shape":"ErrorCode"}
|
1462
|
-
},
|
1463
|
-
"error":{"httpStatusCode":400},
|
1464
|
-
"exception":true
|
1465
|
-
},
|
1466
|
-
"IntegerType":{"type":"integer"},
|
1467
|
-
"InternalServerException":{
|
1468
|
-
"type":"structure",
|
1469
|
-
"members":{
|
1470
|
-
"message":{"shape":"ErrorMessage"},
|
1471
|
-
"code":{"shape":"ErrorCode"}
|
1472
|
-
},
|
1473
|
-
"error":{"httpStatusCode":500},
|
1474
|
-
"exception":true,
|
1475
|
-
"fault":true
|
1476
|
-
},
|
1477
|
-
"InvalidInputException":{
|
1478
|
-
"type":"structure",
|
1479
|
-
"members":{
|
1480
|
-
"message":{"shape":"ErrorMessage"},
|
1481
|
-
"code":{"shape":"ErrorCode"}
|
1482
|
-
},
|
1483
|
-
"error":{"httpStatusCode":400},
|
1484
|
-
"exception":true
|
1485
|
-
},
|
1486
|
-
"InvalidTagException":{
|
1487
|
-
"type":"structure",
|
1488
|
-
"members":{
|
1489
|
-
"message":{"shape":"ErrorMessage"}
|
1490
|
-
},
|
1491
|
-
"exception":true
|
1492
|
-
},
|
1493
|
-
"Label":{
|
1494
|
-
"type":"string",
|
1495
|
-
"min":1
|
1496
|
-
},
|
1497
|
-
"LimitExceededException":{
|
1498
|
-
"type":"structure",
|
1499
|
-
"members":{
|
1500
|
-
"message":{"shape":"ErrorMessage"},
|
1501
|
-
"code":{"shape":"ErrorCode"}
|
1502
|
-
},
|
1503
|
-
"error":{"httpStatusCode":417},
|
1504
|
-
"exception":true
|
1505
|
-
},
|
1506
|
-
"LongType":{"type":"long"},
|
1507
|
-
"MLModel":{
|
1508
|
-
"type":"structure",
|
1509
|
-
"members":{
|
1510
|
-
"MLModelId":{"shape":"EntityId"},
|
1511
|
-
"TrainingDataSourceId":{"shape":"EntityId"},
|
1512
|
-
"CreatedByIamUser":{"shape":"AwsUserArn"},
|
1513
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1514
|
-
"LastUpdatedAt":{"shape":"EpochTime"},
|
1515
|
-
"Name":{"shape":"MLModelName"},
|
1516
|
-
"Status":{"shape":"EntityStatus"},
|
1517
|
-
"SizeInBytes":{"shape":"LongType"},
|
1518
|
-
"EndpointInfo":{"shape":"RealtimeEndpointInfo"},
|
1519
|
-
"TrainingParameters":{"shape":"TrainingParameters"},
|
1520
|
-
"InputDataLocationS3":{"shape":"S3Url"},
|
1521
|
-
"Algorithm":{"shape":"Algorithm"},
|
1522
|
-
"MLModelType":{"shape":"MLModelType"},
|
1523
|
-
"ScoreThreshold":{"shape":"ScoreThreshold"},
|
1524
|
-
"ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
|
1525
|
-
"Message":{"shape":"Message"},
|
1526
|
-
"ComputeTime":{"shape":"LongType"},
|
1527
|
-
"FinishedAt":{"shape":"EpochTime"},
|
1528
|
-
"StartedAt":{"shape":"EpochTime"}
|
1529
|
-
}
|
1530
|
-
},
|
1531
|
-
"MLModelFilterVariable":{
|
1532
|
-
"type":"string",
|
1533
|
-
"enum":[
|
1534
|
-
"CreatedAt",
|
1535
|
-
"LastUpdatedAt",
|
1536
|
-
"Status",
|
1537
|
-
"Name",
|
1538
|
-
"IAMUser",
|
1539
|
-
"TrainingDataSourceId",
|
1540
|
-
"RealtimeEndpointStatus",
|
1541
|
-
"MLModelType",
|
1542
|
-
"Algorithm",
|
1543
|
-
"TrainingDataURI"
|
1544
|
-
]
|
1545
|
-
},
|
1546
|
-
"MLModelName":{
|
1547
|
-
"type":"string",
|
1548
|
-
"max":1024
|
1549
|
-
},
|
1550
|
-
"MLModelType":{
|
1551
|
-
"type":"string",
|
1552
|
-
"enum":[
|
1553
|
-
"REGRESSION",
|
1554
|
-
"BINARY",
|
1555
|
-
"MULTICLASS"
|
1556
|
-
]
|
1557
|
-
},
|
1558
|
-
"MLModels":{
|
1559
|
-
"type":"list",
|
1560
|
-
"member":{"shape":"MLModel"}
|
1561
|
-
},
|
1562
|
-
"Message":{
|
1563
|
-
"type":"string",
|
1564
|
-
"max":10240
|
1565
|
-
},
|
1566
|
-
"PageLimit":{
|
1567
|
-
"type":"integer",
|
1568
|
-
"min":1,
|
1569
|
-
"max":100
|
1570
|
-
},
|
1571
|
-
"PerformanceMetrics":{
|
1572
|
-
"type":"structure",
|
1573
|
-
"members":{
|
1574
|
-
"Properties":{"shape":"PerformanceMetricsProperties"}
|
1575
|
-
}
|
1576
|
-
},
|
1577
|
-
"PerformanceMetricsProperties":{
|
1578
|
-
"type":"map",
|
1579
|
-
"key":{"shape":"PerformanceMetricsPropertyKey"},
|
1580
|
-
"value":{"shape":"PerformanceMetricsPropertyValue"}
|
1581
|
-
},
|
1582
|
-
"PerformanceMetricsPropertyKey":{"type":"string"},
|
1583
|
-
"PerformanceMetricsPropertyValue":{"type":"string"},
|
1584
|
-
"PredictInput":{
|
1585
|
-
"type":"structure",
|
1586
|
-
"required":[
|
1587
|
-
"MLModelId",
|
1588
|
-
"Record",
|
1589
|
-
"PredictEndpoint"
|
1590
|
-
],
|
1591
|
-
"members":{
|
1592
|
-
"MLModelId":{"shape":"EntityId"},
|
1593
|
-
"Record":{"shape":"Record"},
|
1594
|
-
"PredictEndpoint":{"shape":"VipURL"}
|
1595
|
-
}
|
1596
|
-
},
|
1597
|
-
"PredictOutput":{
|
1598
|
-
"type":"structure",
|
1599
|
-
"members":{
|
1600
|
-
"Prediction":{"shape":"Prediction"}
|
1601
|
-
}
|
1602
|
-
},
|
1603
|
-
"Prediction":{
|
1604
|
-
"type":"structure",
|
1605
|
-
"members":{
|
1606
|
-
"predictedLabel":{"shape":"Label"},
|
1607
|
-
"predictedValue":{"shape":"floatLabel"},
|
1608
|
-
"predictedScores":{"shape":"ScoreValuePerLabelMap"},
|
1609
|
-
"details":{"shape":"DetailsMap"}
|
1610
|
-
}
|
1611
|
-
},
|
1612
|
-
"PredictorNotMountedException":{
|
1613
|
-
"type":"structure",
|
1614
|
-
"members":{
|
1615
|
-
"message":{"shape":"ErrorMessage"}
|
1616
|
-
},
|
1617
|
-
"error":{"httpStatusCode":400},
|
1618
|
-
"exception":true
|
1619
|
-
},
|
1620
|
-
"PresignedS3Url":{"type":"string"},
|
1621
|
-
"RDSDataSpec":{
|
1622
|
-
"type":"structure",
|
1623
|
-
"required":[
|
1624
|
-
"DatabaseInformation",
|
1625
|
-
"SelectSqlQuery",
|
1626
|
-
"DatabaseCredentials",
|
1627
|
-
"S3StagingLocation",
|
1628
|
-
"ResourceRole",
|
1629
|
-
"ServiceRole",
|
1630
|
-
"SubnetId",
|
1631
|
-
"SecurityGroupIds"
|
1632
|
-
],
|
1633
|
-
"members":{
|
1634
|
-
"DatabaseInformation":{"shape":"RDSDatabase"},
|
1635
|
-
"SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
|
1636
|
-
"DatabaseCredentials":{"shape":"RDSDatabaseCredentials"},
|
1637
|
-
"S3StagingLocation":{"shape":"S3Url"},
|
1638
|
-
"DataRearrangement":{"shape":"DataRearrangement"},
|
1639
|
-
"DataSchema":{"shape":"DataSchema"},
|
1640
|
-
"DataSchemaUri":{"shape":"S3Url"},
|
1641
|
-
"ResourceRole":{"shape":"EDPResourceRole"},
|
1642
|
-
"ServiceRole":{"shape":"EDPServiceRole"},
|
1643
|
-
"SubnetId":{"shape":"EDPSubnetId"},
|
1644
|
-
"SecurityGroupIds":{"shape":"EDPSecurityGroupIds"}
|
1645
|
-
}
|
1646
|
-
},
|
1647
|
-
"RDSDatabase":{
|
1648
|
-
"type":"structure",
|
1649
|
-
"required":[
|
1650
|
-
"InstanceIdentifier",
|
1651
|
-
"DatabaseName"
|
1652
|
-
],
|
1653
|
-
"members":{
|
1654
|
-
"InstanceIdentifier":{"shape":"RDSInstanceIdentifier"},
|
1655
|
-
"DatabaseName":{"shape":"RDSDatabaseName"}
|
1656
|
-
}
|
1657
|
-
},
|
1658
|
-
"RDSDatabaseCredentials":{
|
1659
|
-
"type":"structure",
|
1660
|
-
"required":[
|
1661
|
-
"Username",
|
1662
|
-
"Password"
|
1663
|
-
],
|
1664
|
-
"members":{
|
1665
|
-
"Username":{"shape":"RDSDatabaseUsername"},
|
1666
|
-
"Password":{"shape":"RDSDatabasePassword"}
|
1667
|
-
}
|
1668
|
-
},
|
1669
|
-
"RDSDatabaseName":{
|
1670
|
-
"type":"string",
|
1671
|
-
"min":1,
|
1672
|
-
"max":64
|
1673
|
-
},
|
1674
|
-
"RDSDatabasePassword":{
|
1675
|
-
"type":"string",
|
1676
|
-
"min":8,
|
1677
|
-
"max":128
|
1678
|
-
},
|
1679
|
-
"RDSDatabaseUsername":{
|
1680
|
-
"type":"string",
|
1681
|
-
"min":1,
|
1682
|
-
"max":128
|
1683
|
-
},
|
1684
|
-
"RDSInstanceIdentifier":{
|
1685
|
-
"type":"string",
|
1686
|
-
"min":1,
|
1687
|
-
"max":63,
|
1688
|
-
"pattern":"[a-z0-9-]+"
|
1689
|
-
},
|
1690
|
-
"RDSMetadata":{
|
1691
|
-
"type":"structure",
|
1692
|
-
"members":{
|
1693
|
-
"Database":{"shape":"RDSDatabase"},
|
1694
|
-
"DatabaseUserName":{"shape":"RDSDatabaseUsername"},
|
1695
|
-
"SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
|
1696
|
-
"ResourceRole":{"shape":"EDPResourceRole"},
|
1697
|
-
"ServiceRole":{"shape":"EDPServiceRole"},
|
1698
|
-
"DataPipelineId":{"shape":"EDPPipelineId"}
|
1699
|
-
}
|
1700
|
-
},
|
1701
|
-
"RDSSelectSqlQuery":{
|
1702
|
-
"type":"string",
|
1703
|
-
"min":1,
|
1704
|
-
"max":16777216
|
1705
|
-
},
|
1706
|
-
"RealtimeEndpointInfo":{
|
1707
|
-
"type":"structure",
|
1708
|
-
"members":{
|
1709
|
-
"PeakRequestsPerSecond":{"shape":"IntegerType"},
|
1710
|
-
"CreatedAt":{"shape":"EpochTime"},
|
1711
|
-
"EndpointUrl":{"shape":"VipURL"},
|
1712
|
-
"EndpointStatus":{"shape":"RealtimeEndpointStatus"}
|
1713
|
-
}
|
1714
|
-
},
|
1715
|
-
"RealtimeEndpointStatus":{
|
1716
|
-
"type":"string",
|
1717
|
-
"enum":[
|
1718
|
-
"NONE",
|
1719
|
-
"READY",
|
1720
|
-
"UPDATING",
|
1721
|
-
"FAILED"
|
1722
|
-
]
|
1723
|
-
},
|
1724
|
-
"Recipe":{
|
1725
|
-
"type":"string",
|
1726
|
-
"max":131071
|
1727
|
-
},
|
1728
|
-
"Record":{
|
1729
|
-
"type":"map",
|
1730
|
-
"key":{"shape":"VariableName"},
|
1731
|
-
"value":{"shape":"VariableValue"}
|
1732
|
-
},
|
1733
|
-
"RedshiftClusterIdentifier":{
|
1734
|
-
"type":"string",
|
1735
|
-
"min":1,
|
1736
|
-
"max":63,
|
1737
|
-
"pattern":"[a-z0-9-]+"
|
1738
|
-
},
|
1739
|
-
"RedshiftDataSpec":{
|
1740
|
-
"type":"structure",
|
1741
|
-
"required":[
|
1742
|
-
"DatabaseInformation",
|
1743
|
-
"SelectSqlQuery",
|
1744
|
-
"DatabaseCredentials",
|
1745
|
-
"S3StagingLocation"
|
1746
|
-
],
|
1747
|
-
"members":{
|
1748
|
-
"DatabaseInformation":{"shape":"RedshiftDatabase"},
|
1749
|
-
"SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"},
|
1750
|
-
"DatabaseCredentials":{"shape":"RedshiftDatabaseCredentials"},
|
1751
|
-
"S3StagingLocation":{"shape":"S3Url"},
|
1752
|
-
"DataRearrangement":{"shape":"DataRearrangement"},
|
1753
|
-
"DataSchema":{"shape":"DataSchema"},
|
1754
|
-
"DataSchemaUri":{"shape":"S3Url"}
|
1755
|
-
}
|
1756
|
-
},
|
1757
|
-
"RedshiftDatabase":{
|
1758
|
-
"type":"structure",
|
1759
|
-
"required":[
|
1760
|
-
"DatabaseName",
|
1761
|
-
"ClusterIdentifier"
|
1762
|
-
],
|
1763
|
-
"members":{
|
1764
|
-
"DatabaseName":{"shape":"RedshiftDatabaseName"},
|
1765
|
-
"ClusterIdentifier":{"shape":"RedshiftClusterIdentifier"}
|
1766
|
-
}
|
1767
|
-
},
|
1768
|
-
"RedshiftDatabaseCredentials":{
|
1769
|
-
"type":"structure",
|
1770
|
-
"required":[
|
1771
|
-
"Username",
|
1772
|
-
"Password"
|
1773
|
-
],
|
1774
|
-
"members":{
|
1775
|
-
"Username":{"shape":"RedshiftDatabaseUsername"},
|
1776
|
-
"Password":{"shape":"RedshiftDatabasePassword"}
|
1777
|
-
}
|
1778
|
-
},
|
1779
|
-
"RedshiftDatabaseName":{
|
1780
|
-
"type":"string",
|
1781
|
-
"min":1,
|
1782
|
-
"max":64,
|
1783
|
-
"pattern":"[a-z0-9]+"
|
1784
|
-
},
|
1785
|
-
"RedshiftDatabasePassword":{
|
1786
|
-
"type":"string",
|
1787
|
-
"min":8,
|
1788
|
-
"max":64
|
1789
|
-
},
|
1790
|
-
"RedshiftDatabaseUsername":{
|
1791
|
-
"type":"string",
|
1792
|
-
"min":1,
|
1793
|
-
"max":128
|
1794
|
-
},
|
1795
|
-
"RedshiftMetadata":{
|
1796
|
-
"type":"structure",
|
1797
|
-
"members":{
|
1798
|
-
"RedshiftDatabase":{"shape":"RedshiftDatabase"},
|
1799
|
-
"DatabaseUserName":{"shape":"RedshiftDatabaseUsername"},
|
1800
|
-
"SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"}
|
1801
|
-
}
|
1802
|
-
},
|
1803
|
-
"RedshiftSelectSqlQuery":{
|
1804
|
-
"type":"string",
|
1805
|
-
"min":1,
|
1806
|
-
"max":16777216
|
1807
|
-
},
|
1808
|
-
"ResourceNotFoundException":{
|
1809
|
-
"type":"structure",
|
1810
|
-
"members":{
|
1811
|
-
"message":{"shape":"ErrorMessage"},
|
1812
|
-
"code":{"shape":"ErrorCode"}
|
1813
|
-
},
|
1814
|
-
"error":{"httpStatusCode":404},
|
1815
|
-
"exception":true
|
1816
|
-
},
|
1817
|
-
"RoleARN":{
|
1818
|
-
"type":"string",
|
1819
|
-
"min":1,
|
1820
|
-
"max":110
|
1821
|
-
},
|
1822
|
-
"S3DataSpec":{
|
1823
|
-
"type":"structure",
|
1824
|
-
"required":["DataLocationS3"],
|
1825
|
-
"members":{
|
1826
|
-
"DataLocationS3":{"shape":"S3Url"},
|
1827
|
-
"DataRearrangement":{"shape":"DataRearrangement"},
|
1828
|
-
"DataSchema":{"shape":"DataSchema"},
|
1829
|
-
"DataSchemaLocationS3":{"shape":"S3Url"}
|
1830
|
-
}
|
1831
|
-
},
|
1832
|
-
"S3Url":{
|
1833
|
-
"type":"string",
|
1834
|
-
"max":2048,
|
1835
|
-
"pattern":"s3://([^/]+)(/.*)?"
|
1836
|
-
},
|
1837
|
-
"ScoreThreshold":{"type":"float"},
|
1838
|
-
"ScoreValue":{"type":"float"},
|
1839
|
-
"ScoreValuePerLabelMap":{
|
1840
|
-
"type":"map",
|
1841
|
-
"key":{"shape":"Label"},
|
1842
|
-
"value":{"shape":"ScoreValue"}
|
1843
|
-
},
|
1844
|
-
"SortOrder":{
|
1845
|
-
"type":"string",
|
1846
|
-
"enum":[
|
1847
|
-
"asc",
|
1848
|
-
"dsc"
|
1849
|
-
]
|
1850
|
-
},
|
1851
|
-
"StringType":{"type":"string"},
|
1852
|
-
"Tag":{
|
1853
|
-
"type":"structure",
|
1854
|
-
"members":{
|
1855
|
-
"Key":{"shape":"TagKey"},
|
1856
|
-
"Value":{"shape":"TagValue"}
|
1857
|
-
}
|
1858
|
-
},
|
1859
|
-
"TagKey":{
|
1860
|
-
"type":"string",
|
1861
|
-
"min":1,
|
1862
|
-
"max":128,
|
1863
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1864
|
-
},
|
1865
|
-
"TagKeyList":{
|
1866
|
-
"type":"list",
|
1867
|
-
"member":{"shape":"TagKey"},
|
1868
|
-
"max":100
|
1869
|
-
},
|
1870
|
-
"TagLimitExceededException":{
|
1871
|
-
"type":"structure",
|
1872
|
-
"members":{
|
1873
|
-
"message":{"shape":"ErrorMessage"}
|
1874
|
-
},
|
1875
|
-
"exception":true
|
1876
|
-
},
|
1877
|
-
"TagList":{
|
1878
|
-
"type":"list",
|
1879
|
-
"member":{"shape":"Tag"},
|
1880
|
-
"max":100
|
1881
|
-
},
|
1882
|
-
"TagValue":{
|
1883
|
-
"type":"string",
|
1884
|
-
"min":0,
|
1885
|
-
"max":256,
|
1886
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1887
|
-
},
|
1888
|
-
"TaggableResourceType":{
|
1889
|
-
"type":"string",
|
1890
|
-
"enum":[
|
1891
|
-
"BatchPrediction",
|
1892
|
-
"DataSource",
|
1893
|
-
"Evaluation",
|
1894
|
-
"MLModel"
|
1895
|
-
]
|
1896
|
-
},
|
1897
|
-
"TrainingParameters":{
|
1898
|
-
"type":"map",
|
1899
|
-
"key":{"shape":"StringType"},
|
1900
|
-
"value":{"shape":"StringType"}
|
1901
|
-
},
|
1902
|
-
"UpdateBatchPredictionInput":{
|
1903
|
-
"type":"structure",
|
1904
|
-
"required":[
|
1905
|
-
"BatchPredictionId",
|
1906
|
-
"BatchPredictionName"
|
1907
|
-
],
|
1908
|
-
"members":{
|
1909
|
-
"BatchPredictionId":{"shape":"EntityId"},
|
1910
|
-
"BatchPredictionName":{"shape":"EntityName"}
|
1911
|
-
}
|
1912
|
-
},
|
1913
|
-
"UpdateBatchPredictionOutput":{
|
1914
|
-
"type":"structure",
|
1915
|
-
"members":{
|
1916
|
-
"BatchPredictionId":{"shape":"EntityId"}
|
1917
|
-
}
|
1918
|
-
},
|
1919
|
-
"UpdateDataSourceInput":{
|
1920
|
-
"type":"structure",
|
1921
|
-
"required":[
|
1922
|
-
"DataSourceId",
|
1923
|
-
"DataSourceName"
|
1924
|
-
],
|
1925
|
-
"members":{
|
1926
|
-
"DataSourceId":{"shape":"EntityId"},
|
1927
|
-
"DataSourceName":{"shape":"EntityName"}
|
1928
|
-
}
|
1929
|
-
},
|
1930
|
-
"UpdateDataSourceOutput":{
|
1931
|
-
"type":"structure",
|
1932
|
-
"members":{
|
1933
|
-
"DataSourceId":{"shape":"EntityId"}
|
1934
|
-
}
|
1935
|
-
},
|
1936
|
-
"UpdateEvaluationInput":{
|
1937
|
-
"type":"structure",
|
1938
|
-
"required":[
|
1939
|
-
"EvaluationId",
|
1940
|
-
"EvaluationName"
|
1941
|
-
],
|
1942
|
-
"members":{
|
1943
|
-
"EvaluationId":{"shape":"EntityId"},
|
1944
|
-
"EvaluationName":{"shape":"EntityName"}
|
1945
|
-
}
|
1946
|
-
},
|
1947
|
-
"UpdateEvaluationOutput":{
|
1948
|
-
"type":"structure",
|
1949
|
-
"members":{
|
1950
|
-
"EvaluationId":{"shape":"EntityId"}
|
1951
|
-
}
|
1952
|
-
},
|
1953
|
-
"UpdateMLModelInput":{
|
1954
|
-
"type":"structure",
|
1955
|
-
"required":["MLModelId"],
|
1956
|
-
"members":{
|
1957
|
-
"MLModelId":{"shape":"EntityId"},
|
1958
|
-
"MLModelName":{"shape":"EntityName"},
|
1959
|
-
"ScoreThreshold":{"shape":"ScoreThreshold"}
|
1960
|
-
}
|
1961
|
-
},
|
1962
|
-
"UpdateMLModelOutput":{
|
1963
|
-
"type":"structure",
|
1964
|
-
"members":{
|
1965
|
-
"MLModelId":{"shape":"EntityId"}
|
1966
|
-
}
|
1967
|
-
},
|
1968
|
-
"VariableName":{"type":"string"},
|
1969
|
-
"VariableValue":{"type":"string"},
|
1970
|
-
"Verbose":{"type":"boolean"},
|
1971
|
-
"VipURL":{
|
1972
|
-
"type":"string",
|
1973
|
-
"max":2048,
|
1974
|
-
"pattern":"https://[a-zA-Z0-9-.]*\\.amazon(aws)?\\.com[/]?"
|
1975
|
-
},
|
1976
|
-
"floatLabel":{"type":"float"}
|
1977
|
-
}
|
1978
|
-
}
|