aws-sdk-core 2.11.440 → 3.85.1
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 +88 -582
- data/lib/aws-sdk-core/arn.rb +77 -0
- data/lib/aws-sdk-core/arn_parser.rb +38 -0
- 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 +0 -29
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
- data/lib/aws-sdk-core/errors.rb +146 -24
- 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 +58 -74
- 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/formatter.rb +7 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -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 +187 -15
- 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 +2126 -0
- data/lib/aws-sdk-sts/client_api.rb +336 -0
- data/lib/aws-sdk-sts/customizations.rb +2 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
- data/lib/aws-sdk-sts/presigner.rb +67 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1504 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +246 -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 +6 -2
- 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 +67 -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 +103 -1167
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
- data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
- 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 -872
- 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 -4133
- 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 -2374
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5384
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1391
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -1208
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2288
- 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 -989
- 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 -2464
- 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 -2345
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -64
- data/apis/batch/2016-08-10/api-2.json +0 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1633
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -4653
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -59
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/smoke.json +0 -19
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
- 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 -741
- 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 -1529
- data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
- data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
- 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 -1168
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1910
- 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 -5383
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
- 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/codeguru-reviewer/2019-09-19/api-2.json +0 -351
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
- 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-connections/2019-12-01/api-2.json +0 -194
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
- 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 -5435
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2664
- 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 -924
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
- data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
- data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -4340
- 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 -2139
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
- data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
- data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
- 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/dataexchange/2017-07-25/api-2.json +0 -2263
- data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
- 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 -1451
- 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/detective/2018-10-26/api-2.json +0 -447
- data/apis/detective/2018-10-26/examples-1.json +0 -5
- data/apis/detective/2018-10-26/paginators-1.json +0 -19
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2074
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1369
- 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 -687
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -3018
- 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 -818
- 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 -3182
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
- 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/ebs/2019-11-02/api-2.json +0 -277
- data/apis/ebs/2019-11-02/examples-1.json +0 -5
- data/apis/ebs/2019-11-02/paginators-1.json +0 -14
- 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 -29133
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -474
- data/apis/ec2/2016-11-15/resources-1.json +0 -2688
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -640
- data/apis/ecr/2015-09-21/api-2.json +0 -1615
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecr/2015-09-21/waiters-2.json +0 -45
- data/apis/ecs/2014-11-13/api-2.json +0 -3150
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -52
- 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 -1434
- data/apis/eks/2017-11-01/examples-1.json +0 -135
- data/apis/eks/2017-11-01/paginators-1.json +0 -28
- data/apis/eks/2017-11-01/waiters-2.json +0 -91
- data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
- 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 -2346
- 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 -2241
- 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 -1584
- 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 -1445
- 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 -829
- 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 -1418
- 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 -146
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
- data/apis/fsx/2018-03-01/api-2.json +0 -1340
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -19
- data/apis/gamelift/2015-10-01/api-2.json +0 -3695
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6302
- 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 -5124
- data/apis/groundstation/2019-05-23/api-2.json +0 -1409
- data/apis/groundstation/2019-05-23/examples-1.json +0 -5
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3508
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
- data/apis/health/2016-08-04/api-2.json +0 -836
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -52
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5797
- data/apis/iam/2010-05-08/examples-1.json +0 -1577
- 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/imagebuilder/2019-12-02/api-2.json +0 -2414
- data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
- data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
- 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 -11061
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1144
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- 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 -2208
- data/apis/kafka/2018-11-14/paginators-1.json +0 -40
- data/apis/kendra/2019-02-03/api-2.json +0 -1738
- data/apis/kendra/2019-02-03/examples-1.json +0 -5
- data/apis/kendra/2019-02-03/paginators-1.json +0 -19
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
- data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
- data/apis/kinesis-video-signaling/2019-12-04/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 -2266
- 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 -954
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
- data/apis/kms/2014-11-01/api-2.json +0 -2154
- 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 -2944
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -52
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -74
- data/apis/lex-models/2017-04-19/api-2.json +0 -2395
- 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 -886
- 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 -5017
- 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/marketplace-catalog/2018-09-17/api-2.json +0 -550
- data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
- data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8695
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -10694
- data/apis/medialive/2017-10-14/paginators-1.json +0 -52
- data/apis/medialive/2017-10-14/waiters-2.json +0 -217
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -737
- 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 -544
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
- data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
- data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
- 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 -1876
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
- 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 -2577
- 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 -3523
- 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/networkmanager/2019-07-05/api-2.json +0 -1588
- data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
- data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
- 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 -947
- 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 -2401
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/outposts/2019-12-03/api-2.json +0 -367
- data/apis/outposts/2019-12-03/examples-1.json +0 -5
- data/apis/outposts/2019-12-03/paginators-1.json +0 -14
- 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 -147
- 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 -1863
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -64
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -5482
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
- data/apis/ram/2018-01-04/api-2.json +0 -1272
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -552
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -7646
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -164
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -5263
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -106
- 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 -2659
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
- 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 -532
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
- data/apis/robomaker/2018-06-29/api-2.json +0 -2380
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
- 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 -714
- 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 -165
- 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 -6653
- 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 -1377
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -14
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
- data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
- data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
- data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -749
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/schemas/2019-12-02/api-2.json +0 -2700
- data/apis/schemas/2019-12-02/paginators-1.json +0 -34
- data/apis/schemas/2019-12-02/waiters-2.json +0 -36
- 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 -2757
- 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 -1806
- 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/sesv2/2019-09-27/api-2.json +0 -2433
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -955
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -9217
- 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/sso-oidc/2019-06-10/api-2.json +0 -283
- data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
- data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
- data/apis/sso/2019-06-10/api-2.json +0 -281
- data/apis/sso/2019-06-10/examples-1.json +0 -5
- data/apis/sso/2019-06-10/paginators-1.json +0 -16
- data/apis/states/2016-11-23/api-2.json +0 -1476
- 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 -3260
- 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 -598
- data/apis/sts/2011-06-15/examples-1.json +0 -271
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -653
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -740
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
- data/apis/transfer/2018-11-05/api-2.json +0 -964
- 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 -658
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -14
- 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/wafv2/2019-07-29/api-2.json +0 -2418
- data/apis/wafv2/2019-07-29/examples-1.json +0 -5
- data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
- data/apis/wafv2/2019-07-29/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 -1704
- 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 -2029
- 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 -5943
- data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
- 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 -304
- 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/appconfig.rb +0 -6
- 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/augmentedairuntime.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 -6
- 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/codeguruprofiler.rb +0 -6
- data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/codestarconnections.rb +0 -6
- data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/computeoptimizer.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/connectparticipant.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/dataexchange.rb +0 -5
- 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/detective.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/ebs.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 -7
- 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/elasticinference.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/frauddetector.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/imagebuilder.rb +0 -6
- 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/iotsecuretunneling.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/kendra.rb +0 -6
- 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/kinesisvideosignalingchannels.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/marketplacecatalog.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/migrationhubconfig.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/networkmanager.rb +0 -6
- 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/outposts.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_iad_regional_endpoint.rb +0 -58
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -7
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/schemas.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/sesv2.rb +0 -6
- 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/sso.rb +0 -6
- data/lib/aws-sdk-core/ssooidc.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/wafv2.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 -881
@@ -1,106 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeClusterParameterGroups": {
|
4
|
-
"input_token": "Marker",
|
5
|
-
"limit_key": "MaxRecords",
|
6
|
-
"output_token": "Marker",
|
7
|
-
"result_key": "ParameterGroups"
|
8
|
-
},
|
9
|
-
"DescribeClusterParameters": {
|
10
|
-
"input_token": "Marker",
|
11
|
-
"limit_key": "MaxRecords",
|
12
|
-
"output_token": "Marker",
|
13
|
-
"result_key": "Parameters"
|
14
|
-
},
|
15
|
-
"DescribeClusterSecurityGroups": {
|
16
|
-
"input_token": "Marker",
|
17
|
-
"limit_key": "MaxRecords",
|
18
|
-
"output_token": "Marker",
|
19
|
-
"result_key": "ClusterSecurityGroups"
|
20
|
-
},
|
21
|
-
"DescribeClusterSnapshots": {
|
22
|
-
"input_token": "Marker",
|
23
|
-
"limit_key": "MaxRecords",
|
24
|
-
"output_token": "Marker",
|
25
|
-
"result_key": "Snapshots"
|
26
|
-
},
|
27
|
-
"DescribeClusterSubnetGroups": {
|
28
|
-
"input_token": "Marker",
|
29
|
-
"limit_key": "MaxRecords",
|
30
|
-
"output_token": "Marker",
|
31
|
-
"result_key": "ClusterSubnetGroups"
|
32
|
-
},
|
33
|
-
"DescribeClusterVersions": {
|
34
|
-
"input_token": "Marker",
|
35
|
-
"limit_key": "MaxRecords",
|
36
|
-
"output_token": "Marker",
|
37
|
-
"result_key": "ClusterVersions"
|
38
|
-
},
|
39
|
-
"DescribeClusters": {
|
40
|
-
"input_token": "Marker",
|
41
|
-
"limit_key": "MaxRecords",
|
42
|
-
"output_token": "Marker",
|
43
|
-
"result_key": "Clusters"
|
44
|
-
},
|
45
|
-
"DescribeDefaultClusterParameters": {
|
46
|
-
"input_token": "Marker",
|
47
|
-
"limit_key": "MaxRecords",
|
48
|
-
"output_token": "DefaultClusterParameters.Marker",
|
49
|
-
"result_key": "DefaultClusterParameters.Parameters"
|
50
|
-
},
|
51
|
-
"DescribeEventSubscriptions": {
|
52
|
-
"input_token": "Marker",
|
53
|
-
"limit_key": "MaxRecords",
|
54
|
-
"output_token": "Marker",
|
55
|
-
"result_key": "EventSubscriptionsList"
|
56
|
-
},
|
57
|
-
"DescribeEvents": {
|
58
|
-
"input_token": "Marker",
|
59
|
-
"limit_key": "MaxRecords",
|
60
|
-
"output_token": "Marker",
|
61
|
-
"result_key": "Events"
|
62
|
-
},
|
63
|
-
"DescribeHsmClientCertificates": {
|
64
|
-
"input_token": "Marker",
|
65
|
-
"limit_key": "MaxRecords",
|
66
|
-
"output_token": "Marker",
|
67
|
-
"result_key": "HsmClientCertificates"
|
68
|
-
},
|
69
|
-
"DescribeHsmConfigurations": {
|
70
|
-
"input_token": "Marker",
|
71
|
-
"limit_key": "MaxRecords",
|
72
|
-
"output_token": "Marker",
|
73
|
-
"result_key": "HsmConfigurations"
|
74
|
-
},
|
75
|
-
"DescribeNodeConfigurationOptions": {
|
76
|
-
"input_token": "Marker",
|
77
|
-
"limit_key": "MaxRecords",
|
78
|
-
"output_token": "Marker",
|
79
|
-
"result_key": "NodeConfigurationOptionList"
|
80
|
-
},
|
81
|
-
"DescribeOrderableClusterOptions": {
|
82
|
-
"input_token": "Marker",
|
83
|
-
"limit_key": "MaxRecords",
|
84
|
-
"output_token": "Marker",
|
85
|
-
"result_key": "OrderableClusterOptions"
|
86
|
-
},
|
87
|
-
"DescribeReservedNodeOfferings": {
|
88
|
-
"input_token": "Marker",
|
89
|
-
"limit_key": "MaxRecords",
|
90
|
-
"output_token": "Marker",
|
91
|
-
"result_key": "ReservedNodeOfferings"
|
92
|
-
},
|
93
|
-
"DescribeReservedNodes": {
|
94
|
-
"input_token": "Marker",
|
95
|
-
"limit_key": "MaxRecords",
|
96
|
-
"output_token": "Marker",
|
97
|
-
"result_key": "ReservedNodes"
|
98
|
-
},
|
99
|
-
"DescribeScheduledActions": {
|
100
|
-
"input_token": "Marker",
|
101
|
-
"limit_key": "MaxRecords",
|
102
|
-
"output_token": "Marker",
|
103
|
-
"result_key": "ScheduledActions"
|
104
|
-
}
|
105
|
-
}
|
106
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "DescribeClusterVersions",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "DescribeClusters",
|
12
|
-
"input": {
|
13
|
-
"ClusterIdentifier": "fake-cluster"
|
14
|
-
},
|
15
|
-
"errorExpectedFromService": true
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,97 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"ClusterAvailable": {
|
5
|
-
"delay": 60,
|
6
|
-
"operation": "DescribeClusters",
|
7
|
-
"maxAttempts": 30,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"expected": "available",
|
11
|
-
"matcher": "pathAll",
|
12
|
-
"state": "success",
|
13
|
-
"argument": "Clusters[].ClusterStatus"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"expected": "deleting",
|
17
|
-
"matcher": "pathAny",
|
18
|
-
"state": "failure",
|
19
|
-
"argument": "Clusters[].ClusterStatus"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"expected": "ClusterNotFound",
|
23
|
-
"matcher": "error",
|
24
|
-
"state": "retry"
|
25
|
-
}
|
26
|
-
]
|
27
|
-
},
|
28
|
-
"ClusterDeleted": {
|
29
|
-
"delay": 60,
|
30
|
-
"operation": "DescribeClusters",
|
31
|
-
"maxAttempts": 30,
|
32
|
-
"acceptors": [
|
33
|
-
{
|
34
|
-
"expected": "ClusterNotFound",
|
35
|
-
"matcher": "error",
|
36
|
-
"state": "success"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"expected": "creating",
|
40
|
-
"matcher": "pathAny",
|
41
|
-
"state": "failure",
|
42
|
-
"argument": "Clusters[].ClusterStatus"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"expected": "modifying",
|
46
|
-
"matcher": "pathAny",
|
47
|
-
"state": "failure",
|
48
|
-
"argument": "Clusters[].ClusterStatus"
|
49
|
-
}
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"ClusterRestored": {
|
53
|
-
"operation": "DescribeClusters",
|
54
|
-
"maxAttempts": 30,
|
55
|
-
"delay": 60,
|
56
|
-
"acceptors": [
|
57
|
-
{
|
58
|
-
"state": "success",
|
59
|
-
"matcher": "pathAll",
|
60
|
-
"argument": "Clusters[].RestoreStatus.Status",
|
61
|
-
"expected": "completed"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"state": "failure",
|
65
|
-
"matcher": "pathAny",
|
66
|
-
"argument": "Clusters[].ClusterStatus",
|
67
|
-
"expected": "deleting"
|
68
|
-
}
|
69
|
-
]
|
70
|
-
},
|
71
|
-
"SnapshotAvailable": {
|
72
|
-
"delay": 15,
|
73
|
-
"operation": "DescribeClusterSnapshots",
|
74
|
-
"maxAttempts": 20,
|
75
|
-
"acceptors": [
|
76
|
-
{
|
77
|
-
"expected": "available",
|
78
|
-
"matcher": "pathAll",
|
79
|
-
"state": "success",
|
80
|
-
"argument": "Snapshots[].Status"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"expected": "failed",
|
84
|
-
"matcher": "pathAny",
|
85
|
-
"state": "failure",
|
86
|
-
"argument": "Snapshots[].Status"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"expected": "deleted",
|
90
|
-
"matcher": "pathAny",
|
91
|
-
"state": "failure",
|
92
|
-
"argument": "Snapshots[].Status"
|
93
|
-
}
|
94
|
-
]
|
95
|
-
}
|
96
|
-
}
|
97
|
-
}
|
@@ -1,2659 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2016-06-27",
|
5
|
-
"endpointPrefix":"rekognition",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceFullName":"Amazon Rekognition",
|
9
|
-
"serviceId":"Rekognition",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"targetPrefix":"RekognitionService",
|
12
|
-
"uid":"rekognition-2016-06-27"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"CompareFaces":{
|
16
|
-
"name":"CompareFaces",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/"
|
20
|
-
},
|
21
|
-
"input":{"shape":"CompareFacesRequest"},
|
22
|
-
"output":{"shape":"CompareFacesResponse"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"InvalidParameterException"},
|
25
|
-
{"shape":"InvalidS3ObjectException"},
|
26
|
-
{"shape":"ImageTooLargeException"},
|
27
|
-
{"shape":"AccessDeniedException"},
|
28
|
-
{"shape":"InternalServerError"},
|
29
|
-
{"shape":"ThrottlingException"},
|
30
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
31
|
-
{"shape":"InvalidImageFormatException"}
|
32
|
-
]
|
33
|
-
},
|
34
|
-
"CreateCollection":{
|
35
|
-
"name":"CreateCollection",
|
36
|
-
"http":{
|
37
|
-
"method":"POST",
|
38
|
-
"requestUri":"/"
|
39
|
-
},
|
40
|
-
"input":{"shape":"CreateCollectionRequest"},
|
41
|
-
"output":{"shape":"CreateCollectionResponse"},
|
42
|
-
"errors":[
|
43
|
-
{"shape":"InvalidParameterException"},
|
44
|
-
{"shape":"AccessDeniedException"},
|
45
|
-
{"shape":"InternalServerError"},
|
46
|
-
{"shape":"ThrottlingException"},
|
47
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
48
|
-
{"shape":"ResourceAlreadyExistsException"}
|
49
|
-
]
|
50
|
-
},
|
51
|
-
"CreateProject":{
|
52
|
-
"name":"CreateProject",
|
53
|
-
"http":{
|
54
|
-
"method":"POST",
|
55
|
-
"requestUri":"/"
|
56
|
-
},
|
57
|
-
"input":{"shape":"CreateProjectRequest"},
|
58
|
-
"output":{"shape":"CreateProjectResponse"},
|
59
|
-
"errors":[
|
60
|
-
{"shape":"ResourceInUseException"},
|
61
|
-
{"shape":"LimitExceededException"},
|
62
|
-
{"shape":"InvalidParameterException"},
|
63
|
-
{"shape":"AccessDeniedException"},
|
64
|
-
{"shape":"InternalServerError"},
|
65
|
-
{"shape":"ThrottlingException"},
|
66
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
67
|
-
]
|
68
|
-
},
|
69
|
-
"CreateProjectVersion":{
|
70
|
-
"name":"CreateProjectVersion",
|
71
|
-
"http":{
|
72
|
-
"method":"POST",
|
73
|
-
"requestUri":"/"
|
74
|
-
},
|
75
|
-
"input":{"shape":"CreateProjectVersionRequest"},
|
76
|
-
"output":{"shape":"CreateProjectVersionResponse"},
|
77
|
-
"errors":[
|
78
|
-
{"shape":"ResourceInUseException"},
|
79
|
-
{"shape":"ResourceNotFoundException"},
|
80
|
-
{"shape":"LimitExceededException"},
|
81
|
-
{"shape":"InvalidParameterException"},
|
82
|
-
{"shape":"AccessDeniedException"},
|
83
|
-
{"shape":"InternalServerError"},
|
84
|
-
{"shape":"ThrottlingException"},
|
85
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
86
|
-
]
|
87
|
-
},
|
88
|
-
"CreateStreamProcessor":{
|
89
|
-
"name":"CreateStreamProcessor",
|
90
|
-
"http":{
|
91
|
-
"method":"POST",
|
92
|
-
"requestUri":"/"
|
93
|
-
},
|
94
|
-
"input":{"shape":"CreateStreamProcessorRequest"},
|
95
|
-
"output":{"shape":"CreateStreamProcessorResponse"},
|
96
|
-
"errors":[
|
97
|
-
{"shape":"AccessDeniedException"},
|
98
|
-
{"shape":"InternalServerError"},
|
99
|
-
{"shape":"ThrottlingException"},
|
100
|
-
{"shape":"InvalidParameterException"},
|
101
|
-
{"shape":"LimitExceededException"},
|
102
|
-
{"shape":"ResourceInUseException"},
|
103
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
104
|
-
]
|
105
|
-
},
|
106
|
-
"DeleteCollection":{
|
107
|
-
"name":"DeleteCollection",
|
108
|
-
"http":{
|
109
|
-
"method":"POST",
|
110
|
-
"requestUri":"/"
|
111
|
-
},
|
112
|
-
"input":{"shape":"DeleteCollectionRequest"},
|
113
|
-
"output":{"shape":"DeleteCollectionResponse"},
|
114
|
-
"errors":[
|
115
|
-
{"shape":"InvalidParameterException"},
|
116
|
-
{"shape":"AccessDeniedException"},
|
117
|
-
{"shape":"InternalServerError"},
|
118
|
-
{"shape":"ThrottlingException"},
|
119
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
120
|
-
{"shape":"ResourceNotFoundException"}
|
121
|
-
]
|
122
|
-
},
|
123
|
-
"DeleteFaces":{
|
124
|
-
"name":"DeleteFaces",
|
125
|
-
"http":{
|
126
|
-
"method":"POST",
|
127
|
-
"requestUri":"/"
|
128
|
-
},
|
129
|
-
"input":{"shape":"DeleteFacesRequest"},
|
130
|
-
"output":{"shape":"DeleteFacesResponse"},
|
131
|
-
"errors":[
|
132
|
-
{"shape":"InvalidParameterException"},
|
133
|
-
{"shape":"AccessDeniedException"},
|
134
|
-
{"shape":"InternalServerError"},
|
135
|
-
{"shape":"ThrottlingException"},
|
136
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
137
|
-
{"shape":"ResourceNotFoundException"}
|
138
|
-
]
|
139
|
-
},
|
140
|
-
"DeleteStreamProcessor":{
|
141
|
-
"name":"DeleteStreamProcessor",
|
142
|
-
"http":{
|
143
|
-
"method":"POST",
|
144
|
-
"requestUri":"/"
|
145
|
-
},
|
146
|
-
"input":{"shape":"DeleteStreamProcessorRequest"},
|
147
|
-
"output":{"shape":"DeleteStreamProcessorResponse"},
|
148
|
-
"errors":[
|
149
|
-
{"shape":"AccessDeniedException"},
|
150
|
-
{"shape":"InternalServerError"},
|
151
|
-
{"shape":"ThrottlingException"},
|
152
|
-
{"shape":"InvalidParameterException"},
|
153
|
-
{"shape":"ResourceNotFoundException"},
|
154
|
-
{"shape":"ResourceInUseException"},
|
155
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
156
|
-
]
|
157
|
-
},
|
158
|
-
"DescribeCollection":{
|
159
|
-
"name":"DescribeCollection",
|
160
|
-
"http":{
|
161
|
-
"method":"POST",
|
162
|
-
"requestUri":"/"
|
163
|
-
},
|
164
|
-
"input":{"shape":"DescribeCollectionRequest"},
|
165
|
-
"output":{"shape":"DescribeCollectionResponse"},
|
166
|
-
"errors":[
|
167
|
-
{"shape":"InvalidParameterException"},
|
168
|
-
{"shape":"AccessDeniedException"},
|
169
|
-
{"shape":"InternalServerError"},
|
170
|
-
{"shape":"ThrottlingException"},
|
171
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
172
|
-
{"shape":"ResourceNotFoundException"}
|
173
|
-
]
|
174
|
-
},
|
175
|
-
"DescribeProjectVersions":{
|
176
|
-
"name":"DescribeProjectVersions",
|
177
|
-
"http":{
|
178
|
-
"method":"POST",
|
179
|
-
"requestUri":"/"
|
180
|
-
},
|
181
|
-
"input":{"shape":"DescribeProjectVersionsRequest"},
|
182
|
-
"output":{"shape":"DescribeProjectVersionsResponse"},
|
183
|
-
"errors":[
|
184
|
-
{"shape":"ResourceNotFoundException"},
|
185
|
-
{"shape":"InvalidPaginationTokenException"},
|
186
|
-
{"shape":"InvalidParameterException"},
|
187
|
-
{"shape":"AccessDeniedException"},
|
188
|
-
{"shape":"InternalServerError"},
|
189
|
-
{"shape":"ThrottlingException"},
|
190
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
191
|
-
]
|
192
|
-
},
|
193
|
-
"DescribeProjects":{
|
194
|
-
"name":"DescribeProjects",
|
195
|
-
"http":{
|
196
|
-
"method":"POST",
|
197
|
-
"requestUri":"/"
|
198
|
-
},
|
199
|
-
"input":{"shape":"DescribeProjectsRequest"},
|
200
|
-
"output":{"shape":"DescribeProjectsResponse"},
|
201
|
-
"errors":[
|
202
|
-
{"shape":"InvalidPaginationTokenException"},
|
203
|
-
{"shape":"InvalidParameterException"},
|
204
|
-
{"shape":"AccessDeniedException"},
|
205
|
-
{"shape":"InternalServerError"},
|
206
|
-
{"shape":"ThrottlingException"},
|
207
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
208
|
-
]
|
209
|
-
},
|
210
|
-
"DescribeStreamProcessor":{
|
211
|
-
"name":"DescribeStreamProcessor",
|
212
|
-
"http":{
|
213
|
-
"method":"POST",
|
214
|
-
"requestUri":"/"
|
215
|
-
},
|
216
|
-
"input":{"shape":"DescribeStreamProcessorRequest"},
|
217
|
-
"output":{"shape":"DescribeStreamProcessorResponse"},
|
218
|
-
"errors":[
|
219
|
-
{"shape":"AccessDeniedException"},
|
220
|
-
{"shape":"InternalServerError"},
|
221
|
-
{"shape":"ThrottlingException"},
|
222
|
-
{"shape":"InvalidParameterException"},
|
223
|
-
{"shape":"ResourceNotFoundException"},
|
224
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
225
|
-
]
|
226
|
-
},
|
227
|
-
"DetectCustomLabels":{
|
228
|
-
"name":"DetectCustomLabels",
|
229
|
-
"http":{
|
230
|
-
"method":"POST",
|
231
|
-
"requestUri":"/"
|
232
|
-
},
|
233
|
-
"input":{"shape":"DetectCustomLabelsRequest"},
|
234
|
-
"output":{"shape":"DetectCustomLabelsResponse"},
|
235
|
-
"errors":[
|
236
|
-
{"shape":"ResourceNotFoundException"},
|
237
|
-
{"shape":"ResourceNotReadyException"},
|
238
|
-
{"shape":"InvalidS3ObjectException"},
|
239
|
-
{"shape":"InvalidParameterException"},
|
240
|
-
{"shape":"ImageTooLargeException"},
|
241
|
-
{"shape":"LimitExceededException"},
|
242
|
-
{"shape":"AccessDeniedException"},
|
243
|
-
{"shape":"InternalServerError"},
|
244
|
-
{"shape":"ThrottlingException"},
|
245
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
246
|
-
{"shape":"InvalidImageFormatException"}
|
247
|
-
]
|
248
|
-
},
|
249
|
-
"DetectFaces":{
|
250
|
-
"name":"DetectFaces",
|
251
|
-
"http":{
|
252
|
-
"method":"POST",
|
253
|
-
"requestUri":"/"
|
254
|
-
},
|
255
|
-
"input":{"shape":"DetectFacesRequest"},
|
256
|
-
"output":{"shape":"DetectFacesResponse"},
|
257
|
-
"errors":[
|
258
|
-
{"shape":"InvalidS3ObjectException"},
|
259
|
-
{"shape":"InvalidParameterException"},
|
260
|
-
{"shape":"ImageTooLargeException"},
|
261
|
-
{"shape":"AccessDeniedException"},
|
262
|
-
{"shape":"InternalServerError"},
|
263
|
-
{"shape":"ThrottlingException"},
|
264
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
265
|
-
{"shape":"InvalidImageFormatException"}
|
266
|
-
]
|
267
|
-
},
|
268
|
-
"DetectLabels":{
|
269
|
-
"name":"DetectLabels",
|
270
|
-
"http":{
|
271
|
-
"method":"POST",
|
272
|
-
"requestUri":"/"
|
273
|
-
},
|
274
|
-
"input":{"shape":"DetectLabelsRequest"},
|
275
|
-
"output":{"shape":"DetectLabelsResponse"},
|
276
|
-
"errors":[
|
277
|
-
{"shape":"InvalidS3ObjectException"},
|
278
|
-
{"shape":"InvalidParameterException"},
|
279
|
-
{"shape":"ImageTooLargeException"},
|
280
|
-
{"shape":"AccessDeniedException"},
|
281
|
-
{"shape":"InternalServerError"},
|
282
|
-
{"shape":"ThrottlingException"},
|
283
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
284
|
-
{"shape":"InvalidImageFormatException"}
|
285
|
-
]
|
286
|
-
},
|
287
|
-
"DetectModerationLabels":{
|
288
|
-
"name":"DetectModerationLabels",
|
289
|
-
"http":{
|
290
|
-
"method":"POST",
|
291
|
-
"requestUri":"/"
|
292
|
-
},
|
293
|
-
"input":{"shape":"DetectModerationLabelsRequest"},
|
294
|
-
"output":{"shape":"DetectModerationLabelsResponse"},
|
295
|
-
"errors":[
|
296
|
-
{"shape":"InvalidS3ObjectException"},
|
297
|
-
{"shape":"InvalidParameterException"},
|
298
|
-
{"shape":"ImageTooLargeException"},
|
299
|
-
{"shape":"AccessDeniedException"},
|
300
|
-
{"shape":"InternalServerError"},
|
301
|
-
{"shape":"ThrottlingException"},
|
302
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
303
|
-
{"shape":"InvalidImageFormatException"},
|
304
|
-
{"shape":"HumanLoopQuotaExceededException"}
|
305
|
-
]
|
306
|
-
},
|
307
|
-
"DetectText":{
|
308
|
-
"name":"DetectText",
|
309
|
-
"http":{
|
310
|
-
"method":"POST",
|
311
|
-
"requestUri":"/"
|
312
|
-
},
|
313
|
-
"input":{"shape":"DetectTextRequest"},
|
314
|
-
"output":{"shape":"DetectTextResponse"},
|
315
|
-
"errors":[
|
316
|
-
{"shape":"InvalidS3ObjectException"},
|
317
|
-
{"shape":"InvalidParameterException"},
|
318
|
-
{"shape":"ImageTooLargeException"},
|
319
|
-
{"shape":"AccessDeniedException"},
|
320
|
-
{"shape":"InternalServerError"},
|
321
|
-
{"shape":"ThrottlingException"},
|
322
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
323
|
-
{"shape":"InvalidImageFormatException"}
|
324
|
-
]
|
325
|
-
},
|
326
|
-
"GetCelebrityInfo":{
|
327
|
-
"name":"GetCelebrityInfo",
|
328
|
-
"http":{
|
329
|
-
"method":"POST",
|
330
|
-
"requestUri":"/"
|
331
|
-
},
|
332
|
-
"input":{"shape":"GetCelebrityInfoRequest"},
|
333
|
-
"output":{"shape":"GetCelebrityInfoResponse"},
|
334
|
-
"errors":[
|
335
|
-
{"shape":"InvalidParameterException"},
|
336
|
-
{"shape":"AccessDeniedException"},
|
337
|
-
{"shape":"InternalServerError"},
|
338
|
-
{"shape":"ThrottlingException"},
|
339
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
340
|
-
{"shape":"ResourceNotFoundException"}
|
341
|
-
]
|
342
|
-
},
|
343
|
-
"GetCelebrityRecognition":{
|
344
|
-
"name":"GetCelebrityRecognition",
|
345
|
-
"http":{
|
346
|
-
"method":"POST",
|
347
|
-
"requestUri":"/"
|
348
|
-
},
|
349
|
-
"input":{"shape":"GetCelebrityRecognitionRequest"},
|
350
|
-
"output":{"shape":"GetCelebrityRecognitionResponse"},
|
351
|
-
"errors":[
|
352
|
-
{"shape":"AccessDeniedException"},
|
353
|
-
{"shape":"InternalServerError"},
|
354
|
-
{"shape":"InvalidParameterException"},
|
355
|
-
{"shape":"InvalidPaginationTokenException"},
|
356
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
357
|
-
{"shape":"ResourceNotFoundException"},
|
358
|
-
{"shape":"ThrottlingException"}
|
359
|
-
]
|
360
|
-
},
|
361
|
-
"GetContentModeration":{
|
362
|
-
"name":"GetContentModeration",
|
363
|
-
"http":{
|
364
|
-
"method":"POST",
|
365
|
-
"requestUri":"/"
|
366
|
-
},
|
367
|
-
"input":{"shape":"GetContentModerationRequest"},
|
368
|
-
"output":{"shape":"GetContentModerationResponse"},
|
369
|
-
"errors":[
|
370
|
-
{"shape":"AccessDeniedException"},
|
371
|
-
{"shape":"InternalServerError"},
|
372
|
-
{"shape":"InvalidParameterException"},
|
373
|
-
{"shape":"InvalidPaginationTokenException"},
|
374
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
375
|
-
{"shape":"ResourceNotFoundException"},
|
376
|
-
{"shape":"ThrottlingException"}
|
377
|
-
]
|
378
|
-
},
|
379
|
-
"GetFaceDetection":{
|
380
|
-
"name":"GetFaceDetection",
|
381
|
-
"http":{
|
382
|
-
"method":"POST",
|
383
|
-
"requestUri":"/"
|
384
|
-
},
|
385
|
-
"input":{"shape":"GetFaceDetectionRequest"},
|
386
|
-
"output":{"shape":"GetFaceDetectionResponse"},
|
387
|
-
"errors":[
|
388
|
-
{"shape":"AccessDeniedException"},
|
389
|
-
{"shape":"InternalServerError"},
|
390
|
-
{"shape":"InvalidParameterException"},
|
391
|
-
{"shape":"InvalidPaginationTokenException"},
|
392
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
393
|
-
{"shape":"ResourceNotFoundException"},
|
394
|
-
{"shape":"ThrottlingException"}
|
395
|
-
]
|
396
|
-
},
|
397
|
-
"GetFaceSearch":{
|
398
|
-
"name":"GetFaceSearch",
|
399
|
-
"http":{
|
400
|
-
"method":"POST",
|
401
|
-
"requestUri":"/"
|
402
|
-
},
|
403
|
-
"input":{"shape":"GetFaceSearchRequest"},
|
404
|
-
"output":{"shape":"GetFaceSearchResponse"},
|
405
|
-
"errors":[
|
406
|
-
{"shape":"AccessDeniedException"},
|
407
|
-
{"shape":"InternalServerError"},
|
408
|
-
{"shape":"InvalidParameterException"},
|
409
|
-
{"shape":"InvalidPaginationTokenException"},
|
410
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
411
|
-
{"shape":"ResourceNotFoundException"},
|
412
|
-
{"shape":"ThrottlingException"}
|
413
|
-
]
|
414
|
-
},
|
415
|
-
"GetLabelDetection":{
|
416
|
-
"name":"GetLabelDetection",
|
417
|
-
"http":{
|
418
|
-
"method":"POST",
|
419
|
-
"requestUri":"/"
|
420
|
-
},
|
421
|
-
"input":{"shape":"GetLabelDetectionRequest"},
|
422
|
-
"output":{"shape":"GetLabelDetectionResponse"},
|
423
|
-
"errors":[
|
424
|
-
{"shape":"AccessDeniedException"},
|
425
|
-
{"shape":"InternalServerError"},
|
426
|
-
{"shape":"InvalidParameterException"},
|
427
|
-
{"shape":"InvalidPaginationTokenException"},
|
428
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
429
|
-
{"shape":"ResourceNotFoundException"},
|
430
|
-
{"shape":"ThrottlingException"}
|
431
|
-
]
|
432
|
-
},
|
433
|
-
"GetPersonTracking":{
|
434
|
-
"name":"GetPersonTracking",
|
435
|
-
"http":{
|
436
|
-
"method":"POST",
|
437
|
-
"requestUri":"/"
|
438
|
-
},
|
439
|
-
"input":{"shape":"GetPersonTrackingRequest"},
|
440
|
-
"output":{"shape":"GetPersonTrackingResponse"},
|
441
|
-
"errors":[
|
442
|
-
{"shape":"AccessDeniedException"},
|
443
|
-
{"shape":"InternalServerError"},
|
444
|
-
{"shape":"InvalidParameterException"},
|
445
|
-
{"shape":"InvalidPaginationTokenException"},
|
446
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
447
|
-
{"shape":"ResourceNotFoundException"},
|
448
|
-
{"shape":"ThrottlingException"}
|
449
|
-
]
|
450
|
-
},
|
451
|
-
"IndexFaces":{
|
452
|
-
"name":"IndexFaces",
|
453
|
-
"http":{
|
454
|
-
"method":"POST",
|
455
|
-
"requestUri":"/"
|
456
|
-
},
|
457
|
-
"input":{"shape":"IndexFacesRequest"},
|
458
|
-
"output":{"shape":"IndexFacesResponse"},
|
459
|
-
"errors":[
|
460
|
-
{"shape":"InvalidS3ObjectException"},
|
461
|
-
{"shape":"InvalidParameterException"},
|
462
|
-
{"shape":"ImageTooLargeException"},
|
463
|
-
{"shape":"AccessDeniedException"},
|
464
|
-
{"shape":"InternalServerError"},
|
465
|
-
{"shape":"ThrottlingException"},
|
466
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
467
|
-
{"shape":"ResourceNotFoundException"},
|
468
|
-
{"shape":"InvalidImageFormatException"}
|
469
|
-
]
|
470
|
-
},
|
471
|
-
"ListCollections":{
|
472
|
-
"name":"ListCollections",
|
473
|
-
"http":{
|
474
|
-
"method":"POST",
|
475
|
-
"requestUri":"/"
|
476
|
-
},
|
477
|
-
"input":{"shape":"ListCollectionsRequest"},
|
478
|
-
"output":{"shape":"ListCollectionsResponse"},
|
479
|
-
"errors":[
|
480
|
-
{"shape":"InvalidParameterException"},
|
481
|
-
{"shape":"AccessDeniedException"},
|
482
|
-
{"shape":"InternalServerError"},
|
483
|
-
{"shape":"ThrottlingException"},
|
484
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
485
|
-
{"shape":"InvalidPaginationTokenException"},
|
486
|
-
{"shape":"ResourceNotFoundException"}
|
487
|
-
]
|
488
|
-
},
|
489
|
-
"ListFaces":{
|
490
|
-
"name":"ListFaces",
|
491
|
-
"http":{
|
492
|
-
"method":"POST",
|
493
|
-
"requestUri":"/"
|
494
|
-
},
|
495
|
-
"input":{"shape":"ListFacesRequest"},
|
496
|
-
"output":{"shape":"ListFacesResponse"},
|
497
|
-
"errors":[
|
498
|
-
{"shape":"InvalidParameterException"},
|
499
|
-
{"shape":"AccessDeniedException"},
|
500
|
-
{"shape":"InternalServerError"},
|
501
|
-
{"shape":"ThrottlingException"},
|
502
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
503
|
-
{"shape":"InvalidPaginationTokenException"},
|
504
|
-
{"shape":"ResourceNotFoundException"}
|
505
|
-
]
|
506
|
-
},
|
507
|
-
"ListStreamProcessors":{
|
508
|
-
"name":"ListStreamProcessors",
|
509
|
-
"http":{
|
510
|
-
"method":"POST",
|
511
|
-
"requestUri":"/"
|
512
|
-
},
|
513
|
-
"input":{"shape":"ListStreamProcessorsRequest"},
|
514
|
-
"output":{"shape":"ListStreamProcessorsResponse"},
|
515
|
-
"errors":[
|
516
|
-
{"shape":"AccessDeniedException"},
|
517
|
-
{"shape":"InternalServerError"},
|
518
|
-
{"shape":"ThrottlingException"},
|
519
|
-
{"shape":"InvalidParameterException"},
|
520
|
-
{"shape":"InvalidPaginationTokenException"},
|
521
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
522
|
-
]
|
523
|
-
},
|
524
|
-
"RecognizeCelebrities":{
|
525
|
-
"name":"RecognizeCelebrities",
|
526
|
-
"http":{
|
527
|
-
"method":"POST",
|
528
|
-
"requestUri":"/"
|
529
|
-
},
|
530
|
-
"input":{"shape":"RecognizeCelebritiesRequest"},
|
531
|
-
"output":{"shape":"RecognizeCelebritiesResponse"},
|
532
|
-
"errors":[
|
533
|
-
{"shape":"InvalidS3ObjectException"},
|
534
|
-
{"shape":"InvalidParameterException"},
|
535
|
-
{"shape":"InvalidImageFormatException"},
|
536
|
-
{"shape":"ImageTooLargeException"},
|
537
|
-
{"shape":"AccessDeniedException"},
|
538
|
-
{"shape":"InternalServerError"},
|
539
|
-
{"shape":"ThrottlingException"},
|
540
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
541
|
-
{"shape":"InvalidImageFormatException"}
|
542
|
-
]
|
543
|
-
},
|
544
|
-
"SearchFaces":{
|
545
|
-
"name":"SearchFaces",
|
546
|
-
"http":{
|
547
|
-
"method":"POST",
|
548
|
-
"requestUri":"/"
|
549
|
-
},
|
550
|
-
"input":{"shape":"SearchFacesRequest"},
|
551
|
-
"output":{"shape":"SearchFacesResponse"},
|
552
|
-
"errors":[
|
553
|
-
{"shape":"InvalidParameterException"},
|
554
|
-
{"shape":"AccessDeniedException"},
|
555
|
-
{"shape":"InternalServerError"},
|
556
|
-
{"shape":"ThrottlingException"},
|
557
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
558
|
-
{"shape":"ResourceNotFoundException"}
|
559
|
-
]
|
560
|
-
},
|
561
|
-
"SearchFacesByImage":{
|
562
|
-
"name":"SearchFacesByImage",
|
563
|
-
"http":{
|
564
|
-
"method":"POST",
|
565
|
-
"requestUri":"/"
|
566
|
-
},
|
567
|
-
"input":{"shape":"SearchFacesByImageRequest"},
|
568
|
-
"output":{"shape":"SearchFacesByImageResponse"},
|
569
|
-
"errors":[
|
570
|
-
{"shape":"InvalidS3ObjectException"},
|
571
|
-
{"shape":"InvalidParameterException"},
|
572
|
-
{"shape":"ImageTooLargeException"},
|
573
|
-
{"shape":"AccessDeniedException"},
|
574
|
-
{"shape":"InternalServerError"},
|
575
|
-
{"shape":"ThrottlingException"},
|
576
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
577
|
-
{"shape":"ResourceNotFoundException"},
|
578
|
-
{"shape":"InvalidImageFormatException"}
|
579
|
-
]
|
580
|
-
},
|
581
|
-
"StartCelebrityRecognition":{
|
582
|
-
"name":"StartCelebrityRecognition",
|
583
|
-
"http":{
|
584
|
-
"method":"POST",
|
585
|
-
"requestUri":"/"
|
586
|
-
},
|
587
|
-
"input":{"shape":"StartCelebrityRecognitionRequest"},
|
588
|
-
"output":{"shape":"StartCelebrityRecognitionResponse"},
|
589
|
-
"errors":[
|
590
|
-
{"shape":"AccessDeniedException"},
|
591
|
-
{"shape":"IdempotentParameterMismatchException"},
|
592
|
-
{"shape":"InvalidParameterException"},
|
593
|
-
{"shape":"InvalidS3ObjectException"},
|
594
|
-
{"shape":"InternalServerError"},
|
595
|
-
{"shape":"VideoTooLargeException"},
|
596
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
597
|
-
{"shape":"LimitExceededException"},
|
598
|
-
{"shape":"ThrottlingException"}
|
599
|
-
],
|
600
|
-
"idempotent":true
|
601
|
-
},
|
602
|
-
"StartContentModeration":{
|
603
|
-
"name":"StartContentModeration",
|
604
|
-
"http":{
|
605
|
-
"method":"POST",
|
606
|
-
"requestUri":"/"
|
607
|
-
},
|
608
|
-
"input":{"shape":"StartContentModerationRequest"},
|
609
|
-
"output":{"shape":"StartContentModerationResponse"},
|
610
|
-
"errors":[
|
611
|
-
{"shape":"AccessDeniedException"},
|
612
|
-
{"shape":"IdempotentParameterMismatchException"},
|
613
|
-
{"shape":"InvalidParameterException"},
|
614
|
-
{"shape":"InvalidS3ObjectException"},
|
615
|
-
{"shape":"InternalServerError"},
|
616
|
-
{"shape":"VideoTooLargeException"},
|
617
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
618
|
-
{"shape":"LimitExceededException"},
|
619
|
-
{"shape":"ThrottlingException"}
|
620
|
-
],
|
621
|
-
"idempotent":true
|
622
|
-
},
|
623
|
-
"StartFaceDetection":{
|
624
|
-
"name":"StartFaceDetection",
|
625
|
-
"http":{
|
626
|
-
"method":"POST",
|
627
|
-
"requestUri":"/"
|
628
|
-
},
|
629
|
-
"input":{"shape":"StartFaceDetectionRequest"},
|
630
|
-
"output":{"shape":"StartFaceDetectionResponse"},
|
631
|
-
"errors":[
|
632
|
-
{"shape":"AccessDeniedException"},
|
633
|
-
{"shape":"IdempotentParameterMismatchException"},
|
634
|
-
{"shape":"InvalidParameterException"},
|
635
|
-
{"shape":"InvalidS3ObjectException"},
|
636
|
-
{"shape":"InternalServerError"},
|
637
|
-
{"shape":"VideoTooLargeException"},
|
638
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
639
|
-
{"shape":"LimitExceededException"},
|
640
|
-
{"shape":"ThrottlingException"}
|
641
|
-
],
|
642
|
-
"idempotent":true
|
643
|
-
},
|
644
|
-
"StartFaceSearch":{
|
645
|
-
"name":"StartFaceSearch",
|
646
|
-
"http":{
|
647
|
-
"method":"POST",
|
648
|
-
"requestUri":"/"
|
649
|
-
},
|
650
|
-
"input":{"shape":"StartFaceSearchRequest"},
|
651
|
-
"output":{"shape":"StartFaceSearchResponse"},
|
652
|
-
"errors":[
|
653
|
-
{"shape":"AccessDeniedException"},
|
654
|
-
{"shape":"IdempotentParameterMismatchException"},
|
655
|
-
{"shape":"InvalidParameterException"},
|
656
|
-
{"shape":"InvalidS3ObjectException"},
|
657
|
-
{"shape":"InternalServerError"},
|
658
|
-
{"shape":"VideoTooLargeException"},
|
659
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
660
|
-
{"shape":"LimitExceededException"},
|
661
|
-
{"shape":"ResourceNotFoundException"},
|
662
|
-
{"shape":"ThrottlingException"}
|
663
|
-
],
|
664
|
-
"idempotent":true
|
665
|
-
},
|
666
|
-
"StartLabelDetection":{
|
667
|
-
"name":"StartLabelDetection",
|
668
|
-
"http":{
|
669
|
-
"method":"POST",
|
670
|
-
"requestUri":"/"
|
671
|
-
},
|
672
|
-
"input":{"shape":"StartLabelDetectionRequest"},
|
673
|
-
"output":{"shape":"StartLabelDetectionResponse"},
|
674
|
-
"errors":[
|
675
|
-
{"shape":"AccessDeniedException"},
|
676
|
-
{"shape":"IdempotentParameterMismatchException"},
|
677
|
-
{"shape":"InvalidParameterException"},
|
678
|
-
{"shape":"InvalidS3ObjectException"},
|
679
|
-
{"shape":"InternalServerError"},
|
680
|
-
{"shape":"VideoTooLargeException"},
|
681
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
682
|
-
{"shape":"LimitExceededException"},
|
683
|
-
{"shape":"ThrottlingException"}
|
684
|
-
],
|
685
|
-
"idempotent":true
|
686
|
-
},
|
687
|
-
"StartPersonTracking":{
|
688
|
-
"name":"StartPersonTracking",
|
689
|
-
"http":{
|
690
|
-
"method":"POST",
|
691
|
-
"requestUri":"/"
|
692
|
-
},
|
693
|
-
"input":{"shape":"StartPersonTrackingRequest"},
|
694
|
-
"output":{"shape":"StartPersonTrackingResponse"},
|
695
|
-
"errors":[
|
696
|
-
{"shape":"AccessDeniedException"},
|
697
|
-
{"shape":"IdempotentParameterMismatchException"},
|
698
|
-
{"shape":"InvalidParameterException"},
|
699
|
-
{"shape":"InvalidS3ObjectException"},
|
700
|
-
{"shape":"InternalServerError"},
|
701
|
-
{"shape":"VideoTooLargeException"},
|
702
|
-
{"shape":"ProvisionedThroughputExceededException"},
|
703
|
-
{"shape":"LimitExceededException"},
|
704
|
-
{"shape":"ThrottlingException"}
|
705
|
-
],
|
706
|
-
"idempotent":true
|
707
|
-
},
|
708
|
-
"StartProjectVersion":{
|
709
|
-
"name":"StartProjectVersion",
|
710
|
-
"http":{
|
711
|
-
"method":"POST",
|
712
|
-
"requestUri":"/"
|
713
|
-
},
|
714
|
-
"input":{"shape":"StartProjectVersionRequest"},
|
715
|
-
"output":{"shape":"StartProjectVersionResponse"},
|
716
|
-
"errors":[
|
717
|
-
{"shape":"ResourceNotFoundException"},
|
718
|
-
{"shape":"ResourceInUseException"},
|
719
|
-
{"shape":"LimitExceededException"},
|
720
|
-
{"shape":"InvalidParameterException"},
|
721
|
-
{"shape":"AccessDeniedException"},
|
722
|
-
{"shape":"InternalServerError"},
|
723
|
-
{"shape":"ThrottlingException"},
|
724
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
725
|
-
]
|
726
|
-
},
|
727
|
-
"StartStreamProcessor":{
|
728
|
-
"name":"StartStreamProcessor",
|
729
|
-
"http":{
|
730
|
-
"method":"POST",
|
731
|
-
"requestUri":"/"
|
732
|
-
},
|
733
|
-
"input":{"shape":"StartStreamProcessorRequest"},
|
734
|
-
"output":{"shape":"StartStreamProcessorResponse"},
|
735
|
-
"errors":[
|
736
|
-
{"shape":"AccessDeniedException"},
|
737
|
-
{"shape":"InternalServerError"},
|
738
|
-
{"shape":"ThrottlingException"},
|
739
|
-
{"shape":"InvalidParameterException"},
|
740
|
-
{"shape":"ResourceNotFoundException"},
|
741
|
-
{"shape":"ResourceInUseException"},
|
742
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
743
|
-
]
|
744
|
-
},
|
745
|
-
"StopProjectVersion":{
|
746
|
-
"name":"StopProjectVersion",
|
747
|
-
"http":{
|
748
|
-
"method":"POST",
|
749
|
-
"requestUri":"/"
|
750
|
-
},
|
751
|
-
"input":{"shape":"StopProjectVersionRequest"},
|
752
|
-
"output":{"shape":"StopProjectVersionResponse"},
|
753
|
-
"errors":[
|
754
|
-
{"shape":"ResourceNotFoundException"},
|
755
|
-
{"shape":"ResourceInUseException"},
|
756
|
-
{"shape":"InvalidParameterException"},
|
757
|
-
{"shape":"AccessDeniedException"},
|
758
|
-
{"shape":"InternalServerError"},
|
759
|
-
{"shape":"ThrottlingException"},
|
760
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
761
|
-
]
|
762
|
-
},
|
763
|
-
"StopStreamProcessor":{
|
764
|
-
"name":"StopStreamProcessor",
|
765
|
-
"http":{
|
766
|
-
"method":"POST",
|
767
|
-
"requestUri":"/"
|
768
|
-
},
|
769
|
-
"input":{"shape":"StopStreamProcessorRequest"},
|
770
|
-
"output":{"shape":"StopStreamProcessorResponse"},
|
771
|
-
"errors":[
|
772
|
-
{"shape":"AccessDeniedException"},
|
773
|
-
{"shape":"InternalServerError"},
|
774
|
-
{"shape":"ThrottlingException"},
|
775
|
-
{"shape":"InvalidParameterException"},
|
776
|
-
{"shape":"ResourceNotFoundException"},
|
777
|
-
{"shape":"ResourceInUseException"},
|
778
|
-
{"shape":"ProvisionedThroughputExceededException"}
|
779
|
-
]
|
780
|
-
}
|
781
|
-
},
|
782
|
-
"shapes":{
|
783
|
-
"AccessDeniedException":{
|
784
|
-
"type":"structure",
|
785
|
-
"members":{
|
786
|
-
},
|
787
|
-
"exception":true
|
788
|
-
},
|
789
|
-
"AgeRange":{
|
790
|
-
"type":"structure",
|
791
|
-
"members":{
|
792
|
-
"Low":{"shape":"UInteger"},
|
793
|
-
"High":{"shape":"UInteger"}
|
794
|
-
}
|
795
|
-
},
|
796
|
-
"Asset":{
|
797
|
-
"type":"structure",
|
798
|
-
"members":{
|
799
|
-
"GroundTruthManifest":{"shape":"GroundTruthManifest"}
|
800
|
-
}
|
801
|
-
},
|
802
|
-
"Assets":{
|
803
|
-
"type":"list",
|
804
|
-
"member":{"shape":"Asset"}
|
805
|
-
},
|
806
|
-
"Attribute":{
|
807
|
-
"type":"string",
|
808
|
-
"enum":[
|
809
|
-
"DEFAULT",
|
810
|
-
"ALL"
|
811
|
-
]
|
812
|
-
},
|
813
|
-
"Attributes":{
|
814
|
-
"type":"list",
|
815
|
-
"member":{"shape":"Attribute"}
|
816
|
-
},
|
817
|
-
"Beard":{
|
818
|
-
"type":"structure",
|
819
|
-
"members":{
|
820
|
-
"Value":{"shape":"Boolean"},
|
821
|
-
"Confidence":{"shape":"Percent"}
|
822
|
-
}
|
823
|
-
},
|
824
|
-
"Boolean":{"type":"boolean"},
|
825
|
-
"BoundingBox":{
|
826
|
-
"type":"structure",
|
827
|
-
"members":{
|
828
|
-
"Width":{"shape":"Float"},
|
829
|
-
"Height":{"shape":"Float"},
|
830
|
-
"Left":{"shape":"Float"},
|
831
|
-
"Top":{"shape":"Float"}
|
832
|
-
}
|
833
|
-
},
|
834
|
-
"Celebrity":{
|
835
|
-
"type":"structure",
|
836
|
-
"members":{
|
837
|
-
"Urls":{"shape":"Urls"},
|
838
|
-
"Name":{"shape":"String"},
|
839
|
-
"Id":{"shape":"RekognitionUniqueId"},
|
840
|
-
"Face":{"shape":"ComparedFace"},
|
841
|
-
"MatchConfidence":{"shape":"Percent"}
|
842
|
-
}
|
843
|
-
},
|
844
|
-
"CelebrityDetail":{
|
845
|
-
"type":"structure",
|
846
|
-
"members":{
|
847
|
-
"Urls":{"shape":"Urls"},
|
848
|
-
"Name":{"shape":"String"},
|
849
|
-
"Id":{"shape":"RekognitionUniqueId"},
|
850
|
-
"Confidence":{"shape":"Percent"},
|
851
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
852
|
-
"Face":{"shape":"FaceDetail"}
|
853
|
-
}
|
854
|
-
},
|
855
|
-
"CelebrityList":{
|
856
|
-
"type":"list",
|
857
|
-
"member":{"shape":"Celebrity"}
|
858
|
-
},
|
859
|
-
"CelebrityRecognition":{
|
860
|
-
"type":"structure",
|
861
|
-
"members":{
|
862
|
-
"Timestamp":{"shape":"Timestamp"},
|
863
|
-
"Celebrity":{"shape":"CelebrityDetail"}
|
864
|
-
}
|
865
|
-
},
|
866
|
-
"CelebrityRecognitionSortBy":{
|
867
|
-
"type":"string",
|
868
|
-
"enum":[
|
869
|
-
"ID",
|
870
|
-
"TIMESTAMP"
|
871
|
-
]
|
872
|
-
},
|
873
|
-
"CelebrityRecognitions":{
|
874
|
-
"type":"list",
|
875
|
-
"member":{"shape":"CelebrityRecognition"}
|
876
|
-
},
|
877
|
-
"ClientRequestToken":{
|
878
|
-
"type":"string",
|
879
|
-
"max":64,
|
880
|
-
"min":1,
|
881
|
-
"pattern":"^[a-zA-Z0-9-_]+$"
|
882
|
-
},
|
883
|
-
"CollectionId":{
|
884
|
-
"type":"string",
|
885
|
-
"max":255,
|
886
|
-
"min":1,
|
887
|
-
"pattern":"[a-zA-Z0-9_.\\-]+"
|
888
|
-
},
|
889
|
-
"CollectionIdList":{
|
890
|
-
"type":"list",
|
891
|
-
"member":{"shape":"CollectionId"}
|
892
|
-
},
|
893
|
-
"CompareFacesMatch":{
|
894
|
-
"type":"structure",
|
895
|
-
"members":{
|
896
|
-
"Similarity":{"shape":"Percent"},
|
897
|
-
"Face":{"shape":"ComparedFace"}
|
898
|
-
}
|
899
|
-
},
|
900
|
-
"CompareFacesMatchList":{
|
901
|
-
"type":"list",
|
902
|
-
"member":{"shape":"CompareFacesMatch"}
|
903
|
-
},
|
904
|
-
"CompareFacesRequest":{
|
905
|
-
"type":"structure",
|
906
|
-
"required":[
|
907
|
-
"SourceImage",
|
908
|
-
"TargetImage"
|
909
|
-
],
|
910
|
-
"members":{
|
911
|
-
"SourceImage":{"shape":"Image"},
|
912
|
-
"TargetImage":{"shape":"Image"},
|
913
|
-
"SimilarityThreshold":{"shape":"Percent"},
|
914
|
-
"QualityFilter":{"shape":"QualityFilter"}
|
915
|
-
}
|
916
|
-
},
|
917
|
-
"CompareFacesResponse":{
|
918
|
-
"type":"structure",
|
919
|
-
"members":{
|
920
|
-
"SourceImageFace":{"shape":"ComparedSourceImageFace"},
|
921
|
-
"FaceMatches":{"shape":"CompareFacesMatchList"},
|
922
|
-
"UnmatchedFaces":{"shape":"CompareFacesUnmatchList"},
|
923
|
-
"SourceImageOrientationCorrection":{"shape":"OrientationCorrection"},
|
924
|
-
"TargetImageOrientationCorrection":{"shape":"OrientationCorrection"}
|
925
|
-
}
|
926
|
-
},
|
927
|
-
"CompareFacesUnmatchList":{
|
928
|
-
"type":"list",
|
929
|
-
"member":{"shape":"ComparedFace"}
|
930
|
-
},
|
931
|
-
"ComparedFace":{
|
932
|
-
"type":"structure",
|
933
|
-
"members":{
|
934
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
935
|
-
"Confidence":{"shape":"Percent"},
|
936
|
-
"Landmarks":{"shape":"Landmarks"},
|
937
|
-
"Pose":{"shape":"Pose"},
|
938
|
-
"Quality":{"shape":"ImageQuality"}
|
939
|
-
}
|
940
|
-
},
|
941
|
-
"ComparedFaceList":{
|
942
|
-
"type":"list",
|
943
|
-
"member":{"shape":"ComparedFace"}
|
944
|
-
},
|
945
|
-
"ComparedSourceImageFace":{
|
946
|
-
"type":"structure",
|
947
|
-
"members":{
|
948
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
949
|
-
"Confidence":{"shape":"Percent"}
|
950
|
-
}
|
951
|
-
},
|
952
|
-
"ContentClassifier":{
|
953
|
-
"type":"string",
|
954
|
-
"enum":[
|
955
|
-
"FreeOfPersonallyIdentifiableInformation",
|
956
|
-
"FreeOfAdultContent"
|
957
|
-
]
|
958
|
-
},
|
959
|
-
"ContentClassifiers":{
|
960
|
-
"type":"list",
|
961
|
-
"member":{"shape":"ContentClassifier"},
|
962
|
-
"max":256
|
963
|
-
},
|
964
|
-
"ContentModerationDetection":{
|
965
|
-
"type":"structure",
|
966
|
-
"members":{
|
967
|
-
"Timestamp":{"shape":"Timestamp"},
|
968
|
-
"ModerationLabel":{"shape":"ModerationLabel"}
|
969
|
-
}
|
970
|
-
},
|
971
|
-
"ContentModerationDetections":{
|
972
|
-
"type":"list",
|
973
|
-
"member":{"shape":"ContentModerationDetection"}
|
974
|
-
},
|
975
|
-
"ContentModerationSortBy":{
|
976
|
-
"type":"string",
|
977
|
-
"enum":[
|
978
|
-
"NAME",
|
979
|
-
"TIMESTAMP"
|
980
|
-
]
|
981
|
-
},
|
982
|
-
"CreateCollectionRequest":{
|
983
|
-
"type":"structure",
|
984
|
-
"required":["CollectionId"],
|
985
|
-
"members":{
|
986
|
-
"CollectionId":{"shape":"CollectionId"}
|
987
|
-
}
|
988
|
-
},
|
989
|
-
"CreateCollectionResponse":{
|
990
|
-
"type":"structure",
|
991
|
-
"members":{
|
992
|
-
"StatusCode":{"shape":"UInteger"},
|
993
|
-
"CollectionArn":{"shape":"String"},
|
994
|
-
"FaceModelVersion":{"shape":"String"}
|
995
|
-
}
|
996
|
-
},
|
997
|
-
"CreateProjectRequest":{
|
998
|
-
"type":"structure",
|
999
|
-
"required":["ProjectName"],
|
1000
|
-
"members":{
|
1001
|
-
"ProjectName":{"shape":"ProjectName"}
|
1002
|
-
}
|
1003
|
-
},
|
1004
|
-
"CreateProjectResponse":{
|
1005
|
-
"type":"structure",
|
1006
|
-
"members":{
|
1007
|
-
"ProjectArn":{"shape":"ProjectArn"}
|
1008
|
-
}
|
1009
|
-
},
|
1010
|
-
"CreateProjectVersionRequest":{
|
1011
|
-
"type":"structure",
|
1012
|
-
"required":[
|
1013
|
-
"ProjectArn",
|
1014
|
-
"VersionName",
|
1015
|
-
"OutputConfig",
|
1016
|
-
"TrainingData",
|
1017
|
-
"TestingData"
|
1018
|
-
],
|
1019
|
-
"members":{
|
1020
|
-
"ProjectArn":{"shape":"ProjectArn"},
|
1021
|
-
"VersionName":{"shape":"VersionName"},
|
1022
|
-
"OutputConfig":{"shape":"OutputConfig"},
|
1023
|
-
"TrainingData":{"shape":"TrainingData"},
|
1024
|
-
"TestingData":{"shape":"TestingData"}
|
1025
|
-
}
|
1026
|
-
},
|
1027
|
-
"CreateProjectVersionResponse":{
|
1028
|
-
"type":"structure",
|
1029
|
-
"members":{
|
1030
|
-
"ProjectVersionArn":{"shape":"ProjectVersionArn"}
|
1031
|
-
}
|
1032
|
-
},
|
1033
|
-
"CreateStreamProcessorRequest":{
|
1034
|
-
"type":"structure",
|
1035
|
-
"required":[
|
1036
|
-
"Input",
|
1037
|
-
"Output",
|
1038
|
-
"Name",
|
1039
|
-
"Settings",
|
1040
|
-
"RoleArn"
|
1041
|
-
],
|
1042
|
-
"members":{
|
1043
|
-
"Input":{"shape":"StreamProcessorInput"},
|
1044
|
-
"Output":{"shape":"StreamProcessorOutput"},
|
1045
|
-
"Name":{"shape":"StreamProcessorName"},
|
1046
|
-
"Settings":{"shape":"StreamProcessorSettings"},
|
1047
|
-
"RoleArn":{"shape":"RoleArn"}
|
1048
|
-
}
|
1049
|
-
},
|
1050
|
-
"CreateStreamProcessorResponse":{
|
1051
|
-
"type":"structure",
|
1052
|
-
"members":{
|
1053
|
-
"StreamProcessorArn":{"shape":"StreamProcessorArn"}
|
1054
|
-
}
|
1055
|
-
},
|
1056
|
-
"CustomLabel":{
|
1057
|
-
"type":"structure",
|
1058
|
-
"members":{
|
1059
|
-
"Name":{"shape":"String"},
|
1060
|
-
"Confidence":{"shape":"Percent"},
|
1061
|
-
"Geometry":{"shape":"Geometry"}
|
1062
|
-
}
|
1063
|
-
},
|
1064
|
-
"CustomLabels":{
|
1065
|
-
"type":"list",
|
1066
|
-
"member":{"shape":"CustomLabel"}
|
1067
|
-
},
|
1068
|
-
"DateTime":{"type":"timestamp"},
|
1069
|
-
"Degree":{
|
1070
|
-
"type":"float",
|
1071
|
-
"max":180,
|
1072
|
-
"min":-180
|
1073
|
-
},
|
1074
|
-
"DeleteCollectionRequest":{
|
1075
|
-
"type":"structure",
|
1076
|
-
"required":["CollectionId"],
|
1077
|
-
"members":{
|
1078
|
-
"CollectionId":{"shape":"CollectionId"}
|
1079
|
-
}
|
1080
|
-
},
|
1081
|
-
"DeleteCollectionResponse":{
|
1082
|
-
"type":"structure",
|
1083
|
-
"members":{
|
1084
|
-
"StatusCode":{"shape":"UInteger"}
|
1085
|
-
}
|
1086
|
-
},
|
1087
|
-
"DeleteFacesRequest":{
|
1088
|
-
"type":"structure",
|
1089
|
-
"required":[
|
1090
|
-
"CollectionId",
|
1091
|
-
"FaceIds"
|
1092
|
-
],
|
1093
|
-
"members":{
|
1094
|
-
"CollectionId":{"shape":"CollectionId"},
|
1095
|
-
"FaceIds":{"shape":"FaceIdList"}
|
1096
|
-
}
|
1097
|
-
},
|
1098
|
-
"DeleteFacesResponse":{
|
1099
|
-
"type":"structure",
|
1100
|
-
"members":{
|
1101
|
-
"DeletedFaces":{"shape":"FaceIdList"}
|
1102
|
-
}
|
1103
|
-
},
|
1104
|
-
"DeleteStreamProcessorRequest":{
|
1105
|
-
"type":"structure",
|
1106
|
-
"required":["Name"],
|
1107
|
-
"members":{
|
1108
|
-
"Name":{"shape":"StreamProcessorName"}
|
1109
|
-
}
|
1110
|
-
},
|
1111
|
-
"DeleteStreamProcessorResponse":{
|
1112
|
-
"type":"structure",
|
1113
|
-
"members":{
|
1114
|
-
}
|
1115
|
-
},
|
1116
|
-
"DescribeCollectionRequest":{
|
1117
|
-
"type":"structure",
|
1118
|
-
"required":["CollectionId"],
|
1119
|
-
"members":{
|
1120
|
-
"CollectionId":{"shape":"CollectionId"}
|
1121
|
-
}
|
1122
|
-
},
|
1123
|
-
"DescribeCollectionResponse":{
|
1124
|
-
"type":"structure",
|
1125
|
-
"members":{
|
1126
|
-
"FaceCount":{"shape":"ULong"},
|
1127
|
-
"FaceModelVersion":{"shape":"String"},
|
1128
|
-
"CollectionARN":{"shape":"String"},
|
1129
|
-
"CreationTimestamp":{"shape":"DateTime"}
|
1130
|
-
}
|
1131
|
-
},
|
1132
|
-
"DescribeProjectVersionsRequest":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"required":["ProjectArn"],
|
1135
|
-
"members":{
|
1136
|
-
"ProjectArn":{"shape":"ProjectArn"},
|
1137
|
-
"VersionNames":{"shape":"VersionNames"},
|
1138
|
-
"NextToken":{"shape":"ExtendedPaginationToken"},
|
1139
|
-
"MaxResults":{"shape":"ProjectVersionsPageSize"}
|
1140
|
-
}
|
1141
|
-
},
|
1142
|
-
"DescribeProjectVersionsResponse":{
|
1143
|
-
"type":"structure",
|
1144
|
-
"members":{
|
1145
|
-
"ProjectVersionDescriptions":{"shape":"ProjectVersionDescriptions"},
|
1146
|
-
"NextToken":{"shape":"ExtendedPaginationToken"}
|
1147
|
-
}
|
1148
|
-
},
|
1149
|
-
"DescribeProjectsRequest":{
|
1150
|
-
"type":"structure",
|
1151
|
-
"members":{
|
1152
|
-
"NextToken":{"shape":"ExtendedPaginationToken"},
|
1153
|
-
"MaxResults":{"shape":"ProjectsPageSize"}
|
1154
|
-
}
|
1155
|
-
},
|
1156
|
-
"DescribeProjectsResponse":{
|
1157
|
-
"type":"structure",
|
1158
|
-
"members":{
|
1159
|
-
"ProjectDescriptions":{"shape":"ProjectDescriptions"},
|
1160
|
-
"NextToken":{"shape":"ExtendedPaginationToken"}
|
1161
|
-
}
|
1162
|
-
},
|
1163
|
-
"DescribeStreamProcessorRequest":{
|
1164
|
-
"type":"structure",
|
1165
|
-
"required":["Name"],
|
1166
|
-
"members":{
|
1167
|
-
"Name":{"shape":"StreamProcessorName"}
|
1168
|
-
}
|
1169
|
-
},
|
1170
|
-
"DescribeStreamProcessorResponse":{
|
1171
|
-
"type":"structure",
|
1172
|
-
"members":{
|
1173
|
-
"Name":{"shape":"StreamProcessorName"},
|
1174
|
-
"StreamProcessorArn":{"shape":"StreamProcessorArn"},
|
1175
|
-
"Status":{"shape":"StreamProcessorStatus"},
|
1176
|
-
"StatusMessage":{"shape":"String"},
|
1177
|
-
"CreationTimestamp":{"shape":"DateTime"},
|
1178
|
-
"LastUpdateTimestamp":{"shape":"DateTime"},
|
1179
|
-
"Input":{"shape":"StreamProcessorInput"},
|
1180
|
-
"Output":{"shape":"StreamProcessorOutput"},
|
1181
|
-
"RoleArn":{"shape":"RoleArn"},
|
1182
|
-
"Settings":{"shape":"StreamProcessorSettings"}
|
1183
|
-
}
|
1184
|
-
},
|
1185
|
-
"DetectCustomLabelsRequest":{
|
1186
|
-
"type":"structure",
|
1187
|
-
"required":[
|
1188
|
-
"ProjectVersionArn",
|
1189
|
-
"Image"
|
1190
|
-
],
|
1191
|
-
"members":{
|
1192
|
-
"ProjectVersionArn":{"shape":"ProjectVersionArn"},
|
1193
|
-
"Image":{"shape":"Image"},
|
1194
|
-
"MaxResults":{"shape":"UInteger"},
|
1195
|
-
"MinConfidence":{"shape":"Percent"}
|
1196
|
-
}
|
1197
|
-
},
|
1198
|
-
"DetectCustomLabelsResponse":{
|
1199
|
-
"type":"structure",
|
1200
|
-
"members":{
|
1201
|
-
"CustomLabels":{"shape":"CustomLabels"}
|
1202
|
-
}
|
1203
|
-
},
|
1204
|
-
"DetectFacesRequest":{
|
1205
|
-
"type":"structure",
|
1206
|
-
"required":["Image"],
|
1207
|
-
"members":{
|
1208
|
-
"Image":{"shape":"Image"},
|
1209
|
-
"Attributes":{"shape":"Attributes"}
|
1210
|
-
}
|
1211
|
-
},
|
1212
|
-
"DetectFacesResponse":{
|
1213
|
-
"type":"structure",
|
1214
|
-
"members":{
|
1215
|
-
"FaceDetails":{"shape":"FaceDetailList"},
|
1216
|
-
"OrientationCorrection":{"shape":"OrientationCorrection"}
|
1217
|
-
}
|
1218
|
-
},
|
1219
|
-
"DetectLabelsRequest":{
|
1220
|
-
"type":"structure",
|
1221
|
-
"required":["Image"],
|
1222
|
-
"members":{
|
1223
|
-
"Image":{"shape":"Image"},
|
1224
|
-
"MaxLabels":{"shape":"UInteger"},
|
1225
|
-
"MinConfidence":{"shape":"Percent"}
|
1226
|
-
}
|
1227
|
-
},
|
1228
|
-
"DetectLabelsResponse":{
|
1229
|
-
"type":"structure",
|
1230
|
-
"members":{
|
1231
|
-
"Labels":{"shape":"Labels"},
|
1232
|
-
"OrientationCorrection":{"shape":"OrientationCorrection"},
|
1233
|
-
"LabelModelVersion":{"shape":"String"}
|
1234
|
-
}
|
1235
|
-
},
|
1236
|
-
"DetectModerationLabelsRequest":{
|
1237
|
-
"type":"structure",
|
1238
|
-
"required":["Image"],
|
1239
|
-
"members":{
|
1240
|
-
"Image":{"shape":"Image"},
|
1241
|
-
"MinConfidence":{"shape":"Percent"},
|
1242
|
-
"HumanLoopConfig":{"shape":"HumanLoopConfig"}
|
1243
|
-
}
|
1244
|
-
},
|
1245
|
-
"DetectModerationLabelsResponse":{
|
1246
|
-
"type":"structure",
|
1247
|
-
"members":{
|
1248
|
-
"ModerationLabels":{"shape":"ModerationLabels"},
|
1249
|
-
"ModerationModelVersion":{"shape":"String"},
|
1250
|
-
"HumanLoopActivationOutput":{"shape":"HumanLoopActivationOutput"}
|
1251
|
-
}
|
1252
|
-
},
|
1253
|
-
"DetectTextRequest":{
|
1254
|
-
"type":"structure",
|
1255
|
-
"required":["Image"],
|
1256
|
-
"members":{
|
1257
|
-
"Image":{"shape":"Image"}
|
1258
|
-
}
|
1259
|
-
},
|
1260
|
-
"DetectTextResponse":{
|
1261
|
-
"type":"structure",
|
1262
|
-
"members":{
|
1263
|
-
"TextDetections":{"shape":"TextDetectionList"}
|
1264
|
-
}
|
1265
|
-
},
|
1266
|
-
"Emotion":{
|
1267
|
-
"type":"structure",
|
1268
|
-
"members":{
|
1269
|
-
"Type":{"shape":"EmotionName"},
|
1270
|
-
"Confidence":{"shape":"Percent"}
|
1271
|
-
}
|
1272
|
-
},
|
1273
|
-
"EmotionName":{
|
1274
|
-
"type":"string",
|
1275
|
-
"enum":[
|
1276
|
-
"HAPPY",
|
1277
|
-
"SAD",
|
1278
|
-
"ANGRY",
|
1279
|
-
"CONFUSED",
|
1280
|
-
"DISGUSTED",
|
1281
|
-
"SURPRISED",
|
1282
|
-
"CALM",
|
1283
|
-
"UNKNOWN",
|
1284
|
-
"FEAR"
|
1285
|
-
]
|
1286
|
-
},
|
1287
|
-
"Emotions":{
|
1288
|
-
"type":"list",
|
1289
|
-
"member":{"shape":"Emotion"}
|
1290
|
-
},
|
1291
|
-
"EvaluationResult":{
|
1292
|
-
"type":"structure",
|
1293
|
-
"members":{
|
1294
|
-
"F1Score":{"shape":"Float"},
|
1295
|
-
"Summary":{"shape":"Summary"}
|
1296
|
-
}
|
1297
|
-
},
|
1298
|
-
"ExtendedPaginationToken":{
|
1299
|
-
"type":"string",
|
1300
|
-
"max":1024
|
1301
|
-
},
|
1302
|
-
"ExternalImageId":{
|
1303
|
-
"type":"string",
|
1304
|
-
"max":255,
|
1305
|
-
"min":1,
|
1306
|
-
"pattern":"[a-zA-Z0-9_.\\-:]+"
|
1307
|
-
},
|
1308
|
-
"EyeOpen":{
|
1309
|
-
"type":"structure",
|
1310
|
-
"members":{
|
1311
|
-
"Value":{"shape":"Boolean"},
|
1312
|
-
"Confidence":{"shape":"Percent"}
|
1313
|
-
}
|
1314
|
-
},
|
1315
|
-
"Eyeglasses":{
|
1316
|
-
"type":"structure",
|
1317
|
-
"members":{
|
1318
|
-
"Value":{"shape":"Boolean"},
|
1319
|
-
"Confidence":{"shape":"Percent"}
|
1320
|
-
}
|
1321
|
-
},
|
1322
|
-
"Face":{
|
1323
|
-
"type":"structure",
|
1324
|
-
"members":{
|
1325
|
-
"FaceId":{"shape":"FaceId"},
|
1326
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
1327
|
-
"ImageId":{"shape":"ImageId"},
|
1328
|
-
"ExternalImageId":{"shape":"ExternalImageId"},
|
1329
|
-
"Confidence":{"shape":"Percent"}
|
1330
|
-
}
|
1331
|
-
},
|
1332
|
-
"FaceAttributes":{
|
1333
|
-
"type":"string",
|
1334
|
-
"enum":[
|
1335
|
-
"DEFAULT",
|
1336
|
-
"ALL"
|
1337
|
-
]
|
1338
|
-
},
|
1339
|
-
"FaceDetail":{
|
1340
|
-
"type":"structure",
|
1341
|
-
"members":{
|
1342
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
1343
|
-
"AgeRange":{"shape":"AgeRange"},
|
1344
|
-
"Smile":{"shape":"Smile"},
|
1345
|
-
"Eyeglasses":{"shape":"Eyeglasses"},
|
1346
|
-
"Sunglasses":{"shape":"Sunglasses"},
|
1347
|
-
"Gender":{"shape":"Gender"},
|
1348
|
-
"Beard":{"shape":"Beard"},
|
1349
|
-
"Mustache":{"shape":"Mustache"},
|
1350
|
-
"EyesOpen":{"shape":"EyeOpen"},
|
1351
|
-
"MouthOpen":{"shape":"MouthOpen"},
|
1352
|
-
"Emotions":{"shape":"Emotions"},
|
1353
|
-
"Landmarks":{"shape":"Landmarks"},
|
1354
|
-
"Pose":{"shape":"Pose"},
|
1355
|
-
"Quality":{"shape":"ImageQuality"},
|
1356
|
-
"Confidence":{"shape":"Percent"}
|
1357
|
-
}
|
1358
|
-
},
|
1359
|
-
"FaceDetailList":{
|
1360
|
-
"type":"list",
|
1361
|
-
"member":{"shape":"FaceDetail"}
|
1362
|
-
},
|
1363
|
-
"FaceDetection":{
|
1364
|
-
"type":"structure",
|
1365
|
-
"members":{
|
1366
|
-
"Timestamp":{"shape":"Timestamp"},
|
1367
|
-
"Face":{"shape":"FaceDetail"}
|
1368
|
-
}
|
1369
|
-
},
|
1370
|
-
"FaceDetections":{
|
1371
|
-
"type":"list",
|
1372
|
-
"member":{"shape":"FaceDetection"}
|
1373
|
-
},
|
1374
|
-
"FaceId":{
|
1375
|
-
"type":"string",
|
1376
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
1377
|
-
},
|
1378
|
-
"FaceIdList":{
|
1379
|
-
"type":"list",
|
1380
|
-
"member":{"shape":"FaceId"},
|
1381
|
-
"max":4096,
|
1382
|
-
"min":1
|
1383
|
-
},
|
1384
|
-
"FaceList":{
|
1385
|
-
"type":"list",
|
1386
|
-
"member":{"shape":"Face"}
|
1387
|
-
},
|
1388
|
-
"FaceMatch":{
|
1389
|
-
"type":"structure",
|
1390
|
-
"members":{
|
1391
|
-
"Similarity":{"shape":"Percent"},
|
1392
|
-
"Face":{"shape":"Face"}
|
1393
|
-
}
|
1394
|
-
},
|
1395
|
-
"FaceMatchList":{
|
1396
|
-
"type":"list",
|
1397
|
-
"member":{"shape":"FaceMatch"}
|
1398
|
-
},
|
1399
|
-
"FaceModelVersionList":{
|
1400
|
-
"type":"list",
|
1401
|
-
"member":{"shape":"String"}
|
1402
|
-
},
|
1403
|
-
"FaceRecord":{
|
1404
|
-
"type":"structure",
|
1405
|
-
"members":{
|
1406
|
-
"Face":{"shape":"Face"},
|
1407
|
-
"FaceDetail":{"shape":"FaceDetail"}
|
1408
|
-
}
|
1409
|
-
},
|
1410
|
-
"FaceRecordList":{
|
1411
|
-
"type":"list",
|
1412
|
-
"member":{"shape":"FaceRecord"}
|
1413
|
-
},
|
1414
|
-
"FaceSearchSettings":{
|
1415
|
-
"type":"structure",
|
1416
|
-
"members":{
|
1417
|
-
"CollectionId":{"shape":"CollectionId"},
|
1418
|
-
"FaceMatchThreshold":{"shape":"Percent"}
|
1419
|
-
}
|
1420
|
-
},
|
1421
|
-
"FaceSearchSortBy":{
|
1422
|
-
"type":"string",
|
1423
|
-
"enum":[
|
1424
|
-
"INDEX",
|
1425
|
-
"TIMESTAMP"
|
1426
|
-
]
|
1427
|
-
},
|
1428
|
-
"Float":{"type":"float"},
|
1429
|
-
"FlowDefinitionArn":{
|
1430
|
-
"type":"string",
|
1431
|
-
"max":256
|
1432
|
-
},
|
1433
|
-
"Gender":{
|
1434
|
-
"type":"structure",
|
1435
|
-
"members":{
|
1436
|
-
"Value":{"shape":"GenderType"},
|
1437
|
-
"Confidence":{"shape":"Percent"}
|
1438
|
-
}
|
1439
|
-
},
|
1440
|
-
"GenderType":{
|
1441
|
-
"type":"string",
|
1442
|
-
"enum":[
|
1443
|
-
"Male",
|
1444
|
-
"Female"
|
1445
|
-
]
|
1446
|
-
},
|
1447
|
-
"Geometry":{
|
1448
|
-
"type":"structure",
|
1449
|
-
"members":{
|
1450
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
1451
|
-
"Polygon":{"shape":"Polygon"}
|
1452
|
-
}
|
1453
|
-
},
|
1454
|
-
"GetCelebrityInfoRequest":{
|
1455
|
-
"type":"structure",
|
1456
|
-
"required":["Id"],
|
1457
|
-
"members":{
|
1458
|
-
"Id":{"shape":"RekognitionUniqueId"}
|
1459
|
-
}
|
1460
|
-
},
|
1461
|
-
"GetCelebrityInfoResponse":{
|
1462
|
-
"type":"structure",
|
1463
|
-
"members":{
|
1464
|
-
"Urls":{"shape":"Urls"},
|
1465
|
-
"Name":{"shape":"String"}
|
1466
|
-
}
|
1467
|
-
},
|
1468
|
-
"GetCelebrityRecognitionRequest":{
|
1469
|
-
"type":"structure",
|
1470
|
-
"required":["JobId"],
|
1471
|
-
"members":{
|
1472
|
-
"JobId":{"shape":"JobId"},
|
1473
|
-
"MaxResults":{"shape":"MaxResults"},
|
1474
|
-
"NextToken":{"shape":"PaginationToken"},
|
1475
|
-
"SortBy":{"shape":"CelebrityRecognitionSortBy"}
|
1476
|
-
}
|
1477
|
-
},
|
1478
|
-
"GetCelebrityRecognitionResponse":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"members":{
|
1481
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1482
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1483
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1484
|
-
"NextToken":{"shape":"PaginationToken"},
|
1485
|
-
"Celebrities":{"shape":"CelebrityRecognitions"}
|
1486
|
-
}
|
1487
|
-
},
|
1488
|
-
"GetContentModerationRequest":{
|
1489
|
-
"type":"structure",
|
1490
|
-
"required":["JobId"],
|
1491
|
-
"members":{
|
1492
|
-
"JobId":{"shape":"JobId"},
|
1493
|
-
"MaxResults":{"shape":"MaxResults"},
|
1494
|
-
"NextToken":{"shape":"PaginationToken"},
|
1495
|
-
"SortBy":{"shape":"ContentModerationSortBy"}
|
1496
|
-
}
|
1497
|
-
},
|
1498
|
-
"GetContentModerationResponse":{
|
1499
|
-
"type":"structure",
|
1500
|
-
"members":{
|
1501
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1502
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1503
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1504
|
-
"ModerationLabels":{"shape":"ContentModerationDetections"},
|
1505
|
-
"NextToken":{"shape":"PaginationToken"},
|
1506
|
-
"ModerationModelVersion":{"shape":"String"}
|
1507
|
-
}
|
1508
|
-
},
|
1509
|
-
"GetFaceDetectionRequest":{
|
1510
|
-
"type":"structure",
|
1511
|
-
"required":["JobId"],
|
1512
|
-
"members":{
|
1513
|
-
"JobId":{"shape":"JobId"},
|
1514
|
-
"MaxResults":{"shape":"MaxResults"},
|
1515
|
-
"NextToken":{"shape":"PaginationToken"}
|
1516
|
-
}
|
1517
|
-
},
|
1518
|
-
"GetFaceDetectionResponse":{
|
1519
|
-
"type":"structure",
|
1520
|
-
"members":{
|
1521
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1522
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1523
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1524
|
-
"NextToken":{"shape":"PaginationToken"},
|
1525
|
-
"Faces":{"shape":"FaceDetections"}
|
1526
|
-
}
|
1527
|
-
},
|
1528
|
-
"GetFaceSearchRequest":{
|
1529
|
-
"type":"structure",
|
1530
|
-
"required":["JobId"],
|
1531
|
-
"members":{
|
1532
|
-
"JobId":{"shape":"JobId"},
|
1533
|
-
"MaxResults":{"shape":"MaxResults"},
|
1534
|
-
"NextToken":{"shape":"PaginationToken"},
|
1535
|
-
"SortBy":{"shape":"FaceSearchSortBy"}
|
1536
|
-
}
|
1537
|
-
},
|
1538
|
-
"GetFaceSearchResponse":{
|
1539
|
-
"type":"structure",
|
1540
|
-
"members":{
|
1541
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1542
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1543
|
-
"NextToken":{"shape":"PaginationToken"},
|
1544
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1545
|
-
"Persons":{"shape":"PersonMatches"}
|
1546
|
-
}
|
1547
|
-
},
|
1548
|
-
"GetLabelDetectionRequest":{
|
1549
|
-
"type":"structure",
|
1550
|
-
"required":["JobId"],
|
1551
|
-
"members":{
|
1552
|
-
"JobId":{"shape":"JobId"},
|
1553
|
-
"MaxResults":{"shape":"MaxResults"},
|
1554
|
-
"NextToken":{"shape":"PaginationToken"},
|
1555
|
-
"SortBy":{"shape":"LabelDetectionSortBy"}
|
1556
|
-
}
|
1557
|
-
},
|
1558
|
-
"GetLabelDetectionResponse":{
|
1559
|
-
"type":"structure",
|
1560
|
-
"members":{
|
1561
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1562
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1563
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1564
|
-
"NextToken":{"shape":"PaginationToken"},
|
1565
|
-
"Labels":{"shape":"LabelDetections"},
|
1566
|
-
"LabelModelVersion":{"shape":"String"}
|
1567
|
-
}
|
1568
|
-
},
|
1569
|
-
"GetPersonTrackingRequest":{
|
1570
|
-
"type":"structure",
|
1571
|
-
"required":["JobId"],
|
1572
|
-
"members":{
|
1573
|
-
"JobId":{"shape":"JobId"},
|
1574
|
-
"MaxResults":{"shape":"MaxResults"},
|
1575
|
-
"NextToken":{"shape":"PaginationToken"},
|
1576
|
-
"SortBy":{"shape":"PersonTrackingSortBy"}
|
1577
|
-
}
|
1578
|
-
},
|
1579
|
-
"GetPersonTrackingResponse":{
|
1580
|
-
"type":"structure",
|
1581
|
-
"members":{
|
1582
|
-
"JobStatus":{"shape":"VideoJobStatus"},
|
1583
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
1584
|
-
"VideoMetadata":{"shape":"VideoMetadata"},
|
1585
|
-
"NextToken":{"shape":"PaginationToken"},
|
1586
|
-
"Persons":{"shape":"PersonDetections"}
|
1587
|
-
}
|
1588
|
-
},
|
1589
|
-
"GroundTruthManifest":{
|
1590
|
-
"type":"structure",
|
1591
|
-
"members":{
|
1592
|
-
"S3Object":{"shape":"S3Object"}
|
1593
|
-
}
|
1594
|
-
},
|
1595
|
-
"HumanLoopActivationConditionsEvaluationResults":{
|
1596
|
-
"type":"string",
|
1597
|
-
"max":10240
|
1598
|
-
},
|
1599
|
-
"HumanLoopActivationOutput":{
|
1600
|
-
"type":"structure",
|
1601
|
-
"members":{
|
1602
|
-
"HumanLoopArn":{"shape":"HumanLoopArn"},
|
1603
|
-
"HumanLoopActivationReasons":{"shape":"HumanLoopActivationReasons"},
|
1604
|
-
"HumanLoopActivationConditionsEvaluationResults":{
|
1605
|
-
"shape":"HumanLoopActivationConditionsEvaluationResults",
|
1606
|
-
"jsonvalue":true
|
1607
|
-
}
|
1608
|
-
}
|
1609
|
-
},
|
1610
|
-
"HumanLoopActivationReason":{"type":"string"},
|
1611
|
-
"HumanLoopActivationReasons":{
|
1612
|
-
"type":"list",
|
1613
|
-
"member":{"shape":"HumanLoopActivationReason"},
|
1614
|
-
"min":1
|
1615
|
-
},
|
1616
|
-
"HumanLoopArn":{
|
1617
|
-
"type":"string",
|
1618
|
-
"max":256
|
1619
|
-
},
|
1620
|
-
"HumanLoopConfig":{
|
1621
|
-
"type":"structure",
|
1622
|
-
"required":[
|
1623
|
-
"HumanLoopName",
|
1624
|
-
"FlowDefinitionArn"
|
1625
|
-
],
|
1626
|
-
"members":{
|
1627
|
-
"HumanLoopName":{"shape":"HumanLoopName"},
|
1628
|
-
"FlowDefinitionArn":{"shape":"FlowDefinitionArn"},
|
1629
|
-
"DataAttributes":{"shape":"HumanLoopDataAttributes"}
|
1630
|
-
}
|
1631
|
-
},
|
1632
|
-
"HumanLoopDataAttributes":{
|
1633
|
-
"type":"structure",
|
1634
|
-
"members":{
|
1635
|
-
"ContentClassifiers":{"shape":"ContentClassifiers"}
|
1636
|
-
}
|
1637
|
-
},
|
1638
|
-
"HumanLoopName":{
|
1639
|
-
"type":"string",
|
1640
|
-
"max":63,
|
1641
|
-
"min":1,
|
1642
|
-
"pattern":"^[a-z0-9](-*[a-z0-9])*"
|
1643
|
-
},
|
1644
|
-
"HumanLoopQuotaExceededException":{
|
1645
|
-
"type":"structure",
|
1646
|
-
"members":{
|
1647
|
-
"ResourceType":{"shape":"String"},
|
1648
|
-
"QuotaCode":{"shape":"String"},
|
1649
|
-
"ServiceCode":{"shape":"String"}
|
1650
|
-
},
|
1651
|
-
"exception":true
|
1652
|
-
},
|
1653
|
-
"IdempotentParameterMismatchException":{
|
1654
|
-
"type":"structure",
|
1655
|
-
"members":{
|
1656
|
-
},
|
1657
|
-
"exception":true
|
1658
|
-
},
|
1659
|
-
"Image":{
|
1660
|
-
"type":"structure",
|
1661
|
-
"members":{
|
1662
|
-
"Bytes":{"shape":"ImageBlob"},
|
1663
|
-
"S3Object":{"shape":"S3Object"}
|
1664
|
-
}
|
1665
|
-
},
|
1666
|
-
"ImageBlob":{
|
1667
|
-
"type":"blob",
|
1668
|
-
"max":5242880,
|
1669
|
-
"min":1
|
1670
|
-
},
|
1671
|
-
"ImageId":{
|
1672
|
-
"type":"string",
|
1673
|
-
"pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
1674
|
-
},
|
1675
|
-
"ImageQuality":{
|
1676
|
-
"type":"structure",
|
1677
|
-
"members":{
|
1678
|
-
"Brightness":{"shape":"Float"},
|
1679
|
-
"Sharpness":{"shape":"Float"}
|
1680
|
-
}
|
1681
|
-
},
|
1682
|
-
"ImageTooLargeException":{
|
1683
|
-
"type":"structure",
|
1684
|
-
"members":{
|
1685
|
-
},
|
1686
|
-
"exception":true
|
1687
|
-
},
|
1688
|
-
"IndexFacesRequest":{
|
1689
|
-
"type":"structure",
|
1690
|
-
"required":[
|
1691
|
-
"CollectionId",
|
1692
|
-
"Image"
|
1693
|
-
],
|
1694
|
-
"members":{
|
1695
|
-
"CollectionId":{"shape":"CollectionId"},
|
1696
|
-
"Image":{"shape":"Image"},
|
1697
|
-
"ExternalImageId":{"shape":"ExternalImageId"},
|
1698
|
-
"DetectionAttributes":{"shape":"Attributes"},
|
1699
|
-
"MaxFaces":{"shape":"MaxFacesToIndex"},
|
1700
|
-
"QualityFilter":{"shape":"QualityFilter"}
|
1701
|
-
}
|
1702
|
-
},
|
1703
|
-
"IndexFacesResponse":{
|
1704
|
-
"type":"structure",
|
1705
|
-
"members":{
|
1706
|
-
"FaceRecords":{"shape":"FaceRecordList"},
|
1707
|
-
"OrientationCorrection":{"shape":"OrientationCorrection"},
|
1708
|
-
"FaceModelVersion":{"shape":"String"},
|
1709
|
-
"UnindexedFaces":{"shape":"UnindexedFaces"}
|
1710
|
-
}
|
1711
|
-
},
|
1712
|
-
"InferenceUnits":{
|
1713
|
-
"type":"integer",
|
1714
|
-
"min":1
|
1715
|
-
},
|
1716
|
-
"Instance":{
|
1717
|
-
"type":"structure",
|
1718
|
-
"members":{
|
1719
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
1720
|
-
"Confidence":{"shape":"Percent"}
|
1721
|
-
}
|
1722
|
-
},
|
1723
|
-
"Instances":{
|
1724
|
-
"type":"list",
|
1725
|
-
"member":{"shape":"Instance"}
|
1726
|
-
},
|
1727
|
-
"InternalServerError":{
|
1728
|
-
"type":"structure",
|
1729
|
-
"members":{
|
1730
|
-
},
|
1731
|
-
"exception":true,
|
1732
|
-
"fault":true
|
1733
|
-
},
|
1734
|
-
"InvalidImageFormatException":{
|
1735
|
-
"type":"structure",
|
1736
|
-
"members":{
|
1737
|
-
},
|
1738
|
-
"exception":true
|
1739
|
-
},
|
1740
|
-
"InvalidPaginationTokenException":{
|
1741
|
-
"type":"structure",
|
1742
|
-
"members":{
|
1743
|
-
},
|
1744
|
-
"exception":true
|
1745
|
-
},
|
1746
|
-
"InvalidParameterException":{
|
1747
|
-
"type":"structure",
|
1748
|
-
"members":{
|
1749
|
-
},
|
1750
|
-
"exception":true
|
1751
|
-
},
|
1752
|
-
"InvalidS3ObjectException":{
|
1753
|
-
"type":"structure",
|
1754
|
-
"members":{
|
1755
|
-
},
|
1756
|
-
"exception":true
|
1757
|
-
},
|
1758
|
-
"JobId":{
|
1759
|
-
"type":"string",
|
1760
|
-
"max":64,
|
1761
|
-
"min":1,
|
1762
|
-
"pattern":"^[a-zA-Z0-9-_]+$"
|
1763
|
-
},
|
1764
|
-
"JobTag":{
|
1765
|
-
"type":"string",
|
1766
|
-
"max":256,
|
1767
|
-
"min":1,
|
1768
|
-
"pattern":"[a-zA-Z0-9_.\\-:]+"
|
1769
|
-
},
|
1770
|
-
"KinesisDataArn":{
|
1771
|
-
"type":"string",
|
1772
|
-
"pattern":"(^arn:([a-z\\d-]+):kinesis:([a-z\\d-]+):\\d{12}:.+$)"
|
1773
|
-
},
|
1774
|
-
"KinesisDataStream":{
|
1775
|
-
"type":"structure",
|
1776
|
-
"members":{
|
1777
|
-
"Arn":{"shape":"KinesisDataArn"}
|
1778
|
-
}
|
1779
|
-
},
|
1780
|
-
"KinesisVideoArn":{
|
1781
|
-
"type":"string",
|
1782
|
-
"pattern":"(^arn:([a-z\\d-]+):kinesisvideo:([a-z\\d-]+):\\d{12}:.+$)"
|
1783
|
-
},
|
1784
|
-
"KinesisVideoStream":{
|
1785
|
-
"type":"structure",
|
1786
|
-
"members":{
|
1787
|
-
"Arn":{"shape":"KinesisVideoArn"}
|
1788
|
-
}
|
1789
|
-
},
|
1790
|
-
"Label":{
|
1791
|
-
"type":"structure",
|
1792
|
-
"members":{
|
1793
|
-
"Name":{"shape":"String"},
|
1794
|
-
"Confidence":{"shape":"Percent"},
|
1795
|
-
"Instances":{"shape":"Instances"},
|
1796
|
-
"Parents":{"shape":"Parents"}
|
1797
|
-
}
|
1798
|
-
},
|
1799
|
-
"LabelDetection":{
|
1800
|
-
"type":"structure",
|
1801
|
-
"members":{
|
1802
|
-
"Timestamp":{"shape":"Timestamp"},
|
1803
|
-
"Label":{"shape":"Label"}
|
1804
|
-
}
|
1805
|
-
},
|
1806
|
-
"LabelDetectionSortBy":{
|
1807
|
-
"type":"string",
|
1808
|
-
"enum":[
|
1809
|
-
"NAME",
|
1810
|
-
"TIMESTAMP"
|
1811
|
-
]
|
1812
|
-
},
|
1813
|
-
"LabelDetections":{
|
1814
|
-
"type":"list",
|
1815
|
-
"member":{"shape":"LabelDetection"}
|
1816
|
-
},
|
1817
|
-
"Labels":{
|
1818
|
-
"type":"list",
|
1819
|
-
"member":{"shape":"Label"}
|
1820
|
-
},
|
1821
|
-
"Landmark":{
|
1822
|
-
"type":"structure",
|
1823
|
-
"members":{
|
1824
|
-
"Type":{"shape":"LandmarkType"},
|
1825
|
-
"X":{"shape":"Float"},
|
1826
|
-
"Y":{"shape":"Float"}
|
1827
|
-
}
|
1828
|
-
},
|
1829
|
-
"LandmarkType":{
|
1830
|
-
"type":"string",
|
1831
|
-
"enum":[
|
1832
|
-
"eyeLeft",
|
1833
|
-
"eyeRight",
|
1834
|
-
"nose",
|
1835
|
-
"mouthLeft",
|
1836
|
-
"mouthRight",
|
1837
|
-
"leftEyeBrowLeft",
|
1838
|
-
"leftEyeBrowRight",
|
1839
|
-
"leftEyeBrowUp",
|
1840
|
-
"rightEyeBrowLeft",
|
1841
|
-
"rightEyeBrowRight",
|
1842
|
-
"rightEyeBrowUp",
|
1843
|
-
"leftEyeLeft",
|
1844
|
-
"leftEyeRight",
|
1845
|
-
"leftEyeUp",
|
1846
|
-
"leftEyeDown",
|
1847
|
-
"rightEyeLeft",
|
1848
|
-
"rightEyeRight",
|
1849
|
-
"rightEyeUp",
|
1850
|
-
"rightEyeDown",
|
1851
|
-
"noseLeft",
|
1852
|
-
"noseRight",
|
1853
|
-
"mouthUp",
|
1854
|
-
"mouthDown",
|
1855
|
-
"leftPupil",
|
1856
|
-
"rightPupil",
|
1857
|
-
"upperJawlineLeft",
|
1858
|
-
"midJawlineLeft",
|
1859
|
-
"chinBottom",
|
1860
|
-
"midJawlineRight",
|
1861
|
-
"upperJawlineRight"
|
1862
|
-
]
|
1863
|
-
},
|
1864
|
-
"Landmarks":{
|
1865
|
-
"type":"list",
|
1866
|
-
"member":{"shape":"Landmark"}
|
1867
|
-
},
|
1868
|
-
"LimitExceededException":{
|
1869
|
-
"type":"structure",
|
1870
|
-
"members":{
|
1871
|
-
},
|
1872
|
-
"exception":true
|
1873
|
-
},
|
1874
|
-
"ListCollectionsRequest":{
|
1875
|
-
"type":"structure",
|
1876
|
-
"members":{
|
1877
|
-
"NextToken":{"shape":"PaginationToken"},
|
1878
|
-
"MaxResults":{"shape":"PageSize"}
|
1879
|
-
}
|
1880
|
-
},
|
1881
|
-
"ListCollectionsResponse":{
|
1882
|
-
"type":"structure",
|
1883
|
-
"members":{
|
1884
|
-
"CollectionIds":{"shape":"CollectionIdList"},
|
1885
|
-
"NextToken":{"shape":"PaginationToken"},
|
1886
|
-
"FaceModelVersions":{"shape":"FaceModelVersionList"}
|
1887
|
-
}
|
1888
|
-
},
|
1889
|
-
"ListFacesRequest":{
|
1890
|
-
"type":"structure",
|
1891
|
-
"required":["CollectionId"],
|
1892
|
-
"members":{
|
1893
|
-
"CollectionId":{"shape":"CollectionId"},
|
1894
|
-
"NextToken":{"shape":"PaginationToken"},
|
1895
|
-
"MaxResults":{"shape":"PageSize"}
|
1896
|
-
}
|
1897
|
-
},
|
1898
|
-
"ListFacesResponse":{
|
1899
|
-
"type":"structure",
|
1900
|
-
"members":{
|
1901
|
-
"Faces":{"shape":"FaceList"},
|
1902
|
-
"NextToken":{"shape":"String"},
|
1903
|
-
"FaceModelVersion":{"shape":"String"}
|
1904
|
-
}
|
1905
|
-
},
|
1906
|
-
"ListStreamProcessorsRequest":{
|
1907
|
-
"type":"structure",
|
1908
|
-
"members":{
|
1909
|
-
"NextToken":{"shape":"PaginationToken"},
|
1910
|
-
"MaxResults":{"shape":"MaxResults"}
|
1911
|
-
}
|
1912
|
-
},
|
1913
|
-
"ListStreamProcessorsResponse":{
|
1914
|
-
"type":"structure",
|
1915
|
-
"members":{
|
1916
|
-
"NextToken":{"shape":"PaginationToken"},
|
1917
|
-
"StreamProcessors":{"shape":"StreamProcessorList"}
|
1918
|
-
}
|
1919
|
-
},
|
1920
|
-
"MaxFaces":{
|
1921
|
-
"type":"integer",
|
1922
|
-
"max":4096,
|
1923
|
-
"min":1
|
1924
|
-
},
|
1925
|
-
"MaxFacesToIndex":{
|
1926
|
-
"type":"integer",
|
1927
|
-
"min":1
|
1928
|
-
},
|
1929
|
-
"MaxResults":{
|
1930
|
-
"type":"integer",
|
1931
|
-
"min":1
|
1932
|
-
},
|
1933
|
-
"ModerationLabel":{
|
1934
|
-
"type":"structure",
|
1935
|
-
"members":{
|
1936
|
-
"Confidence":{"shape":"Percent"},
|
1937
|
-
"Name":{"shape":"String"},
|
1938
|
-
"ParentName":{"shape":"String"}
|
1939
|
-
}
|
1940
|
-
},
|
1941
|
-
"ModerationLabels":{
|
1942
|
-
"type":"list",
|
1943
|
-
"member":{"shape":"ModerationLabel"}
|
1944
|
-
},
|
1945
|
-
"MouthOpen":{
|
1946
|
-
"type":"structure",
|
1947
|
-
"members":{
|
1948
|
-
"Value":{"shape":"Boolean"},
|
1949
|
-
"Confidence":{"shape":"Percent"}
|
1950
|
-
}
|
1951
|
-
},
|
1952
|
-
"Mustache":{
|
1953
|
-
"type":"structure",
|
1954
|
-
"members":{
|
1955
|
-
"Value":{"shape":"Boolean"},
|
1956
|
-
"Confidence":{"shape":"Percent"}
|
1957
|
-
}
|
1958
|
-
},
|
1959
|
-
"NotificationChannel":{
|
1960
|
-
"type":"structure",
|
1961
|
-
"required":[
|
1962
|
-
"SNSTopicArn",
|
1963
|
-
"RoleArn"
|
1964
|
-
],
|
1965
|
-
"members":{
|
1966
|
-
"SNSTopicArn":{"shape":"SNSTopicArn"},
|
1967
|
-
"RoleArn":{"shape":"RoleArn"}
|
1968
|
-
}
|
1969
|
-
},
|
1970
|
-
"OrientationCorrection":{
|
1971
|
-
"type":"string",
|
1972
|
-
"enum":[
|
1973
|
-
"ROTATE_0",
|
1974
|
-
"ROTATE_90",
|
1975
|
-
"ROTATE_180",
|
1976
|
-
"ROTATE_270"
|
1977
|
-
]
|
1978
|
-
},
|
1979
|
-
"OutputConfig":{
|
1980
|
-
"type":"structure",
|
1981
|
-
"members":{
|
1982
|
-
"S3Bucket":{"shape":"S3Bucket"},
|
1983
|
-
"S3KeyPrefix":{"shape":"S3KeyPrefix"}
|
1984
|
-
}
|
1985
|
-
},
|
1986
|
-
"PageSize":{
|
1987
|
-
"type":"integer",
|
1988
|
-
"max":4096,
|
1989
|
-
"min":0
|
1990
|
-
},
|
1991
|
-
"PaginationToken":{
|
1992
|
-
"type":"string",
|
1993
|
-
"max":255
|
1994
|
-
},
|
1995
|
-
"Parent":{
|
1996
|
-
"type":"structure",
|
1997
|
-
"members":{
|
1998
|
-
"Name":{"shape":"String"}
|
1999
|
-
}
|
2000
|
-
},
|
2001
|
-
"Parents":{
|
2002
|
-
"type":"list",
|
2003
|
-
"member":{"shape":"Parent"}
|
2004
|
-
},
|
2005
|
-
"Percent":{
|
2006
|
-
"type":"float",
|
2007
|
-
"max":100,
|
2008
|
-
"min":0
|
2009
|
-
},
|
2010
|
-
"PersonDetail":{
|
2011
|
-
"type":"structure",
|
2012
|
-
"members":{
|
2013
|
-
"Index":{"shape":"PersonIndex"},
|
2014
|
-
"BoundingBox":{"shape":"BoundingBox"},
|
2015
|
-
"Face":{"shape":"FaceDetail"}
|
2016
|
-
}
|
2017
|
-
},
|
2018
|
-
"PersonDetection":{
|
2019
|
-
"type":"structure",
|
2020
|
-
"members":{
|
2021
|
-
"Timestamp":{"shape":"Timestamp"},
|
2022
|
-
"Person":{"shape":"PersonDetail"}
|
2023
|
-
}
|
2024
|
-
},
|
2025
|
-
"PersonDetections":{
|
2026
|
-
"type":"list",
|
2027
|
-
"member":{"shape":"PersonDetection"}
|
2028
|
-
},
|
2029
|
-
"PersonIndex":{"type":"long"},
|
2030
|
-
"PersonMatch":{
|
2031
|
-
"type":"structure",
|
2032
|
-
"members":{
|
2033
|
-
"Timestamp":{"shape":"Timestamp"},
|
2034
|
-
"Person":{"shape":"PersonDetail"},
|
2035
|
-
"FaceMatches":{"shape":"FaceMatchList"}
|
2036
|
-
}
|
2037
|
-
},
|
2038
|
-
"PersonMatches":{
|
2039
|
-
"type":"list",
|
2040
|
-
"member":{"shape":"PersonMatch"}
|
2041
|
-
},
|
2042
|
-
"PersonTrackingSortBy":{
|
2043
|
-
"type":"string",
|
2044
|
-
"enum":[
|
2045
|
-
"INDEX",
|
2046
|
-
"TIMESTAMP"
|
2047
|
-
]
|
2048
|
-
},
|
2049
|
-
"Point":{
|
2050
|
-
"type":"structure",
|
2051
|
-
"members":{
|
2052
|
-
"X":{"shape":"Float"},
|
2053
|
-
"Y":{"shape":"Float"}
|
2054
|
-
}
|
2055
|
-
},
|
2056
|
-
"Polygon":{
|
2057
|
-
"type":"list",
|
2058
|
-
"member":{"shape":"Point"}
|
2059
|
-
},
|
2060
|
-
"Pose":{
|
2061
|
-
"type":"structure",
|
2062
|
-
"members":{
|
2063
|
-
"Roll":{"shape":"Degree"},
|
2064
|
-
"Yaw":{"shape":"Degree"},
|
2065
|
-
"Pitch":{"shape":"Degree"}
|
2066
|
-
}
|
2067
|
-
},
|
2068
|
-
"ProjectArn":{
|
2069
|
-
"type":"string",
|
2070
|
-
"max":2048,
|
2071
|
-
"min":20,
|
2072
|
-
"pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)"
|
2073
|
-
},
|
2074
|
-
"ProjectDescription":{
|
2075
|
-
"type":"structure",
|
2076
|
-
"members":{
|
2077
|
-
"ProjectArn":{"shape":"ProjectArn"},
|
2078
|
-
"CreationTimestamp":{"shape":"DateTime"},
|
2079
|
-
"Status":{"shape":"ProjectStatus"}
|
2080
|
-
}
|
2081
|
-
},
|
2082
|
-
"ProjectDescriptions":{
|
2083
|
-
"type":"list",
|
2084
|
-
"member":{"shape":"ProjectDescription"}
|
2085
|
-
},
|
2086
|
-
"ProjectName":{
|
2087
|
-
"type":"string",
|
2088
|
-
"max":255,
|
2089
|
-
"min":1,
|
2090
|
-
"pattern":"[a-zA-Z0-9_.\\-]+"
|
2091
|
-
},
|
2092
|
-
"ProjectStatus":{
|
2093
|
-
"type":"string",
|
2094
|
-
"enum":[
|
2095
|
-
"CREATING",
|
2096
|
-
"CREATED",
|
2097
|
-
"DELETING"
|
2098
|
-
]
|
2099
|
-
},
|
2100
|
-
"ProjectVersionArn":{
|
2101
|
-
"type":"string",
|
2102
|
-
"max":2048,
|
2103
|
-
"min":20,
|
2104
|
-
"pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/version\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)"
|
2105
|
-
},
|
2106
|
-
"ProjectVersionDescription":{
|
2107
|
-
"type":"structure",
|
2108
|
-
"members":{
|
2109
|
-
"ProjectVersionArn":{"shape":"ProjectVersionArn"},
|
2110
|
-
"CreationTimestamp":{"shape":"DateTime"},
|
2111
|
-
"MinInferenceUnits":{"shape":"InferenceUnits"},
|
2112
|
-
"Status":{"shape":"ProjectVersionStatus"},
|
2113
|
-
"StatusMessage":{"shape":"StatusMessage"},
|
2114
|
-
"BillableTrainingTimeInSeconds":{"shape":"ULong"},
|
2115
|
-
"TrainingEndTimestamp":{"shape":"DateTime"},
|
2116
|
-
"OutputConfig":{"shape":"OutputConfig"},
|
2117
|
-
"TrainingDataResult":{"shape":"TrainingDataResult"},
|
2118
|
-
"TestingDataResult":{"shape":"TestingDataResult"},
|
2119
|
-
"EvaluationResult":{"shape":"EvaluationResult"}
|
2120
|
-
}
|
2121
|
-
},
|
2122
|
-
"ProjectVersionDescriptions":{
|
2123
|
-
"type":"list",
|
2124
|
-
"member":{"shape":"ProjectVersionDescription"}
|
2125
|
-
},
|
2126
|
-
"ProjectVersionStatus":{
|
2127
|
-
"type":"string",
|
2128
|
-
"enum":[
|
2129
|
-
"TRAINING_IN_PROGRESS",
|
2130
|
-
"TRAINING_COMPLETED",
|
2131
|
-
"TRAINING_FAILED",
|
2132
|
-
"STARTING",
|
2133
|
-
"RUNNING",
|
2134
|
-
"FAILED",
|
2135
|
-
"STOPPING",
|
2136
|
-
"STOPPED",
|
2137
|
-
"DELETING"
|
2138
|
-
]
|
2139
|
-
},
|
2140
|
-
"ProjectVersionsPageSize":{
|
2141
|
-
"type":"integer",
|
2142
|
-
"max":100,
|
2143
|
-
"min":1
|
2144
|
-
},
|
2145
|
-
"ProjectsPageSize":{
|
2146
|
-
"type":"integer",
|
2147
|
-
"max":100,
|
2148
|
-
"min":1
|
2149
|
-
},
|
2150
|
-
"ProvisionedThroughputExceededException":{
|
2151
|
-
"type":"structure",
|
2152
|
-
"members":{
|
2153
|
-
},
|
2154
|
-
"exception":true
|
2155
|
-
},
|
2156
|
-
"QualityFilter":{
|
2157
|
-
"type":"string",
|
2158
|
-
"enum":[
|
2159
|
-
"NONE",
|
2160
|
-
"AUTO",
|
2161
|
-
"LOW",
|
2162
|
-
"MEDIUM",
|
2163
|
-
"HIGH"
|
2164
|
-
]
|
2165
|
-
},
|
2166
|
-
"Reason":{
|
2167
|
-
"type":"string",
|
2168
|
-
"enum":[
|
2169
|
-
"EXCEEDS_MAX_FACES",
|
2170
|
-
"EXTREME_POSE",
|
2171
|
-
"LOW_BRIGHTNESS",
|
2172
|
-
"LOW_SHARPNESS",
|
2173
|
-
"LOW_CONFIDENCE",
|
2174
|
-
"SMALL_BOUNDING_BOX",
|
2175
|
-
"LOW_FACE_QUALITY"
|
2176
|
-
]
|
2177
|
-
},
|
2178
|
-
"Reasons":{
|
2179
|
-
"type":"list",
|
2180
|
-
"member":{"shape":"Reason"}
|
2181
|
-
},
|
2182
|
-
"RecognizeCelebritiesRequest":{
|
2183
|
-
"type":"structure",
|
2184
|
-
"required":["Image"],
|
2185
|
-
"members":{
|
2186
|
-
"Image":{"shape":"Image"}
|
2187
|
-
}
|
2188
|
-
},
|
2189
|
-
"RecognizeCelebritiesResponse":{
|
2190
|
-
"type":"structure",
|
2191
|
-
"members":{
|
2192
|
-
"CelebrityFaces":{"shape":"CelebrityList"},
|
2193
|
-
"UnrecognizedFaces":{"shape":"ComparedFaceList"},
|
2194
|
-
"OrientationCorrection":{"shape":"OrientationCorrection"}
|
2195
|
-
}
|
2196
|
-
},
|
2197
|
-
"RekognitionUniqueId":{
|
2198
|
-
"type":"string",
|
2199
|
-
"pattern":"[0-9A-Za-z]*"
|
2200
|
-
},
|
2201
|
-
"ResourceAlreadyExistsException":{
|
2202
|
-
"type":"structure",
|
2203
|
-
"members":{
|
2204
|
-
},
|
2205
|
-
"exception":true
|
2206
|
-
},
|
2207
|
-
"ResourceInUseException":{
|
2208
|
-
"type":"structure",
|
2209
|
-
"members":{
|
2210
|
-
},
|
2211
|
-
"exception":true
|
2212
|
-
},
|
2213
|
-
"ResourceNotFoundException":{
|
2214
|
-
"type":"structure",
|
2215
|
-
"members":{
|
2216
|
-
},
|
2217
|
-
"exception":true
|
2218
|
-
},
|
2219
|
-
"ResourceNotReadyException":{
|
2220
|
-
"type":"structure",
|
2221
|
-
"members":{
|
2222
|
-
},
|
2223
|
-
"exception":true
|
2224
|
-
},
|
2225
|
-
"RoleArn":{
|
2226
|
-
"type":"string",
|
2227
|
-
"pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
|
2228
|
-
},
|
2229
|
-
"S3Bucket":{
|
2230
|
-
"type":"string",
|
2231
|
-
"max":255,
|
2232
|
-
"min":3,
|
2233
|
-
"pattern":"[0-9A-Za-z\\.\\-_]*"
|
2234
|
-
},
|
2235
|
-
"S3KeyPrefix":{
|
2236
|
-
"type":"string",
|
2237
|
-
"max":1024
|
2238
|
-
},
|
2239
|
-
"S3Object":{
|
2240
|
-
"type":"structure",
|
2241
|
-
"members":{
|
2242
|
-
"Bucket":{"shape":"S3Bucket"},
|
2243
|
-
"Name":{"shape":"S3ObjectName"},
|
2244
|
-
"Version":{"shape":"S3ObjectVersion"}
|
2245
|
-
}
|
2246
|
-
},
|
2247
|
-
"S3ObjectName":{
|
2248
|
-
"type":"string",
|
2249
|
-
"max":1024,
|
2250
|
-
"min":1
|
2251
|
-
},
|
2252
|
-
"S3ObjectVersion":{
|
2253
|
-
"type":"string",
|
2254
|
-
"max":1024,
|
2255
|
-
"min":1
|
2256
|
-
},
|
2257
|
-
"SNSTopicArn":{
|
2258
|
-
"type":"string",
|
2259
|
-
"pattern":"(^arn:aws:sns:.*:\\w{12}:.+$)"
|
2260
|
-
},
|
2261
|
-
"SearchFacesByImageRequest":{
|
2262
|
-
"type":"structure",
|
2263
|
-
"required":[
|
2264
|
-
"CollectionId",
|
2265
|
-
"Image"
|
2266
|
-
],
|
2267
|
-
"members":{
|
2268
|
-
"CollectionId":{"shape":"CollectionId"},
|
2269
|
-
"Image":{"shape":"Image"},
|
2270
|
-
"MaxFaces":{"shape":"MaxFaces"},
|
2271
|
-
"FaceMatchThreshold":{"shape":"Percent"},
|
2272
|
-
"QualityFilter":{"shape":"QualityFilter"}
|
2273
|
-
}
|
2274
|
-
},
|
2275
|
-
"SearchFacesByImageResponse":{
|
2276
|
-
"type":"structure",
|
2277
|
-
"members":{
|
2278
|
-
"SearchedFaceBoundingBox":{"shape":"BoundingBox"},
|
2279
|
-
"SearchedFaceConfidence":{"shape":"Percent"},
|
2280
|
-
"FaceMatches":{"shape":"FaceMatchList"},
|
2281
|
-
"FaceModelVersion":{"shape":"String"}
|
2282
|
-
}
|
2283
|
-
},
|
2284
|
-
"SearchFacesRequest":{
|
2285
|
-
"type":"structure",
|
2286
|
-
"required":[
|
2287
|
-
"CollectionId",
|
2288
|
-
"FaceId"
|
2289
|
-
],
|
2290
|
-
"members":{
|
2291
|
-
"CollectionId":{"shape":"CollectionId"},
|
2292
|
-
"FaceId":{"shape":"FaceId"},
|
2293
|
-
"MaxFaces":{"shape":"MaxFaces"},
|
2294
|
-
"FaceMatchThreshold":{"shape":"Percent"}
|
2295
|
-
}
|
2296
|
-
},
|
2297
|
-
"SearchFacesResponse":{
|
2298
|
-
"type":"structure",
|
2299
|
-
"members":{
|
2300
|
-
"SearchedFaceId":{"shape":"FaceId"},
|
2301
|
-
"FaceMatches":{"shape":"FaceMatchList"},
|
2302
|
-
"FaceModelVersion":{"shape":"String"}
|
2303
|
-
}
|
2304
|
-
},
|
2305
|
-
"Smile":{
|
2306
|
-
"type":"structure",
|
2307
|
-
"members":{
|
2308
|
-
"Value":{"shape":"Boolean"},
|
2309
|
-
"Confidence":{"shape":"Percent"}
|
2310
|
-
}
|
2311
|
-
},
|
2312
|
-
"StartCelebrityRecognitionRequest":{
|
2313
|
-
"type":"structure",
|
2314
|
-
"required":["Video"],
|
2315
|
-
"members":{
|
2316
|
-
"Video":{"shape":"Video"},
|
2317
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2318
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2319
|
-
"JobTag":{"shape":"JobTag"}
|
2320
|
-
}
|
2321
|
-
},
|
2322
|
-
"StartCelebrityRecognitionResponse":{
|
2323
|
-
"type":"structure",
|
2324
|
-
"members":{
|
2325
|
-
"JobId":{"shape":"JobId"}
|
2326
|
-
}
|
2327
|
-
},
|
2328
|
-
"StartContentModerationRequest":{
|
2329
|
-
"type":"structure",
|
2330
|
-
"required":["Video"],
|
2331
|
-
"members":{
|
2332
|
-
"Video":{"shape":"Video"},
|
2333
|
-
"MinConfidence":{"shape":"Percent"},
|
2334
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2335
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2336
|
-
"JobTag":{"shape":"JobTag"}
|
2337
|
-
}
|
2338
|
-
},
|
2339
|
-
"StartContentModerationResponse":{
|
2340
|
-
"type":"structure",
|
2341
|
-
"members":{
|
2342
|
-
"JobId":{"shape":"JobId"}
|
2343
|
-
}
|
2344
|
-
},
|
2345
|
-
"StartFaceDetectionRequest":{
|
2346
|
-
"type":"structure",
|
2347
|
-
"required":["Video"],
|
2348
|
-
"members":{
|
2349
|
-
"Video":{"shape":"Video"},
|
2350
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2351
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2352
|
-
"FaceAttributes":{"shape":"FaceAttributes"},
|
2353
|
-
"JobTag":{"shape":"JobTag"}
|
2354
|
-
}
|
2355
|
-
},
|
2356
|
-
"StartFaceDetectionResponse":{
|
2357
|
-
"type":"structure",
|
2358
|
-
"members":{
|
2359
|
-
"JobId":{"shape":"JobId"}
|
2360
|
-
}
|
2361
|
-
},
|
2362
|
-
"StartFaceSearchRequest":{
|
2363
|
-
"type":"structure",
|
2364
|
-
"required":[
|
2365
|
-
"Video",
|
2366
|
-
"CollectionId"
|
2367
|
-
],
|
2368
|
-
"members":{
|
2369
|
-
"Video":{"shape":"Video"},
|
2370
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2371
|
-
"FaceMatchThreshold":{"shape":"Percent"},
|
2372
|
-
"CollectionId":{"shape":"CollectionId"},
|
2373
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2374
|
-
"JobTag":{"shape":"JobTag"}
|
2375
|
-
}
|
2376
|
-
},
|
2377
|
-
"StartFaceSearchResponse":{
|
2378
|
-
"type":"structure",
|
2379
|
-
"members":{
|
2380
|
-
"JobId":{"shape":"JobId"}
|
2381
|
-
}
|
2382
|
-
},
|
2383
|
-
"StartLabelDetectionRequest":{
|
2384
|
-
"type":"structure",
|
2385
|
-
"required":["Video"],
|
2386
|
-
"members":{
|
2387
|
-
"Video":{"shape":"Video"},
|
2388
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2389
|
-
"MinConfidence":{"shape":"Percent"},
|
2390
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2391
|
-
"JobTag":{"shape":"JobTag"}
|
2392
|
-
}
|
2393
|
-
},
|
2394
|
-
"StartLabelDetectionResponse":{
|
2395
|
-
"type":"structure",
|
2396
|
-
"members":{
|
2397
|
-
"JobId":{"shape":"JobId"}
|
2398
|
-
}
|
2399
|
-
},
|
2400
|
-
"StartPersonTrackingRequest":{
|
2401
|
-
"type":"structure",
|
2402
|
-
"required":["Video"],
|
2403
|
-
"members":{
|
2404
|
-
"Video":{"shape":"Video"},
|
2405
|
-
"ClientRequestToken":{"shape":"ClientRequestToken"},
|
2406
|
-
"NotificationChannel":{"shape":"NotificationChannel"},
|
2407
|
-
"JobTag":{"shape":"JobTag"}
|
2408
|
-
}
|
2409
|
-
},
|
2410
|
-
"StartPersonTrackingResponse":{
|
2411
|
-
"type":"structure",
|
2412
|
-
"members":{
|
2413
|
-
"JobId":{"shape":"JobId"}
|
2414
|
-
}
|
2415
|
-
},
|
2416
|
-
"StartProjectVersionRequest":{
|
2417
|
-
"type":"structure",
|
2418
|
-
"required":[
|
2419
|
-
"ProjectVersionArn",
|
2420
|
-
"MinInferenceUnits"
|
2421
|
-
],
|
2422
|
-
"members":{
|
2423
|
-
"ProjectVersionArn":{"shape":"ProjectVersionArn"},
|
2424
|
-
"MinInferenceUnits":{"shape":"InferenceUnits"}
|
2425
|
-
}
|
2426
|
-
},
|
2427
|
-
"StartProjectVersionResponse":{
|
2428
|
-
"type":"structure",
|
2429
|
-
"members":{
|
2430
|
-
"Status":{"shape":"ProjectVersionStatus"}
|
2431
|
-
}
|
2432
|
-
},
|
2433
|
-
"StartStreamProcessorRequest":{
|
2434
|
-
"type":"structure",
|
2435
|
-
"required":["Name"],
|
2436
|
-
"members":{
|
2437
|
-
"Name":{"shape":"StreamProcessorName"}
|
2438
|
-
}
|
2439
|
-
},
|
2440
|
-
"StartStreamProcessorResponse":{
|
2441
|
-
"type":"structure",
|
2442
|
-
"members":{
|
2443
|
-
}
|
2444
|
-
},
|
2445
|
-
"StatusMessage":{"type":"string"},
|
2446
|
-
"StopProjectVersionRequest":{
|
2447
|
-
"type":"structure",
|
2448
|
-
"required":["ProjectVersionArn"],
|
2449
|
-
"members":{
|
2450
|
-
"ProjectVersionArn":{"shape":"ProjectVersionArn"}
|
2451
|
-
}
|
2452
|
-
},
|
2453
|
-
"StopProjectVersionResponse":{
|
2454
|
-
"type":"structure",
|
2455
|
-
"members":{
|
2456
|
-
"Status":{"shape":"ProjectVersionStatus"}
|
2457
|
-
}
|
2458
|
-
},
|
2459
|
-
"StopStreamProcessorRequest":{
|
2460
|
-
"type":"structure",
|
2461
|
-
"required":["Name"],
|
2462
|
-
"members":{
|
2463
|
-
"Name":{"shape":"StreamProcessorName"}
|
2464
|
-
}
|
2465
|
-
},
|
2466
|
-
"StopStreamProcessorResponse":{
|
2467
|
-
"type":"structure",
|
2468
|
-
"members":{
|
2469
|
-
}
|
2470
|
-
},
|
2471
|
-
"StreamProcessor":{
|
2472
|
-
"type":"structure",
|
2473
|
-
"members":{
|
2474
|
-
"Name":{"shape":"StreamProcessorName"},
|
2475
|
-
"Status":{"shape":"StreamProcessorStatus"}
|
2476
|
-
}
|
2477
|
-
},
|
2478
|
-
"StreamProcessorArn":{
|
2479
|
-
"type":"string",
|
2480
|
-
"pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:streamprocessor\\/.+$)"
|
2481
|
-
},
|
2482
|
-
"StreamProcessorInput":{
|
2483
|
-
"type":"structure",
|
2484
|
-
"members":{
|
2485
|
-
"KinesisVideoStream":{"shape":"KinesisVideoStream"}
|
2486
|
-
}
|
2487
|
-
},
|
2488
|
-
"StreamProcessorList":{
|
2489
|
-
"type":"list",
|
2490
|
-
"member":{"shape":"StreamProcessor"}
|
2491
|
-
},
|
2492
|
-
"StreamProcessorName":{
|
2493
|
-
"type":"string",
|
2494
|
-
"max":128,
|
2495
|
-
"min":1,
|
2496
|
-
"pattern":"[a-zA-Z0-9_.\\-]+"
|
2497
|
-
},
|
2498
|
-
"StreamProcessorOutput":{
|
2499
|
-
"type":"structure",
|
2500
|
-
"members":{
|
2501
|
-
"KinesisDataStream":{"shape":"KinesisDataStream"}
|
2502
|
-
}
|
2503
|
-
},
|
2504
|
-
"StreamProcessorSettings":{
|
2505
|
-
"type":"structure",
|
2506
|
-
"members":{
|
2507
|
-
"FaceSearch":{"shape":"FaceSearchSettings"}
|
2508
|
-
}
|
2509
|
-
},
|
2510
|
-
"StreamProcessorStatus":{
|
2511
|
-
"type":"string",
|
2512
|
-
"enum":[
|
2513
|
-
"STOPPED",
|
2514
|
-
"STARTING",
|
2515
|
-
"RUNNING",
|
2516
|
-
"FAILED",
|
2517
|
-
"STOPPING"
|
2518
|
-
]
|
2519
|
-
},
|
2520
|
-
"String":{"type":"string"},
|
2521
|
-
"Summary":{
|
2522
|
-
"type":"structure",
|
2523
|
-
"members":{
|
2524
|
-
"S3Object":{"shape":"S3Object"}
|
2525
|
-
}
|
2526
|
-
},
|
2527
|
-
"Sunglasses":{
|
2528
|
-
"type":"structure",
|
2529
|
-
"members":{
|
2530
|
-
"Value":{"shape":"Boolean"},
|
2531
|
-
"Confidence":{"shape":"Percent"}
|
2532
|
-
}
|
2533
|
-
},
|
2534
|
-
"TestingData":{
|
2535
|
-
"type":"structure",
|
2536
|
-
"members":{
|
2537
|
-
"Assets":{"shape":"Assets"},
|
2538
|
-
"AutoCreate":{"shape":"Boolean"}
|
2539
|
-
}
|
2540
|
-
},
|
2541
|
-
"TestingDataResult":{
|
2542
|
-
"type":"structure",
|
2543
|
-
"members":{
|
2544
|
-
"Input":{"shape":"TestingData"},
|
2545
|
-
"Output":{"shape":"TestingData"}
|
2546
|
-
}
|
2547
|
-
},
|
2548
|
-
"TextDetection":{
|
2549
|
-
"type":"structure",
|
2550
|
-
"members":{
|
2551
|
-
"DetectedText":{"shape":"String"},
|
2552
|
-
"Type":{"shape":"TextTypes"},
|
2553
|
-
"Id":{"shape":"UInteger"},
|
2554
|
-
"ParentId":{"shape":"UInteger"},
|
2555
|
-
"Confidence":{"shape":"Percent"},
|
2556
|
-
"Geometry":{"shape":"Geometry"}
|
2557
|
-
}
|
2558
|
-
},
|
2559
|
-
"TextDetectionList":{
|
2560
|
-
"type":"list",
|
2561
|
-
"member":{"shape":"TextDetection"}
|
2562
|
-
},
|
2563
|
-
"TextTypes":{
|
2564
|
-
"type":"string",
|
2565
|
-
"enum":[
|
2566
|
-
"LINE",
|
2567
|
-
"WORD"
|
2568
|
-
]
|
2569
|
-
},
|
2570
|
-
"ThrottlingException":{
|
2571
|
-
"type":"structure",
|
2572
|
-
"members":{
|
2573
|
-
},
|
2574
|
-
"exception":true,
|
2575
|
-
"fault":true
|
2576
|
-
},
|
2577
|
-
"Timestamp":{"type":"long"},
|
2578
|
-
"TrainingData":{
|
2579
|
-
"type":"structure",
|
2580
|
-
"members":{
|
2581
|
-
"Assets":{"shape":"Assets"}
|
2582
|
-
}
|
2583
|
-
},
|
2584
|
-
"TrainingDataResult":{
|
2585
|
-
"type":"structure",
|
2586
|
-
"members":{
|
2587
|
-
"Input":{"shape":"TrainingData"},
|
2588
|
-
"Output":{"shape":"TrainingData"}
|
2589
|
-
}
|
2590
|
-
},
|
2591
|
-
"UInteger":{
|
2592
|
-
"type":"integer",
|
2593
|
-
"min":0
|
2594
|
-
},
|
2595
|
-
"ULong":{
|
2596
|
-
"type":"long",
|
2597
|
-
"min":0
|
2598
|
-
},
|
2599
|
-
"UnindexedFace":{
|
2600
|
-
"type":"structure",
|
2601
|
-
"members":{
|
2602
|
-
"Reasons":{"shape":"Reasons"},
|
2603
|
-
"FaceDetail":{"shape":"FaceDetail"}
|
2604
|
-
}
|
2605
|
-
},
|
2606
|
-
"UnindexedFaces":{
|
2607
|
-
"type":"list",
|
2608
|
-
"member":{"shape":"UnindexedFace"}
|
2609
|
-
},
|
2610
|
-
"Url":{"type":"string"},
|
2611
|
-
"Urls":{
|
2612
|
-
"type":"list",
|
2613
|
-
"member":{"shape":"Url"}
|
2614
|
-
},
|
2615
|
-
"VersionName":{
|
2616
|
-
"type":"string",
|
2617
|
-
"max":255,
|
2618
|
-
"min":1,
|
2619
|
-
"pattern":"[a-zA-Z0-9_.\\-]+"
|
2620
|
-
},
|
2621
|
-
"VersionNames":{
|
2622
|
-
"type":"list",
|
2623
|
-
"member":{"shape":"VersionName"},
|
2624
|
-
"max":10,
|
2625
|
-
"min":1
|
2626
|
-
},
|
2627
|
-
"Video":{
|
2628
|
-
"type":"structure",
|
2629
|
-
"members":{
|
2630
|
-
"S3Object":{"shape":"S3Object"}
|
2631
|
-
}
|
2632
|
-
},
|
2633
|
-
"VideoJobStatus":{
|
2634
|
-
"type":"string",
|
2635
|
-
"enum":[
|
2636
|
-
"IN_PROGRESS",
|
2637
|
-
"SUCCEEDED",
|
2638
|
-
"FAILED"
|
2639
|
-
]
|
2640
|
-
},
|
2641
|
-
"VideoMetadata":{
|
2642
|
-
"type":"structure",
|
2643
|
-
"members":{
|
2644
|
-
"Codec":{"shape":"String"},
|
2645
|
-
"DurationMillis":{"shape":"ULong"},
|
2646
|
-
"Format":{"shape":"String"},
|
2647
|
-
"FrameRate":{"shape":"Float"},
|
2648
|
-
"FrameHeight":{"shape":"ULong"},
|
2649
|
-
"FrameWidth":{"shape":"ULong"}
|
2650
|
-
}
|
2651
|
-
},
|
2652
|
-
"VideoTooLargeException":{
|
2653
|
-
"type":"structure",
|
2654
|
-
"members":{
|
2655
|
-
},
|
2656
|
-
"exception":true
|
2657
|
-
}
|
2658
|
-
}
|
2659
|
-
}
|