aws-sdk-core 2.11.354 → 3.66.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -552
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +164 -11
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1042
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3281
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2340
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3496
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1305
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -25410
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2899
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -750
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -16
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3152
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1373
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -154
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3470
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2353
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -40
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1881
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -9023
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2514
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6577
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2138
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2105
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8914
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1409
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -505
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -857
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5163
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -769
@@ -1,16 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListPlacements": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"limit_key": "maxResults",
|
6
|
-
"output_token": "nextToken",
|
7
|
-
"result_key": "placements"
|
8
|
-
},
|
9
|
-
"ListProjects": {
|
10
|
-
"input_token": "nextToken",
|
11
|
-
"limit_key": "maxResults",
|
12
|
-
"output_token": "nextToken",
|
13
|
-
"result_key": "projects"
|
14
|
-
}
|
15
|
-
}
|
16
|
-
}
|
@@ -1,2222 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2017-11-27",
|
5
|
-
"endpointPrefix":"iotanalytics",
|
6
|
-
"protocol":"rest-json",
|
7
|
-
"serviceFullName":"AWS IoT Analytics",
|
8
|
-
"serviceId":"IoTAnalytics",
|
9
|
-
"signatureVersion":"v4",
|
10
|
-
"signingName":"iotanalytics",
|
11
|
-
"uid":"iotanalytics-2017-11-27"
|
12
|
-
},
|
13
|
-
"operations":{
|
14
|
-
"BatchPutMessage":{
|
15
|
-
"name":"BatchPutMessage",
|
16
|
-
"http":{
|
17
|
-
"method":"POST",
|
18
|
-
"requestUri":"/messages/batch",
|
19
|
-
"responseCode":200
|
20
|
-
},
|
21
|
-
"input":{"shape":"BatchPutMessageRequest"},
|
22
|
-
"output":{"shape":"BatchPutMessageResponse"},
|
23
|
-
"errors":[
|
24
|
-
{"shape":"ResourceNotFoundException"},
|
25
|
-
{"shape":"InvalidRequestException"},
|
26
|
-
{"shape":"InternalFailureException"},
|
27
|
-
{"shape":"ServiceUnavailableException"},
|
28
|
-
{"shape":"ThrottlingException"}
|
29
|
-
]
|
30
|
-
},
|
31
|
-
"CancelPipelineReprocessing":{
|
32
|
-
"name":"CancelPipelineReprocessing",
|
33
|
-
"http":{
|
34
|
-
"method":"DELETE",
|
35
|
-
"requestUri":"/pipelines/{pipelineName}/reprocessing/{reprocessingId}"
|
36
|
-
},
|
37
|
-
"input":{"shape":"CancelPipelineReprocessingRequest"},
|
38
|
-
"output":{"shape":"CancelPipelineReprocessingResponse"},
|
39
|
-
"errors":[
|
40
|
-
{"shape":"ResourceNotFoundException"},
|
41
|
-
{"shape":"InvalidRequestException"},
|
42
|
-
{"shape":"InternalFailureException"},
|
43
|
-
{"shape":"ServiceUnavailableException"},
|
44
|
-
{"shape":"ThrottlingException"}
|
45
|
-
]
|
46
|
-
},
|
47
|
-
"CreateChannel":{
|
48
|
-
"name":"CreateChannel",
|
49
|
-
"http":{
|
50
|
-
"method":"POST",
|
51
|
-
"requestUri":"/channels",
|
52
|
-
"responseCode":201
|
53
|
-
},
|
54
|
-
"input":{"shape":"CreateChannelRequest"},
|
55
|
-
"output":{"shape":"CreateChannelResponse"},
|
56
|
-
"errors":[
|
57
|
-
{"shape":"InvalidRequestException"},
|
58
|
-
{"shape":"ResourceAlreadyExistsException"},
|
59
|
-
{"shape":"InternalFailureException"},
|
60
|
-
{"shape":"ServiceUnavailableException"},
|
61
|
-
{"shape":"ThrottlingException"},
|
62
|
-
{"shape":"LimitExceededException"}
|
63
|
-
]
|
64
|
-
},
|
65
|
-
"CreateDataset":{
|
66
|
-
"name":"CreateDataset",
|
67
|
-
"http":{
|
68
|
-
"method":"POST",
|
69
|
-
"requestUri":"/datasets",
|
70
|
-
"responseCode":201
|
71
|
-
},
|
72
|
-
"input":{"shape":"CreateDatasetRequest"},
|
73
|
-
"output":{"shape":"CreateDatasetResponse"},
|
74
|
-
"errors":[
|
75
|
-
{"shape":"InvalidRequestException"},
|
76
|
-
{"shape":"ResourceAlreadyExistsException"},
|
77
|
-
{"shape":"InternalFailureException"},
|
78
|
-
{"shape":"ServiceUnavailableException"},
|
79
|
-
{"shape":"ThrottlingException"},
|
80
|
-
{"shape":"LimitExceededException"}
|
81
|
-
]
|
82
|
-
},
|
83
|
-
"CreateDatasetContent":{
|
84
|
-
"name":"CreateDatasetContent",
|
85
|
-
"http":{
|
86
|
-
"method":"POST",
|
87
|
-
"requestUri":"/datasets/{datasetName}/content"
|
88
|
-
},
|
89
|
-
"input":{"shape":"CreateDatasetContentRequest"},
|
90
|
-
"output":{"shape":"CreateDatasetContentResponse"},
|
91
|
-
"errors":[
|
92
|
-
{"shape":"InvalidRequestException"},
|
93
|
-
{"shape":"ResourceNotFoundException"},
|
94
|
-
{"shape":"InternalFailureException"},
|
95
|
-
{"shape":"ServiceUnavailableException"},
|
96
|
-
{"shape":"ThrottlingException"}
|
97
|
-
]
|
98
|
-
},
|
99
|
-
"CreateDatastore":{
|
100
|
-
"name":"CreateDatastore",
|
101
|
-
"http":{
|
102
|
-
"method":"POST",
|
103
|
-
"requestUri":"/datastores",
|
104
|
-
"responseCode":201
|
105
|
-
},
|
106
|
-
"input":{"shape":"CreateDatastoreRequest"},
|
107
|
-
"output":{"shape":"CreateDatastoreResponse"},
|
108
|
-
"errors":[
|
109
|
-
{"shape":"InvalidRequestException"},
|
110
|
-
{"shape":"ResourceAlreadyExistsException"},
|
111
|
-
{"shape":"InternalFailureException"},
|
112
|
-
{"shape":"ServiceUnavailableException"},
|
113
|
-
{"shape":"ThrottlingException"},
|
114
|
-
{"shape":"LimitExceededException"}
|
115
|
-
]
|
116
|
-
},
|
117
|
-
"CreatePipeline":{
|
118
|
-
"name":"CreatePipeline",
|
119
|
-
"http":{
|
120
|
-
"method":"POST",
|
121
|
-
"requestUri":"/pipelines",
|
122
|
-
"responseCode":201
|
123
|
-
},
|
124
|
-
"input":{"shape":"CreatePipelineRequest"},
|
125
|
-
"output":{"shape":"CreatePipelineResponse"},
|
126
|
-
"errors":[
|
127
|
-
{"shape":"InvalidRequestException"},
|
128
|
-
{"shape":"ResourceAlreadyExistsException"},
|
129
|
-
{"shape":"InternalFailureException"},
|
130
|
-
{"shape":"ServiceUnavailableException"},
|
131
|
-
{"shape":"ThrottlingException"},
|
132
|
-
{"shape":"LimitExceededException"}
|
133
|
-
]
|
134
|
-
},
|
135
|
-
"DeleteChannel":{
|
136
|
-
"name":"DeleteChannel",
|
137
|
-
"http":{
|
138
|
-
"method":"DELETE",
|
139
|
-
"requestUri":"/channels/{channelName}",
|
140
|
-
"responseCode":204
|
141
|
-
},
|
142
|
-
"input":{"shape":"DeleteChannelRequest"},
|
143
|
-
"errors":[
|
144
|
-
{"shape":"InvalidRequestException"},
|
145
|
-
{"shape":"ResourceNotFoundException"},
|
146
|
-
{"shape":"InternalFailureException"},
|
147
|
-
{"shape":"ServiceUnavailableException"},
|
148
|
-
{"shape":"ThrottlingException"}
|
149
|
-
]
|
150
|
-
},
|
151
|
-
"DeleteDataset":{
|
152
|
-
"name":"DeleteDataset",
|
153
|
-
"http":{
|
154
|
-
"method":"DELETE",
|
155
|
-
"requestUri":"/datasets/{datasetName}",
|
156
|
-
"responseCode":204
|
157
|
-
},
|
158
|
-
"input":{"shape":"DeleteDatasetRequest"},
|
159
|
-
"errors":[
|
160
|
-
{"shape":"InvalidRequestException"},
|
161
|
-
{"shape":"ResourceNotFoundException"},
|
162
|
-
{"shape":"InternalFailureException"},
|
163
|
-
{"shape":"ServiceUnavailableException"},
|
164
|
-
{"shape":"ThrottlingException"}
|
165
|
-
]
|
166
|
-
},
|
167
|
-
"DeleteDatasetContent":{
|
168
|
-
"name":"DeleteDatasetContent",
|
169
|
-
"http":{
|
170
|
-
"method":"DELETE",
|
171
|
-
"requestUri":"/datasets/{datasetName}/content",
|
172
|
-
"responseCode":204
|
173
|
-
},
|
174
|
-
"input":{"shape":"DeleteDatasetContentRequest"},
|
175
|
-
"errors":[
|
176
|
-
{"shape":"InvalidRequestException"},
|
177
|
-
{"shape":"ResourceNotFoundException"},
|
178
|
-
{"shape":"InternalFailureException"},
|
179
|
-
{"shape":"ServiceUnavailableException"},
|
180
|
-
{"shape":"ThrottlingException"}
|
181
|
-
]
|
182
|
-
},
|
183
|
-
"DeleteDatastore":{
|
184
|
-
"name":"DeleteDatastore",
|
185
|
-
"http":{
|
186
|
-
"method":"DELETE",
|
187
|
-
"requestUri":"/datastores/{datastoreName}",
|
188
|
-
"responseCode":204
|
189
|
-
},
|
190
|
-
"input":{"shape":"DeleteDatastoreRequest"},
|
191
|
-
"errors":[
|
192
|
-
{"shape":"InvalidRequestException"},
|
193
|
-
{"shape":"ResourceNotFoundException"},
|
194
|
-
{"shape":"InternalFailureException"},
|
195
|
-
{"shape":"ServiceUnavailableException"},
|
196
|
-
{"shape":"ThrottlingException"}
|
197
|
-
]
|
198
|
-
},
|
199
|
-
"DeletePipeline":{
|
200
|
-
"name":"DeletePipeline",
|
201
|
-
"http":{
|
202
|
-
"method":"DELETE",
|
203
|
-
"requestUri":"/pipelines/{pipelineName}",
|
204
|
-
"responseCode":204
|
205
|
-
},
|
206
|
-
"input":{"shape":"DeletePipelineRequest"},
|
207
|
-
"errors":[
|
208
|
-
{"shape":"InvalidRequestException"},
|
209
|
-
{"shape":"ResourceNotFoundException"},
|
210
|
-
{"shape":"InternalFailureException"},
|
211
|
-
{"shape":"ServiceUnavailableException"},
|
212
|
-
{"shape":"ThrottlingException"}
|
213
|
-
]
|
214
|
-
},
|
215
|
-
"DescribeChannel":{
|
216
|
-
"name":"DescribeChannel",
|
217
|
-
"http":{
|
218
|
-
"method":"GET",
|
219
|
-
"requestUri":"/channels/{channelName}"
|
220
|
-
},
|
221
|
-
"input":{"shape":"DescribeChannelRequest"},
|
222
|
-
"output":{"shape":"DescribeChannelResponse"},
|
223
|
-
"errors":[
|
224
|
-
{"shape":"InvalidRequestException"},
|
225
|
-
{"shape":"ResourceNotFoundException"},
|
226
|
-
{"shape":"InternalFailureException"},
|
227
|
-
{"shape":"ServiceUnavailableException"},
|
228
|
-
{"shape":"ThrottlingException"}
|
229
|
-
]
|
230
|
-
},
|
231
|
-
"DescribeDataset":{
|
232
|
-
"name":"DescribeDataset",
|
233
|
-
"http":{
|
234
|
-
"method":"GET",
|
235
|
-
"requestUri":"/datasets/{datasetName}"
|
236
|
-
},
|
237
|
-
"input":{"shape":"DescribeDatasetRequest"},
|
238
|
-
"output":{"shape":"DescribeDatasetResponse"},
|
239
|
-
"errors":[
|
240
|
-
{"shape":"InvalidRequestException"},
|
241
|
-
{"shape":"ResourceNotFoundException"},
|
242
|
-
{"shape":"InternalFailureException"},
|
243
|
-
{"shape":"ServiceUnavailableException"},
|
244
|
-
{"shape":"ThrottlingException"}
|
245
|
-
]
|
246
|
-
},
|
247
|
-
"DescribeDatastore":{
|
248
|
-
"name":"DescribeDatastore",
|
249
|
-
"http":{
|
250
|
-
"method":"GET",
|
251
|
-
"requestUri":"/datastores/{datastoreName}"
|
252
|
-
},
|
253
|
-
"input":{"shape":"DescribeDatastoreRequest"},
|
254
|
-
"output":{"shape":"DescribeDatastoreResponse"},
|
255
|
-
"errors":[
|
256
|
-
{"shape":"InvalidRequestException"},
|
257
|
-
{"shape":"ResourceNotFoundException"},
|
258
|
-
{"shape":"InternalFailureException"},
|
259
|
-
{"shape":"ServiceUnavailableException"},
|
260
|
-
{"shape":"ThrottlingException"}
|
261
|
-
]
|
262
|
-
},
|
263
|
-
"DescribeLoggingOptions":{
|
264
|
-
"name":"DescribeLoggingOptions",
|
265
|
-
"http":{
|
266
|
-
"method":"GET",
|
267
|
-
"requestUri":"/logging"
|
268
|
-
},
|
269
|
-
"input":{"shape":"DescribeLoggingOptionsRequest"},
|
270
|
-
"output":{"shape":"DescribeLoggingOptionsResponse"},
|
271
|
-
"errors":[
|
272
|
-
{"shape":"InvalidRequestException"},
|
273
|
-
{"shape":"ResourceNotFoundException"},
|
274
|
-
{"shape":"InternalFailureException"},
|
275
|
-
{"shape":"ServiceUnavailableException"},
|
276
|
-
{"shape":"ThrottlingException"}
|
277
|
-
]
|
278
|
-
},
|
279
|
-
"DescribePipeline":{
|
280
|
-
"name":"DescribePipeline",
|
281
|
-
"http":{
|
282
|
-
"method":"GET",
|
283
|
-
"requestUri":"/pipelines/{pipelineName}"
|
284
|
-
},
|
285
|
-
"input":{"shape":"DescribePipelineRequest"},
|
286
|
-
"output":{"shape":"DescribePipelineResponse"},
|
287
|
-
"errors":[
|
288
|
-
{"shape":"InvalidRequestException"},
|
289
|
-
{"shape":"ResourceNotFoundException"},
|
290
|
-
{"shape":"InternalFailureException"},
|
291
|
-
{"shape":"ServiceUnavailableException"},
|
292
|
-
{"shape":"ThrottlingException"}
|
293
|
-
]
|
294
|
-
},
|
295
|
-
"GetDatasetContent":{
|
296
|
-
"name":"GetDatasetContent",
|
297
|
-
"http":{
|
298
|
-
"method":"GET",
|
299
|
-
"requestUri":"/datasets/{datasetName}/content"
|
300
|
-
},
|
301
|
-
"input":{"shape":"GetDatasetContentRequest"},
|
302
|
-
"output":{"shape":"GetDatasetContentResponse"},
|
303
|
-
"errors":[
|
304
|
-
{"shape":"InvalidRequestException"},
|
305
|
-
{"shape":"ResourceNotFoundException"},
|
306
|
-
{"shape":"InternalFailureException"},
|
307
|
-
{"shape":"ServiceUnavailableException"},
|
308
|
-
{"shape":"ThrottlingException"}
|
309
|
-
]
|
310
|
-
},
|
311
|
-
"ListChannels":{
|
312
|
-
"name":"ListChannels",
|
313
|
-
"http":{
|
314
|
-
"method":"GET",
|
315
|
-
"requestUri":"/channels"
|
316
|
-
},
|
317
|
-
"input":{"shape":"ListChannelsRequest"},
|
318
|
-
"output":{"shape":"ListChannelsResponse"},
|
319
|
-
"errors":[
|
320
|
-
{"shape":"InvalidRequestException"},
|
321
|
-
{"shape":"InternalFailureException"},
|
322
|
-
{"shape":"ServiceUnavailableException"},
|
323
|
-
{"shape":"ThrottlingException"}
|
324
|
-
]
|
325
|
-
},
|
326
|
-
"ListDatasetContents":{
|
327
|
-
"name":"ListDatasetContents",
|
328
|
-
"http":{
|
329
|
-
"method":"GET",
|
330
|
-
"requestUri":"/datasets/{datasetName}/contents"
|
331
|
-
},
|
332
|
-
"input":{"shape":"ListDatasetContentsRequest"},
|
333
|
-
"output":{"shape":"ListDatasetContentsResponse"},
|
334
|
-
"errors":[
|
335
|
-
{"shape":"InvalidRequestException"},
|
336
|
-
{"shape":"InternalFailureException"},
|
337
|
-
{"shape":"ServiceUnavailableException"},
|
338
|
-
{"shape":"ThrottlingException"},
|
339
|
-
{"shape":"ResourceNotFoundException"}
|
340
|
-
]
|
341
|
-
},
|
342
|
-
"ListDatasets":{
|
343
|
-
"name":"ListDatasets",
|
344
|
-
"http":{
|
345
|
-
"method":"GET",
|
346
|
-
"requestUri":"/datasets"
|
347
|
-
},
|
348
|
-
"input":{"shape":"ListDatasetsRequest"},
|
349
|
-
"output":{"shape":"ListDatasetsResponse"},
|
350
|
-
"errors":[
|
351
|
-
{"shape":"InvalidRequestException"},
|
352
|
-
{"shape":"InternalFailureException"},
|
353
|
-
{"shape":"ServiceUnavailableException"},
|
354
|
-
{"shape":"ThrottlingException"}
|
355
|
-
]
|
356
|
-
},
|
357
|
-
"ListDatastores":{
|
358
|
-
"name":"ListDatastores",
|
359
|
-
"http":{
|
360
|
-
"method":"GET",
|
361
|
-
"requestUri":"/datastores"
|
362
|
-
},
|
363
|
-
"input":{"shape":"ListDatastoresRequest"},
|
364
|
-
"output":{"shape":"ListDatastoresResponse"},
|
365
|
-
"errors":[
|
366
|
-
{"shape":"InvalidRequestException"},
|
367
|
-
{"shape":"InternalFailureException"},
|
368
|
-
{"shape":"ServiceUnavailableException"},
|
369
|
-
{"shape":"ThrottlingException"}
|
370
|
-
]
|
371
|
-
},
|
372
|
-
"ListPipelines":{
|
373
|
-
"name":"ListPipelines",
|
374
|
-
"http":{
|
375
|
-
"method":"GET",
|
376
|
-
"requestUri":"/pipelines"
|
377
|
-
},
|
378
|
-
"input":{"shape":"ListPipelinesRequest"},
|
379
|
-
"output":{"shape":"ListPipelinesResponse"},
|
380
|
-
"errors":[
|
381
|
-
{"shape":"InvalidRequestException"},
|
382
|
-
{"shape":"InternalFailureException"},
|
383
|
-
{"shape":"ServiceUnavailableException"},
|
384
|
-
{"shape":"ThrottlingException"}
|
385
|
-
]
|
386
|
-
},
|
387
|
-
"ListTagsForResource":{
|
388
|
-
"name":"ListTagsForResource",
|
389
|
-
"http":{
|
390
|
-
"method":"GET",
|
391
|
-
"requestUri":"/tags"
|
392
|
-
},
|
393
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
394
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
395
|
-
"errors":[
|
396
|
-
{"shape":"InvalidRequestException"},
|
397
|
-
{"shape":"InternalFailureException"},
|
398
|
-
{"shape":"ServiceUnavailableException"},
|
399
|
-
{"shape":"ThrottlingException"},
|
400
|
-
{"shape":"LimitExceededException"},
|
401
|
-
{"shape":"ResourceNotFoundException"}
|
402
|
-
]
|
403
|
-
},
|
404
|
-
"PutLoggingOptions":{
|
405
|
-
"name":"PutLoggingOptions",
|
406
|
-
"http":{
|
407
|
-
"method":"PUT",
|
408
|
-
"requestUri":"/logging"
|
409
|
-
},
|
410
|
-
"input":{"shape":"PutLoggingOptionsRequest"},
|
411
|
-
"errors":[
|
412
|
-
{"shape":"InvalidRequestException"},
|
413
|
-
{"shape":"InternalFailureException"},
|
414
|
-
{"shape":"ServiceUnavailableException"},
|
415
|
-
{"shape":"ThrottlingException"}
|
416
|
-
]
|
417
|
-
},
|
418
|
-
"RunPipelineActivity":{
|
419
|
-
"name":"RunPipelineActivity",
|
420
|
-
"http":{
|
421
|
-
"method":"POST",
|
422
|
-
"requestUri":"/pipelineactivities/run"
|
423
|
-
},
|
424
|
-
"input":{"shape":"RunPipelineActivityRequest"},
|
425
|
-
"output":{"shape":"RunPipelineActivityResponse"},
|
426
|
-
"errors":[
|
427
|
-
{"shape":"InvalidRequestException"},
|
428
|
-
{"shape":"InternalFailureException"},
|
429
|
-
{"shape":"ServiceUnavailableException"},
|
430
|
-
{"shape":"ThrottlingException"}
|
431
|
-
]
|
432
|
-
},
|
433
|
-
"SampleChannelData":{
|
434
|
-
"name":"SampleChannelData",
|
435
|
-
"http":{
|
436
|
-
"method":"GET",
|
437
|
-
"requestUri":"/channels/{channelName}/sample"
|
438
|
-
},
|
439
|
-
"input":{"shape":"SampleChannelDataRequest"},
|
440
|
-
"output":{"shape":"SampleChannelDataResponse"},
|
441
|
-
"errors":[
|
442
|
-
{"shape":"InvalidRequestException"},
|
443
|
-
{"shape":"ResourceNotFoundException"},
|
444
|
-
{"shape":"InternalFailureException"},
|
445
|
-
{"shape":"ServiceUnavailableException"},
|
446
|
-
{"shape":"ThrottlingException"}
|
447
|
-
]
|
448
|
-
},
|
449
|
-
"StartPipelineReprocessing":{
|
450
|
-
"name":"StartPipelineReprocessing",
|
451
|
-
"http":{
|
452
|
-
"method":"POST",
|
453
|
-
"requestUri":"/pipelines/{pipelineName}/reprocessing"
|
454
|
-
},
|
455
|
-
"input":{"shape":"StartPipelineReprocessingRequest"},
|
456
|
-
"output":{"shape":"StartPipelineReprocessingResponse"},
|
457
|
-
"errors":[
|
458
|
-
{"shape":"ResourceNotFoundException"},
|
459
|
-
{"shape":"ResourceAlreadyExistsException"},
|
460
|
-
{"shape":"InvalidRequestException"},
|
461
|
-
{"shape":"InternalFailureException"},
|
462
|
-
{"shape":"ServiceUnavailableException"},
|
463
|
-
{"shape":"ThrottlingException"}
|
464
|
-
]
|
465
|
-
},
|
466
|
-
"TagResource":{
|
467
|
-
"name":"TagResource",
|
468
|
-
"http":{
|
469
|
-
"method":"POST",
|
470
|
-
"requestUri":"/tags",
|
471
|
-
"responseCode":204
|
472
|
-
},
|
473
|
-
"input":{"shape":"TagResourceRequest"},
|
474
|
-
"output":{"shape":"TagResourceResponse"},
|
475
|
-
"errors":[
|
476
|
-
{"shape":"InvalidRequestException"},
|
477
|
-
{"shape":"InternalFailureException"},
|
478
|
-
{"shape":"ServiceUnavailableException"},
|
479
|
-
{"shape":"ThrottlingException"},
|
480
|
-
{"shape":"LimitExceededException"},
|
481
|
-
{"shape":"ResourceNotFoundException"}
|
482
|
-
]
|
483
|
-
},
|
484
|
-
"UntagResource":{
|
485
|
-
"name":"UntagResource",
|
486
|
-
"http":{
|
487
|
-
"method":"DELETE",
|
488
|
-
"requestUri":"/tags",
|
489
|
-
"responseCode":204
|
490
|
-
},
|
491
|
-
"input":{"shape":"UntagResourceRequest"},
|
492
|
-
"output":{"shape":"UntagResourceResponse"},
|
493
|
-
"errors":[
|
494
|
-
{"shape":"InvalidRequestException"},
|
495
|
-
{"shape":"InternalFailureException"},
|
496
|
-
{"shape":"ServiceUnavailableException"},
|
497
|
-
{"shape":"ThrottlingException"},
|
498
|
-
{"shape":"LimitExceededException"},
|
499
|
-
{"shape":"ResourceNotFoundException"}
|
500
|
-
]
|
501
|
-
},
|
502
|
-
"UpdateChannel":{
|
503
|
-
"name":"UpdateChannel",
|
504
|
-
"http":{
|
505
|
-
"method":"PUT",
|
506
|
-
"requestUri":"/channels/{channelName}"
|
507
|
-
},
|
508
|
-
"input":{"shape":"UpdateChannelRequest"},
|
509
|
-
"errors":[
|
510
|
-
{"shape":"InvalidRequestException"},
|
511
|
-
{"shape":"ResourceNotFoundException"},
|
512
|
-
{"shape":"InternalFailureException"},
|
513
|
-
{"shape":"ServiceUnavailableException"},
|
514
|
-
{"shape":"ThrottlingException"}
|
515
|
-
]
|
516
|
-
},
|
517
|
-
"UpdateDataset":{
|
518
|
-
"name":"UpdateDataset",
|
519
|
-
"http":{
|
520
|
-
"method":"PUT",
|
521
|
-
"requestUri":"/datasets/{datasetName}"
|
522
|
-
},
|
523
|
-
"input":{"shape":"UpdateDatasetRequest"},
|
524
|
-
"errors":[
|
525
|
-
{"shape":"InvalidRequestException"},
|
526
|
-
{"shape":"ResourceNotFoundException"},
|
527
|
-
{"shape":"InternalFailureException"},
|
528
|
-
{"shape":"ServiceUnavailableException"},
|
529
|
-
{"shape":"ThrottlingException"}
|
530
|
-
]
|
531
|
-
},
|
532
|
-
"UpdateDatastore":{
|
533
|
-
"name":"UpdateDatastore",
|
534
|
-
"http":{
|
535
|
-
"method":"PUT",
|
536
|
-
"requestUri":"/datastores/{datastoreName}"
|
537
|
-
},
|
538
|
-
"input":{"shape":"UpdateDatastoreRequest"},
|
539
|
-
"errors":[
|
540
|
-
{"shape":"InvalidRequestException"},
|
541
|
-
{"shape":"ResourceNotFoundException"},
|
542
|
-
{"shape":"InternalFailureException"},
|
543
|
-
{"shape":"ServiceUnavailableException"},
|
544
|
-
{"shape":"ThrottlingException"}
|
545
|
-
]
|
546
|
-
},
|
547
|
-
"UpdatePipeline":{
|
548
|
-
"name":"UpdatePipeline",
|
549
|
-
"http":{
|
550
|
-
"method":"PUT",
|
551
|
-
"requestUri":"/pipelines/{pipelineName}"
|
552
|
-
},
|
553
|
-
"input":{"shape":"UpdatePipelineRequest"},
|
554
|
-
"errors":[
|
555
|
-
{"shape":"InvalidRequestException"},
|
556
|
-
{"shape":"ResourceNotFoundException"},
|
557
|
-
{"shape":"InternalFailureException"},
|
558
|
-
{"shape":"ServiceUnavailableException"},
|
559
|
-
{"shape":"ThrottlingException"},
|
560
|
-
{"shape":"LimitExceededException"}
|
561
|
-
]
|
562
|
-
}
|
563
|
-
},
|
564
|
-
"shapes":{
|
565
|
-
"ActivityBatchSize":{
|
566
|
-
"type":"integer",
|
567
|
-
"max":1000,
|
568
|
-
"min":1
|
569
|
-
},
|
570
|
-
"ActivityName":{
|
571
|
-
"type":"string",
|
572
|
-
"max":128,
|
573
|
-
"min":1
|
574
|
-
},
|
575
|
-
"AddAttributesActivity":{
|
576
|
-
"type":"structure",
|
577
|
-
"required":[
|
578
|
-
"name",
|
579
|
-
"attributes"
|
580
|
-
],
|
581
|
-
"members":{
|
582
|
-
"name":{"shape":"ActivityName"},
|
583
|
-
"attributes":{"shape":"AttributeNameMapping"},
|
584
|
-
"next":{"shape":"ActivityName"}
|
585
|
-
}
|
586
|
-
},
|
587
|
-
"AttributeName":{
|
588
|
-
"type":"string",
|
589
|
-
"max":256,
|
590
|
-
"min":1
|
591
|
-
},
|
592
|
-
"AttributeNameMapping":{
|
593
|
-
"type":"map",
|
594
|
-
"key":{"shape":"AttributeName"},
|
595
|
-
"value":{"shape":"AttributeName"},
|
596
|
-
"max":50,
|
597
|
-
"min":1
|
598
|
-
},
|
599
|
-
"AttributeNames":{
|
600
|
-
"type":"list",
|
601
|
-
"member":{"shape":"AttributeName"},
|
602
|
-
"max":50,
|
603
|
-
"min":1
|
604
|
-
},
|
605
|
-
"BatchPutMessageErrorEntries":{
|
606
|
-
"type":"list",
|
607
|
-
"member":{"shape":"BatchPutMessageErrorEntry"}
|
608
|
-
},
|
609
|
-
"BatchPutMessageErrorEntry":{
|
610
|
-
"type":"structure",
|
611
|
-
"members":{
|
612
|
-
"messageId":{"shape":"MessageId"},
|
613
|
-
"errorCode":{"shape":"ErrorCode"},
|
614
|
-
"errorMessage":{"shape":"ErrorMessage"}
|
615
|
-
}
|
616
|
-
},
|
617
|
-
"BatchPutMessageRequest":{
|
618
|
-
"type":"structure",
|
619
|
-
"required":[
|
620
|
-
"channelName",
|
621
|
-
"messages"
|
622
|
-
],
|
623
|
-
"members":{
|
624
|
-
"channelName":{"shape":"ChannelName"},
|
625
|
-
"messages":{"shape":"Messages"}
|
626
|
-
}
|
627
|
-
},
|
628
|
-
"BatchPutMessageResponse":{
|
629
|
-
"type":"structure",
|
630
|
-
"members":{
|
631
|
-
"batchPutMessageErrorEntries":{"shape":"BatchPutMessageErrorEntries"}
|
632
|
-
}
|
633
|
-
},
|
634
|
-
"BucketKeyExpression":{
|
635
|
-
"type":"string",
|
636
|
-
"max":255,
|
637
|
-
"min":1,
|
638
|
-
"pattern":"^[a-zA-Z0-9!_.*'()/{}:-]*$"
|
639
|
-
},
|
640
|
-
"BucketName":{
|
641
|
-
"type":"string",
|
642
|
-
"max":255,
|
643
|
-
"min":3,
|
644
|
-
"pattern":"^[a-zA-Z0-9.\\-_]*$"
|
645
|
-
},
|
646
|
-
"CancelPipelineReprocessingRequest":{
|
647
|
-
"type":"structure",
|
648
|
-
"required":[
|
649
|
-
"pipelineName",
|
650
|
-
"reprocessingId"
|
651
|
-
],
|
652
|
-
"members":{
|
653
|
-
"pipelineName":{
|
654
|
-
"shape":"PipelineName",
|
655
|
-
"location":"uri",
|
656
|
-
"locationName":"pipelineName"
|
657
|
-
},
|
658
|
-
"reprocessingId":{
|
659
|
-
"shape":"ReprocessingId",
|
660
|
-
"location":"uri",
|
661
|
-
"locationName":"reprocessingId"
|
662
|
-
}
|
663
|
-
}
|
664
|
-
},
|
665
|
-
"CancelPipelineReprocessingResponse":{
|
666
|
-
"type":"structure",
|
667
|
-
"members":{
|
668
|
-
}
|
669
|
-
},
|
670
|
-
"Channel":{
|
671
|
-
"type":"structure",
|
672
|
-
"members":{
|
673
|
-
"name":{"shape":"ChannelName"},
|
674
|
-
"storage":{"shape":"ChannelStorage"},
|
675
|
-
"arn":{"shape":"ChannelArn"},
|
676
|
-
"status":{"shape":"ChannelStatus"},
|
677
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
678
|
-
"creationTime":{"shape":"Timestamp"},
|
679
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
680
|
-
}
|
681
|
-
},
|
682
|
-
"ChannelActivity":{
|
683
|
-
"type":"structure",
|
684
|
-
"required":[
|
685
|
-
"name",
|
686
|
-
"channelName"
|
687
|
-
],
|
688
|
-
"members":{
|
689
|
-
"name":{"shape":"ActivityName"},
|
690
|
-
"channelName":{"shape":"ChannelName"},
|
691
|
-
"next":{"shape":"ActivityName"}
|
692
|
-
}
|
693
|
-
},
|
694
|
-
"ChannelArn":{"type":"string"},
|
695
|
-
"ChannelName":{
|
696
|
-
"type":"string",
|
697
|
-
"max":128,
|
698
|
-
"min":1,
|
699
|
-
"pattern":"^[a-zA-Z0-9_]+$"
|
700
|
-
},
|
701
|
-
"ChannelStatistics":{
|
702
|
-
"type":"structure",
|
703
|
-
"members":{
|
704
|
-
"size":{"shape":"EstimatedResourceSize"}
|
705
|
-
}
|
706
|
-
},
|
707
|
-
"ChannelStatus":{
|
708
|
-
"type":"string",
|
709
|
-
"enum":[
|
710
|
-
"CREATING",
|
711
|
-
"ACTIVE",
|
712
|
-
"DELETING"
|
713
|
-
]
|
714
|
-
},
|
715
|
-
"ChannelStorage":{
|
716
|
-
"type":"structure",
|
717
|
-
"members":{
|
718
|
-
"serviceManagedS3":{"shape":"ServiceManagedChannelS3Storage"},
|
719
|
-
"customerManagedS3":{"shape":"CustomerManagedChannelS3Storage"}
|
720
|
-
}
|
721
|
-
},
|
722
|
-
"ChannelStorageSummary":{
|
723
|
-
"type":"structure",
|
724
|
-
"members":{
|
725
|
-
"serviceManagedS3":{"shape":"ServiceManagedChannelS3StorageSummary"},
|
726
|
-
"customerManagedS3":{"shape":"CustomerManagedChannelS3StorageSummary"}
|
727
|
-
}
|
728
|
-
},
|
729
|
-
"ChannelSummaries":{
|
730
|
-
"type":"list",
|
731
|
-
"member":{"shape":"ChannelSummary"}
|
732
|
-
},
|
733
|
-
"ChannelSummary":{
|
734
|
-
"type":"structure",
|
735
|
-
"members":{
|
736
|
-
"channelName":{"shape":"ChannelName"},
|
737
|
-
"channelStorage":{"shape":"ChannelStorageSummary"},
|
738
|
-
"status":{"shape":"ChannelStatus"},
|
739
|
-
"creationTime":{"shape":"Timestamp"},
|
740
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
741
|
-
}
|
742
|
-
},
|
743
|
-
"ComputeType":{
|
744
|
-
"type":"string",
|
745
|
-
"enum":[
|
746
|
-
"ACU_1",
|
747
|
-
"ACU_2"
|
748
|
-
]
|
749
|
-
},
|
750
|
-
"ContainerDatasetAction":{
|
751
|
-
"type":"structure",
|
752
|
-
"required":[
|
753
|
-
"image",
|
754
|
-
"executionRoleArn",
|
755
|
-
"resourceConfiguration"
|
756
|
-
],
|
757
|
-
"members":{
|
758
|
-
"image":{"shape":"Image"},
|
759
|
-
"executionRoleArn":{"shape":"RoleArn"},
|
760
|
-
"resourceConfiguration":{"shape":"ResourceConfiguration"},
|
761
|
-
"variables":{"shape":"Variables"}
|
762
|
-
}
|
763
|
-
},
|
764
|
-
"CreateChannelRequest":{
|
765
|
-
"type":"structure",
|
766
|
-
"required":["channelName"],
|
767
|
-
"members":{
|
768
|
-
"channelName":{"shape":"ChannelName"},
|
769
|
-
"channelStorage":{"shape":"ChannelStorage"},
|
770
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
771
|
-
"tags":{"shape":"TagList"}
|
772
|
-
}
|
773
|
-
},
|
774
|
-
"CreateChannelResponse":{
|
775
|
-
"type":"structure",
|
776
|
-
"members":{
|
777
|
-
"channelName":{"shape":"ChannelName"},
|
778
|
-
"channelArn":{"shape":"ChannelArn"},
|
779
|
-
"retentionPeriod":{"shape":"RetentionPeriod"}
|
780
|
-
}
|
781
|
-
},
|
782
|
-
"CreateDatasetContentRequest":{
|
783
|
-
"type":"structure",
|
784
|
-
"required":["datasetName"],
|
785
|
-
"members":{
|
786
|
-
"datasetName":{
|
787
|
-
"shape":"DatasetName",
|
788
|
-
"location":"uri",
|
789
|
-
"locationName":"datasetName"
|
790
|
-
}
|
791
|
-
}
|
792
|
-
},
|
793
|
-
"CreateDatasetContentResponse":{
|
794
|
-
"type":"structure",
|
795
|
-
"members":{
|
796
|
-
"versionId":{"shape":"DatasetContentVersion"}
|
797
|
-
}
|
798
|
-
},
|
799
|
-
"CreateDatasetRequest":{
|
800
|
-
"type":"structure",
|
801
|
-
"required":[
|
802
|
-
"datasetName",
|
803
|
-
"actions"
|
804
|
-
],
|
805
|
-
"members":{
|
806
|
-
"datasetName":{"shape":"DatasetName"},
|
807
|
-
"actions":{"shape":"DatasetActions"},
|
808
|
-
"triggers":{"shape":"DatasetTriggers"},
|
809
|
-
"contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
|
810
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
811
|
-
"versioningConfiguration":{"shape":"VersioningConfiguration"},
|
812
|
-
"tags":{"shape":"TagList"}
|
813
|
-
}
|
814
|
-
},
|
815
|
-
"CreateDatasetResponse":{
|
816
|
-
"type":"structure",
|
817
|
-
"members":{
|
818
|
-
"datasetName":{"shape":"DatasetName"},
|
819
|
-
"datasetArn":{"shape":"DatasetArn"},
|
820
|
-
"retentionPeriod":{"shape":"RetentionPeriod"}
|
821
|
-
}
|
822
|
-
},
|
823
|
-
"CreateDatastoreRequest":{
|
824
|
-
"type":"structure",
|
825
|
-
"required":["datastoreName"],
|
826
|
-
"members":{
|
827
|
-
"datastoreName":{"shape":"DatastoreName"},
|
828
|
-
"datastoreStorage":{"shape":"DatastoreStorage"},
|
829
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
830
|
-
"tags":{"shape":"TagList"}
|
831
|
-
}
|
832
|
-
},
|
833
|
-
"CreateDatastoreResponse":{
|
834
|
-
"type":"structure",
|
835
|
-
"members":{
|
836
|
-
"datastoreName":{"shape":"DatastoreName"},
|
837
|
-
"datastoreArn":{"shape":"DatastoreArn"},
|
838
|
-
"retentionPeriod":{"shape":"RetentionPeriod"}
|
839
|
-
}
|
840
|
-
},
|
841
|
-
"CreatePipelineRequest":{
|
842
|
-
"type":"structure",
|
843
|
-
"required":[
|
844
|
-
"pipelineName",
|
845
|
-
"pipelineActivities"
|
846
|
-
],
|
847
|
-
"members":{
|
848
|
-
"pipelineName":{"shape":"PipelineName"},
|
849
|
-
"pipelineActivities":{"shape":"PipelineActivities"},
|
850
|
-
"tags":{"shape":"TagList"}
|
851
|
-
}
|
852
|
-
},
|
853
|
-
"CreatePipelineResponse":{
|
854
|
-
"type":"structure",
|
855
|
-
"members":{
|
856
|
-
"pipelineName":{"shape":"PipelineName"},
|
857
|
-
"pipelineArn":{"shape":"PipelineArn"}
|
858
|
-
}
|
859
|
-
},
|
860
|
-
"CustomerManagedChannelS3Storage":{
|
861
|
-
"type":"structure",
|
862
|
-
"required":[
|
863
|
-
"bucket",
|
864
|
-
"roleArn"
|
865
|
-
],
|
866
|
-
"members":{
|
867
|
-
"bucket":{"shape":"BucketName"},
|
868
|
-
"keyPrefix":{"shape":"S3KeyPrefix"},
|
869
|
-
"roleArn":{"shape":"RoleArn"}
|
870
|
-
}
|
871
|
-
},
|
872
|
-
"CustomerManagedChannelS3StorageSummary":{
|
873
|
-
"type":"structure",
|
874
|
-
"members":{
|
875
|
-
"bucket":{"shape":"BucketName"},
|
876
|
-
"keyPrefix":{"shape":"S3KeyPrefix"},
|
877
|
-
"roleArn":{"shape":"RoleArn"}
|
878
|
-
}
|
879
|
-
},
|
880
|
-
"CustomerManagedDatastoreS3Storage":{
|
881
|
-
"type":"structure",
|
882
|
-
"required":[
|
883
|
-
"bucket",
|
884
|
-
"roleArn"
|
885
|
-
],
|
886
|
-
"members":{
|
887
|
-
"bucket":{"shape":"BucketName"},
|
888
|
-
"keyPrefix":{"shape":"S3KeyPrefix"},
|
889
|
-
"roleArn":{"shape":"RoleArn"}
|
890
|
-
}
|
891
|
-
},
|
892
|
-
"CustomerManagedDatastoreS3StorageSummary":{
|
893
|
-
"type":"structure",
|
894
|
-
"members":{
|
895
|
-
"bucket":{"shape":"BucketName"},
|
896
|
-
"keyPrefix":{"shape":"S3KeyPrefix"},
|
897
|
-
"roleArn":{"shape":"RoleArn"}
|
898
|
-
}
|
899
|
-
},
|
900
|
-
"Dataset":{
|
901
|
-
"type":"structure",
|
902
|
-
"members":{
|
903
|
-
"name":{"shape":"DatasetName"},
|
904
|
-
"arn":{"shape":"DatasetArn"},
|
905
|
-
"actions":{"shape":"DatasetActions"},
|
906
|
-
"triggers":{"shape":"DatasetTriggers"},
|
907
|
-
"contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
|
908
|
-
"status":{"shape":"DatasetStatus"},
|
909
|
-
"creationTime":{"shape":"Timestamp"},
|
910
|
-
"lastUpdateTime":{"shape":"Timestamp"},
|
911
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
912
|
-
"versioningConfiguration":{"shape":"VersioningConfiguration"}
|
913
|
-
}
|
914
|
-
},
|
915
|
-
"DatasetAction":{
|
916
|
-
"type":"structure",
|
917
|
-
"members":{
|
918
|
-
"actionName":{"shape":"DatasetActionName"},
|
919
|
-
"queryAction":{"shape":"SqlQueryDatasetAction"},
|
920
|
-
"containerAction":{"shape":"ContainerDatasetAction"}
|
921
|
-
}
|
922
|
-
},
|
923
|
-
"DatasetActionName":{
|
924
|
-
"type":"string",
|
925
|
-
"max":128,
|
926
|
-
"min":1,
|
927
|
-
"pattern":"^[a-zA-Z0-9_]+$"
|
928
|
-
},
|
929
|
-
"DatasetActionSummaries":{
|
930
|
-
"type":"list",
|
931
|
-
"member":{"shape":"DatasetActionSummary"},
|
932
|
-
"max":1,
|
933
|
-
"min":1
|
934
|
-
},
|
935
|
-
"DatasetActionSummary":{
|
936
|
-
"type":"structure",
|
937
|
-
"members":{
|
938
|
-
"actionName":{"shape":"DatasetActionName"},
|
939
|
-
"actionType":{"shape":"DatasetActionType"}
|
940
|
-
}
|
941
|
-
},
|
942
|
-
"DatasetActionType":{
|
943
|
-
"type":"string",
|
944
|
-
"enum":[
|
945
|
-
"QUERY",
|
946
|
-
"CONTAINER"
|
947
|
-
]
|
948
|
-
},
|
949
|
-
"DatasetActions":{
|
950
|
-
"type":"list",
|
951
|
-
"member":{"shape":"DatasetAction"},
|
952
|
-
"max":1,
|
953
|
-
"min":1
|
954
|
-
},
|
955
|
-
"DatasetArn":{"type":"string"},
|
956
|
-
"DatasetContentDeliveryDestination":{
|
957
|
-
"type":"structure",
|
958
|
-
"members":{
|
959
|
-
"iotEventsDestinationConfiguration":{"shape":"IotEventsDestinationConfiguration"},
|
960
|
-
"s3DestinationConfiguration":{"shape":"S3DestinationConfiguration"}
|
961
|
-
}
|
962
|
-
},
|
963
|
-
"DatasetContentDeliveryRule":{
|
964
|
-
"type":"structure",
|
965
|
-
"required":["destination"],
|
966
|
-
"members":{
|
967
|
-
"entryName":{"shape":"EntryName"},
|
968
|
-
"destination":{"shape":"DatasetContentDeliveryDestination"}
|
969
|
-
}
|
970
|
-
},
|
971
|
-
"DatasetContentDeliveryRules":{
|
972
|
-
"type":"list",
|
973
|
-
"member":{"shape":"DatasetContentDeliveryRule"},
|
974
|
-
"max":20,
|
975
|
-
"min":0
|
976
|
-
},
|
977
|
-
"DatasetContentState":{
|
978
|
-
"type":"string",
|
979
|
-
"enum":[
|
980
|
-
"CREATING",
|
981
|
-
"SUCCEEDED",
|
982
|
-
"FAILED"
|
983
|
-
]
|
984
|
-
},
|
985
|
-
"DatasetContentStatus":{
|
986
|
-
"type":"structure",
|
987
|
-
"members":{
|
988
|
-
"state":{"shape":"DatasetContentState"},
|
989
|
-
"reason":{"shape":"Reason"}
|
990
|
-
}
|
991
|
-
},
|
992
|
-
"DatasetContentSummaries":{
|
993
|
-
"type":"list",
|
994
|
-
"member":{"shape":"DatasetContentSummary"}
|
995
|
-
},
|
996
|
-
"DatasetContentSummary":{
|
997
|
-
"type":"structure",
|
998
|
-
"members":{
|
999
|
-
"version":{"shape":"DatasetContentVersion"},
|
1000
|
-
"status":{"shape":"DatasetContentStatus"},
|
1001
|
-
"creationTime":{"shape":"Timestamp"},
|
1002
|
-
"scheduleTime":{"shape":"Timestamp"}
|
1003
|
-
}
|
1004
|
-
},
|
1005
|
-
"DatasetContentVersion":{
|
1006
|
-
"type":"string",
|
1007
|
-
"max":36,
|
1008
|
-
"min":7
|
1009
|
-
},
|
1010
|
-
"DatasetContentVersionValue":{
|
1011
|
-
"type":"structure",
|
1012
|
-
"required":["datasetName"],
|
1013
|
-
"members":{
|
1014
|
-
"datasetName":{"shape":"DatasetName"}
|
1015
|
-
}
|
1016
|
-
},
|
1017
|
-
"DatasetEntries":{
|
1018
|
-
"type":"list",
|
1019
|
-
"member":{"shape":"DatasetEntry"}
|
1020
|
-
},
|
1021
|
-
"DatasetEntry":{
|
1022
|
-
"type":"structure",
|
1023
|
-
"members":{
|
1024
|
-
"entryName":{"shape":"EntryName"},
|
1025
|
-
"dataURI":{"shape":"PresignedURI"}
|
1026
|
-
}
|
1027
|
-
},
|
1028
|
-
"DatasetName":{
|
1029
|
-
"type":"string",
|
1030
|
-
"max":128,
|
1031
|
-
"min":1,
|
1032
|
-
"pattern":"^[a-zA-Z0-9_]+$"
|
1033
|
-
},
|
1034
|
-
"DatasetStatus":{
|
1035
|
-
"type":"string",
|
1036
|
-
"enum":[
|
1037
|
-
"CREATING",
|
1038
|
-
"ACTIVE",
|
1039
|
-
"DELETING"
|
1040
|
-
]
|
1041
|
-
},
|
1042
|
-
"DatasetSummaries":{
|
1043
|
-
"type":"list",
|
1044
|
-
"member":{"shape":"DatasetSummary"}
|
1045
|
-
},
|
1046
|
-
"DatasetSummary":{
|
1047
|
-
"type":"structure",
|
1048
|
-
"members":{
|
1049
|
-
"datasetName":{"shape":"DatasetName"},
|
1050
|
-
"status":{"shape":"DatasetStatus"},
|
1051
|
-
"creationTime":{"shape":"Timestamp"},
|
1052
|
-
"lastUpdateTime":{"shape":"Timestamp"},
|
1053
|
-
"triggers":{"shape":"DatasetTriggers"},
|
1054
|
-
"actions":{"shape":"DatasetActionSummaries"}
|
1055
|
-
}
|
1056
|
-
},
|
1057
|
-
"DatasetTrigger":{
|
1058
|
-
"type":"structure",
|
1059
|
-
"members":{
|
1060
|
-
"schedule":{"shape":"Schedule"},
|
1061
|
-
"dataset":{"shape":"TriggeringDataset"}
|
1062
|
-
}
|
1063
|
-
},
|
1064
|
-
"DatasetTriggers":{
|
1065
|
-
"type":"list",
|
1066
|
-
"member":{"shape":"DatasetTrigger"},
|
1067
|
-
"max":5,
|
1068
|
-
"min":0
|
1069
|
-
},
|
1070
|
-
"Datastore":{
|
1071
|
-
"type":"structure",
|
1072
|
-
"members":{
|
1073
|
-
"name":{"shape":"DatastoreName"},
|
1074
|
-
"storage":{"shape":"DatastoreStorage"},
|
1075
|
-
"arn":{"shape":"DatastoreArn"},
|
1076
|
-
"status":{"shape":"DatastoreStatus"},
|
1077
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
1078
|
-
"creationTime":{"shape":"Timestamp"},
|
1079
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
1080
|
-
}
|
1081
|
-
},
|
1082
|
-
"DatastoreActivity":{
|
1083
|
-
"type":"structure",
|
1084
|
-
"required":[
|
1085
|
-
"name",
|
1086
|
-
"datastoreName"
|
1087
|
-
],
|
1088
|
-
"members":{
|
1089
|
-
"name":{"shape":"ActivityName"},
|
1090
|
-
"datastoreName":{"shape":"DatastoreName"}
|
1091
|
-
}
|
1092
|
-
},
|
1093
|
-
"DatastoreArn":{"type":"string"},
|
1094
|
-
"DatastoreName":{
|
1095
|
-
"type":"string",
|
1096
|
-
"max":128,
|
1097
|
-
"min":1,
|
1098
|
-
"pattern":"^[a-zA-Z0-9_]+$"
|
1099
|
-
},
|
1100
|
-
"DatastoreStatistics":{
|
1101
|
-
"type":"structure",
|
1102
|
-
"members":{
|
1103
|
-
"size":{"shape":"EstimatedResourceSize"}
|
1104
|
-
}
|
1105
|
-
},
|
1106
|
-
"DatastoreStatus":{
|
1107
|
-
"type":"string",
|
1108
|
-
"enum":[
|
1109
|
-
"CREATING",
|
1110
|
-
"ACTIVE",
|
1111
|
-
"DELETING"
|
1112
|
-
]
|
1113
|
-
},
|
1114
|
-
"DatastoreStorage":{
|
1115
|
-
"type":"structure",
|
1116
|
-
"members":{
|
1117
|
-
"serviceManagedS3":{"shape":"ServiceManagedDatastoreS3Storage"},
|
1118
|
-
"customerManagedS3":{"shape":"CustomerManagedDatastoreS3Storage"}
|
1119
|
-
}
|
1120
|
-
},
|
1121
|
-
"DatastoreStorageSummary":{
|
1122
|
-
"type":"structure",
|
1123
|
-
"members":{
|
1124
|
-
"serviceManagedS3":{"shape":"ServiceManagedDatastoreS3StorageSummary"},
|
1125
|
-
"customerManagedS3":{"shape":"CustomerManagedDatastoreS3StorageSummary"}
|
1126
|
-
}
|
1127
|
-
},
|
1128
|
-
"DatastoreSummaries":{
|
1129
|
-
"type":"list",
|
1130
|
-
"member":{"shape":"DatastoreSummary"}
|
1131
|
-
},
|
1132
|
-
"DatastoreSummary":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"members":{
|
1135
|
-
"datastoreName":{"shape":"DatastoreName"},
|
1136
|
-
"datastoreStorage":{"shape":"DatastoreStorageSummary"},
|
1137
|
-
"status":{"shape":"DatastoreStatus"},
|
1138
|
-
"creationTime":{"shape":"Timestamp"},
|
1139
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
1140
|
-
}
|
1141
|
-
},
|
1142
|
-
"DeleteChannelRequest":{
|
1143
|
-
"type":"structure",
|
1144
|
-
"required":["channelName"],
|
1145
|
-
"members":{
|
1146
|
-
"channelName":{
|
1147
|
-
"shape":"ChannelName",
|
1148
|
-
"location":"uri",
|
1149
|
-
"locationName":"channelName"
|
1150
|
-
}
|
1151
|
-
}
|
1152
|
-
},
|
1153
|
-
"DeleteDatasetContentRequest":{
|
1154
|
-
"type":"structure",
|
1155
|
-
"required":["datasetName"],
|
1156
|
-
"members":{
|
1157
|
-
"datasetName":{
|
1158
|
-
"shape":"DatasetName",
|
1159
|
-
"location":"uri",
|
1160
|
-
"locationName":"datasetName"
|
1161
|
-
},
|
1162
|
-
"versionId":{
|
1163
|
-
"shape":"DatasetContentVersion",
|
1164
|
-
"location":"querystring",
|
1165
|
-
"locationName":"versionId"
|
1166
|
-
}
|
1167
|
-
}
|
1168
|
-
},
|
1169
|
-
"DeleteDatasetRequest":{
|
1170
|
-
"type":"structure",
|
1171
|
-
"required":["datasetName"],
|
1172
|
-
"members":{
|
1173
|
-
"datasetName":{
|
1174
|
-
"shape":"DatasetName",
|
1175
|
-
"location":"uri",
|
1176
|
-
"locationName":"datasetName"
|
1177
|
-
}
|
1178
|
-
}
|
1179
|
-
},
|
1180
|
-
"DeleteDatastoreRequest":{
|
1181
|
-
"type":"structure",
|
1182
|
-
"required":["datastoreName"],
|
1183
|
-
"members":{
|
1184
|
-
"datastoreName":{
|
1185
|
-
"shape":"DatastoreName",
|
1186
|
-
"location":"uri",
|
1187
|
-
"locationName":"datastoreName"
|
1188
|
-
}
|
1189
|
-
}
|
1190
|
-
},
|
1191
|
-
"DeletePipelineRequest":{
|
1192
|
-
"type":"structure",
|
1193
|
-
"required":["pipelineName"],
|
1194
|
-
"members":{
|
1195
|
-
"pipelineName":{
|
1196
|
-
"shape":"PipelineName",
|
1197
|
-
"location":"uri",
|
1198
|
-
"locationName":"pipelineName"
|
1199
|
-
}
|
1200
|
-
}
|
1201
|
-
},
|
1202
|
-
"DeltaTime":{
|
1203
|
-
"type":"structure",
|
1204
|
-
"required":[
|
1205
|
-
"offsetSeconds",
|
1206
|
-
"timeExpression"
|
1207
|
-
],
|
1208
|
-
"members":{
|
1209
|
-
"offsetSeconds":{"shape":"OffsetSeconds"},
|
1210
|
-
"timeExpression":{"shape":"TimeExpression"}
|
1211
|
-
}
|
1212
|
-
},
|
1213
|
-
"DescribeChannelRequest":{
|
1214
|
-
"type":"structure",
|
1215
|
-
"required":["channelName"],
|
1216
|
-
"members":{
|
1217
|
-
"channelName":{
|
1218
|
-
"shape":"ChannelName",
|
1219
|
-
"location":"uri",
|
1220
|
-
"locationName":"channelName"
|
1221
|
-
},
|
1222
|
-
"includeStatistics":{
|
1223
|
-
"shape":"IncludeStatisticsFlag",
|
1224
|
-
"location":"querystring",
|
1225
|
-
"locationName":"includeStatistics"
|
1226
|
-
}
|
1227
|
-
}
|
1228
|
-
},
|
1229
|
-
"DescribeChannelResponse":{
|
1230
|
-
"type":"structure",
|
1231
|
-
"members":{
|
1232
|
-
"channel":{"shape":"Channel"},
|
1233
|
-
"statistics":{"shape":"ChannelStatistics"}
|
1234
|
-
}
|
1235
|
-
},
|
1236
|
-
"DescribeDatasetRequest":{
|
1237
|
-
"type":"structure",
|
1238
|
-
"required":["datasetName"],
|
1239
|
-
"members":{
|
1240
|
-
"datasetName":{
|
1241
|
-
"shape":"DatasetName",
|
1242
|
-
"location":"uri",
|
1243
|
-
"locationName":"datasetName"
|
1244
|
-
}
|
1245
|
-
}
|
1246
|
-
},
|
1247
|
-
"DescribeDatasetResponse":{
|
1248
|
-
"type":"structure",
|
1249
|
-
"members":{
|
1250
|
-
"dataset":{"shape":"Dataset"}
|
1251
|
-
}
|
1252
|
-
},
|
1253
|
-
"DescribeDatastoreRequest":{
|
1254
|
-
"type":"structure",
|
1255
|
-
"required":["datastoreName"],
|
1256
|
-
"members":{
|
1257
|
-
"datastoreName":{
|
1258
|
-
"shape":"DatastoreName",
|
1259
|
-
"location":"uri",
|
1260
|
-
"locationName":"datastoreName"
|
1261
|
-
},
|
1262
|
-
"includeStatistics":{
|
1263
|
-
"shape":"IncludeStatisticsFlag",
|
1264
|
-
"location":"querystring",
|
1265
|
-
"locationName":"includeStatistics"
|
1266
|
-
}
|
1267
|
-
}
|
1268
|
-
},
|
1269
|
-
"DescribeDatastoreResponse":{
|
1270
|
-
"type":"structure",
|
1271
|
-
"members":{
|
1272
|
-
"datastore":{"shape":"Datastore"},
|
1273
|
-
"statistics":{"shape":"DatastoreStatistics"}
|
1274
|
-
}
|
1275
|
-
},
|
1276
|
-
"DescribeLoggingOptionsRequest":{
|
1277
|
-
"type":"structure",
|
1278
|
-
"members":{
|
1279
|
-
}
|
1280
|
-
},
|
1281
|
-
"DescribeLoggingOptionsResponse":{
|
1282
|
-
"type":"structure",
|
1283
|
-
"members":{
|
1284
|
-
"loggingOptions":{"shape":"LoggingOptions"}
|
1285
|
-
}
|
1286
|
-
},
|
1287
|
-
"DescribePipelineRequest":{
|
1288
|
-
"type":"structure",
|
1289
|
-
"required":["pipelineName"],
|
1290
|
-
"members":{
|
1291
|
-
"pipelineName":{
|
1292
|
-
"shape":"PipelineName",
|
1293
|
-
"location":"uri",
|
1294
|
-
"locationName":"pipelineName"
|
1295
|
-
}
|
1296
|
-
}
|
1297
|
-
},
|
1298
|
-
"DescribePipelineResponse":{
|
1299
|
-
"type":"structure",
|
1300
|
-
"members":{
|
1301
|
-
"pipeline":{"shape":"Pipeline"}
|
1302
|
-
}
|
1303
|
-
},
|
1304
|
-
"DeviceRegistryEnrichActivity":{
|
1305
|
-
"type":"structure",
|
1306
|
-
"required":[
|
1307
|
-
"name",
|
1308
|
-
"attribute",
|
1309
|
-
"thingName",
|
1310
|
-
"roleArn"
|
1311
|
-
],
|
1312
|
-
"members":{
|
1313
|
-
"name":{"shape":"ActivityName"},
|
1314
|
-
"attribute":{"shape":"AttributeName"},
|
1315
|
-
"thingName":{"shape":"AttributeName"},
|
1316
|
-
"roleArn":{"shape":"RoleArn"},
|
1317
|
-
"next":{"shape":"ActivityName"}
|
1318
|
-
}
|
1319
|
-
},
|
1320
|
-
"DeviceShadowEnrichActivity":{
|
1321
|
-
"type":"structure",
|
1322
|
-
"required":[
|
1323
|
-
"name",
|
1324
|
-
"attribute",
|
1325
|
-
"thingName",
|
1326
|
-
"roleArn"
|
1327
|
-
],
|
1328
|
-
"members":{
|
1329
|
-
"name":{"shape":"ActivityName"},
|
1330
|
-
"attribute":{"shape":"AttributeName"},
|
1331
|
-
"thingName":{"shape":"AttributeName"},
|
1332
|
-
"roleArn":{"shape":"RoleArn"},
|
1333
|
-
"next":{"shape":"ActivityName"}
|
1334
|
-
}
|
1335
|
-
},
|
1336
|
-
"DoubleValue":{"type":"double"},
|
1337
|
-
"EndTime":{"type":"timestamp"},
|
1338
|
-
"EntryName":{"type":"string"},
|
1339
|
-
"ErrorCode":{"type":"string"},
|
1340
|
-
"ErrorMessage":{"type":"string"},
|
1341
|
-
"EstimatedResourceSize":{
|
1342
|
-
"type":"structure",
|
1343
|
-
"members":{
|
1344
|
-
"estimatedSizeInBytes":{"shape":"SizeInBytes"},
|
1345
|
-
"estimatedOn":{"shape":"Timestamp"}
|
1346
|
-
}
|
1347
|
-
},
|
1348
|
-
"FilterActivity":{
|
1349
|
-
"type":"structure",
|
1350
|
-
"required":[
|
1351
|
-
"name",
|
1352
|
-
"filter"
|
1353
|
-
],
|
1354
|
-
"members":{
|
1355
|
-
"name":{"shape":"ActivityName"},
|
1356
|
-
"filter":{"shape":"FilterExpression"},
|
1357
|
-
"next":{"shape":"ActivityName"}
|
1358
|
-
}
|
1359
|
-
},
|
1360
|
-
"FilterExpression":{
|
1361
|
-
"type":"string",
|
1362
|
-
"max":256,
|
1363
|
-
"min":1
|
1364
|
-
},
|
1365
|
-
"GetDatasetContentRequest":{
|
1366
|
-
"type":"structure",
|
1367
|
-
"required":["datasetName"],
|
1368
|
-
"members":{
|
1369
|
-
"datasetName":{
|
1370
|
-
"shape":"DatasetName",
|
1371
|
-
"location":"uri",
|
1372
|
-
"locationName":"datasetName"
|
1373
|
-
},
|
1374
|
-
"versionId":{
|
1375
|
-
"shape":"DatasetContentVersion",
|
1376
|
-
"location":"querystring",
|
1377
|
-
"locationName":"versionId"
|
1378
|
-
}
|
1379
|
-
}
|
1380
|
-
},
|
1381
|
-
"GetDatasetContentResponse":{
|
1382
|
-
"type":"structure",
|
1383
|
-
"members":{
|
1384
|
-
"entries":{"shape":"DatasetEntries"},
|
1385
|
-
"timestamp":{"shape":"Timestamp"},
|
1386
|
-
"status":{"shape":"DatasetContentStatus"}
|
1387
|
-
}
|
1388
|
-
},
|
1389
|
-
"GlueConfiguration":{
|
1390
|
-
"type":"structure",
|
1391
|
-
"required":[
|
1392
|
-
"tableName",
|
1393
|
-
"databaseName"
|
1394
|
-
],
|
1395
|
-
"members":{
|
1396
|
-
"tableName":{"shape":"GlueTableName"},
|
1397
|
-
"databaseName":{"shape":"GlueDatabaseName"}
|
1398
|
-
}
|
1399
|
-
},
|
1400
|
-
"GlueDatabaseName":{
|
1401
|
-
"type":"string",
|
1402
|
-
"max":150,
|
1403
|
-
"min":1,
|
1404
|
-
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
|
1405
|
-
},
|
1406
|
-
"GlueTableName":{
|
1407
|
-
"type":"string",
|
1408
|
-
"max":150,
|
1409
|
-
"min":1,
|
1410
|
-
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
|
1411
|
-
},
|
1412
|
-
"Image":{
|
1413
|
-
"type":"string",
|
1414
|
-
"max":255
|
1415
|
-
},
|
1416
|
-
"IncludeStatisticsFlag":{"type":"boolean"},
|
1417
|
-
"InternalFailureException":{
|
1418
|
-
"type":"structure",
|
1419
|
-
"members":{
|
1420
|
-
"message":{"shape":"errorMessage"}
|
1421
|
-
},
|
1422
|
-
"error":{"httpStatusCode":500},
|
1423
|
-
"exception":true,
|
1424
|
-
"fault":true
|
1425
|
-
},
|
1426
|
-
"InvalidRequestException":{
|
1427
|
-
"type":"structure",
|
1428
|
-
"members":{
|
1429
|
-
"message":{"shape":"errorMessage"}
|
1430
|
-
},
|
1431
|
-
"error":{"httpStatusCode":400},
|
1432
|
-
"exception":true
|
1433
|
-
},
|
1434
|
-
"IotEventsDestinationConfiguration":{
|
1435
|
-
"type":"structure",
|
1436
|
-
"required":[
|
1437
|
-
"inputName",
|
1438
|
-
"roleArn"
|
1439
|
-
],
|
1440
|
-
"members":{
|
1441
|
-
"inputName":{"shape":"IotEventsInputName"},
|
1442
|
-
"roleArn":{"shape":"RoleArn"}
|
1443
|
-
}
|
1444
|
-
},
|
1445
|
-
"IotEventsInputName":{
|
1446
|
-
"type":"string",
|
1447
|
-
"max":128,
|
1448
|
-
"min":1,
|
1449
|
-
"pattern":"^[a-zA-Z][a-zA-Z0-9_]*$"
|
1450
|
-
},
|
1451
|
-
"LambdaActivity":{
|
1452
|
-
"type":"structure",
|
1453
|
-
"required":[
|
1454
|
-
"name",
|
1455
|
-
"lambdaName",
|
1456
|
-
"batchSize"
|
1457
|
-
],
|
1458
|
-
"members":{
|
1459
|
-
"name":{"shape":"ActivityName"},
|
1460
|
-
"lambdaName":{"shape":"LambdaName"},
|
1461
|
-
"batchSize":{"shape":"ActivityBatchSize"},
|
1462
|
-
"next":{"shape":"ActivityName"}
|
1463
|
-
}
|
1464
|
-
},
|
1465
|
-
"LambdaName":{
|
1466
|
-
"type":"string",
|
1467
|
-
"max":64,
|
1468
|
-
"min":1,
|
1469
|
-
"pattern":"^[a-zA-Z0-9_-]+$"
|
1470
|
-
},
|
1471
|
-
"LimitExceededException":{
|
1472
|
-
"type":"structure",
|
1473
|
-
"members":{
|
1474
|
-
"message":{"shape":"errorMessage"}
|
1475
|
-
},
|
1476
|
-
"error":{"httpStatusCode":410},
|
1477
|
-
"exception":true
|
1478
|
-
},
|
1479
|
-
"ListChannelsRequest":{
|
1480
|
-
"type":"structure",
|
1481
|
-
"members":{
|
1482
|
-
"nextToken":{
|
1483
|
-
"shape":"NextToken",
|
1484
|
-
"location":"querystring",
|
1485
|
-
"locationName":"nextToken"
|
1486
|
-
},
|
1487
|
-
"maxResults":{
|
1488
|
-
"shape":"MaxResults",
|
1489
|
-
"location":"querystring",
|
1490
|
-
"locationName":"maxResults"
|
1491
|
-
}
|
1492
|
-
}
|
1493
|
-
},
|
1494
|
-
"ListChannelsResponse":{
|
1495
|
-
"type":"structure",
|
1496
|
-
"members":{
|
1497
|
-
"channelSummaries":{"shape":"ChannelSummaries"},
|
1498
|
-
"nextToken":{"shape":"NextToken"}
|
1499
|
-
}
|
1500
|
-
},
|
1501
|
-
"ListDatasetContentsRequest":{
|
1502
|
-
"type":"structure",
|
1503
|
-
"required":["datasetName"],
|
1504
|
-
"members":{
|
1505
|
-
"datasetName":{
|
1506
|
-
"shape":"DatasetName",
|
1507
|
-
"location":"uri",
|
1508
|
-
"locationName":"datasetName"
|
1509
|
-
},
|
1510
|
-
"nextToken":{
|
1511
|
-
"shape":"NextToken",
|
1512
|
-
"location":"querystring",
|
1513
|
-
"locationName":"nextToken"
|
1514
|
-
},
|
1515
|
-
"maxResults":{
|
1516
|
-
"shape":"MaxResults",
|
1517
|
-
"location":"querystring",
|
1518
|
-
"locationName":"maxResults"
|
1519
|
-
},
|
1520
|
-
"scheduledOnOrAfter":{
|
1521
|
-
"shape":"Timestamp",
|
1522
|
-
"location":"querystring",
|
1523
|
-
"locationName":"scheduledOnOrAfter"
|
1524
|
-
},
|
1525
|
-
"scheduledBefore":{
|
1526
|
-
"shape":"Timestamp",
|
1527
|
-
"location":"querystring",
|
1528
|
-
"locationName":"scheduledBefore"
|
1529
|
-
}
|
1530
|
-
}
|
1531
|
-
},
|
1532
|
-
"ListDatasetContentsResponse":{
|
1533
|
-
"type":"structure",
|
1534
|
-
"members":{
|
1535
|
-
"datasetContentSummaries":{"shape":"DatasetContentSummaries"},
|
1536
|
-
"nextToken":{"shape":"NextToken"}
|
1537
|
-
}
|
1538
|
-
},
|
1539
|
-
"ListDatasetsRequest":{
|
1540
|
-
"type":"structure",
|
1541
|
-
"members":{
|
1542
|
-
"nextToken":{
|
1543
|
-
"shape":"NextToken",
|
1544
|
-
"location":"querystring",
|
1545
|
-
"locationName":"nextToken"
|
1546
|
-
},
|
1547
|
-
"maxResults":{
|
1548
|
-
"shape":"MaxResults",
|
1549
|
-
"location":"querystring",
|
1550
|
-
"locationName":"maxResults"
|
1551
|
-
}
|
1552
|
-
}
|
1553
|
-
},
|
1554
|
-
"ListDatasetsResponse":{
|
1555
|
-
"type":"structure",
|
1556
|
-
"members":{
|
1557
|
-
"datasetSummaries":{"shape":"DatasetSummaries"},
|
1558
|
-
"nextToken":{"shape":"NextToken"}
|
1559
|
-
}
|
1560
|
-
},
|
1561
|
-
"ListDatastoresRequest":{
|
1562
|
-
"type":"structure",
|
1563
|
-
"members":{
|
1564
|
-
"nextToken":{
|
1565
|
-
"shape":"NextToken",
|
1566
|
-
"location":"querystring",
|
1567
|
-
"locationName":"nextToken"
|
1568
|
-
},
|
1569
|
-
"maxResults":{
|
1570
|
-
"shape":"MaxResults",
|
1571
|
-
"location":"querystring",
|
1572
|
-
"locationName":"maxResults"
|
1573
|
-
}
|
1574
|
-
}
|
1575
|
-
},
|
1576
|
-
"ListDatastoresResponse":{
|
1577
|
-
"type":"structure",
|
1578
|
-
"members":{
|
1579
|
-
"datastoreSummaries":{"shape":"DatastoreSummaries"},
|
1580
|
-
"nextToken":{"shape":"NextToken"}
|
1581
|
-
}
|
1582
|
-
},
|
1583
|
-
"ListPipelinesRequest":{
|
1584
|
-
"type":"structure",
|
1585
|
-
"members":{
|
1586
|
-
"nextToken":{
|
1587
|
-
"shape":"NextToken",
|
1588
|
-
"location":"querystring",
|
1589
|
-
"locationName":"nextToken"
|
1590
|
-
},
|
1591
|
-
"maxResults":{
|
1592
|
-
"shape":"MaxResults",
|
1593
|
-
"location":"querystring",
|
1594
|
-
"locationName":"maxResults"
|
1595
|
-
}
|
1596
|
-
}
|
1597
|
-
},
|
1598
|
-
"ListPipelinesResponse":{
|
1599
|
-
"type":"structure",
|
1600
|
-
"members":{
|
1601
|
-
"pipelineSummaries":{"shape":"PipelineSummaries"},
|
1602
|
-
"nextToken":{"shape":"NextToken"}
|
1603
|
-
}
|
1604
|
-
},
|
1605
|
-
"ListTagsForResourceRequest":{
|
1606
|
-
"type":"structure",
|
1607
|
-
"required":["resourceArn"],
|
1608
|
-
"members":{
|
1609
|
-
"resourceArn":{
|
1610
|
-
"shape":"ResourceArn",
|
1611
|
-
"location":"querystring",
|
1612
|
-
"locationName":"resourceArn"
|
1613
|
-
}
|
1614
|
-
}
|
1615
|
-
},
|
1616
|
-
"ListTagsForResourceResponse":{
|
1617
|
-
"type":"structure",
|
1618
|
-
"members":{
|
1619
|
-
"tags":{"shape":"TagList"}
|
1620
|
-
}
|
1621
|
-
},
|
1622
|
-
"LogResult":{"type":"string"},
|
1623
|
-
"LoggingEnabled":{"type":"boolean"},
|
1624
|
-
"LoggingLevel":{
|
1625
|
-
"type":"string",
|
1626
|
-
"enum":["ERROR"]
|
1627
|
-
},
|
1628
|
-
"LoggingOptions":{
|
1629
|
-
"type":"structure",
|
1630
|
-
"required":[
|
1631
|
-
"roleArn",
|
1632
|
-
"level",
|
1633
|
-
"enabled"
|
1634
|
-
],
|
1635
|
-
"members":{
|
1636
|
-
"roleArn":{"shape":"RoleArn"},
|
1637
|
-
"level":{"shape":"LoggingLevel"},
|
1638
|
-
"enabled":{"shape":"LoggingEnabled"}
|
1639
|
-
}
|
1640
|
-
},
|
1641
|
-
"MathActivity":{
|
1642
|
-
"type":"structure",
|
1643
|
-
"required":[
|
1644
|
-
"name",
|
1645
|
-
"attribute",
|
1646
|
-
"math"
|
1647
|
-
],
|
1648
|
-
"members":{
|
1649
|
-
"name":{"shape":"ActivityName"},
|
1650
|
-
"attribute":{"shape":"AttributeName"},
|
1651
|
-
"math":{"shape":"MathExpression"},
|
1652
|
-
"next":{"shape":"ActivityName"}
|
1653
|
-
}
|
1654
|
-
},
|
1655
|
-
"MathExpression":{
|
1656
|
-
"type":"string",
|
1657
|
-
"max":256,
|
1658
|
-
"min":1
|
1659
|
-
},
|
1660
|
-
"MaxMessages":{
|
1661
|
-
"type":"integer",
|
1662
|
-
"max":10,
|
1663
|
-
"min":1
|
1664
|
-
},
|
1665
|
-
"MaxResults":{
|
1666
|
-
"type":"integer",
|
1667
|
-
"max":250,
|
1668
|
-
"min":1
|
1669
|
-
},
|
1670
|
-
"MaxVersions":{
|
1671
|
-
"type":"integer",
|
1672
|
-
"max":1000,
|
1673
|
-
"min":1
|
1674
|
-
},
|
1675
|
-
"Message":{
|
1676
|
-
"type":"structure",
|
1677
|
-
"required":[
|
1678
|
-
"messageId",
|
1679
|
-
"payload"
|
1680
|
-
],
|
1681
|
-
"members":{
|
1682
|
-
"messageId":{"shape":"MessageId"},
|
1683
|
-
"payload":{"shape":"MessagePayload"}
|
1684
|
-
}
|
1685
|
-
},
|
1686
|
-
"MessageId":{
|
1687
|
-
"type":"string",
|
1688
|
-
"max":128,
|
1689
|
-
"min":1
|
1690
|
-
},
|
1691
|
-
"MessagePayload":{"type":"blob"},
|
1692
|
-
"MessagePayloads":{
|
1693
|
-
"type":"list",
|
1694
|
-
"member":{"shape":"MessagePayload"},
|
1695
|
-
"max":10,
|
1696
|
-
"min":1
|
1697
|
-
},
|
1698
|
-
"Messages":{
|
1699
|
-
"type":"list",
|
1700
|
-
"member":{"shape":"Message"}
|
1701
|
-
},
|
1702
|
-
"NextToken":{"type":"string"},
|
1703
|
-
"OffsetSeconds":{"type":"integer"},
|
1704
|
-
"OutputFileName":{
|
1705
|
-
"type":"string",
|
1706
|
-
"pattern":"[\\w\\.-]{1,255}"
|
1707
|
-
},
|
1708
|
-
"OutputFileUriValue":{
|
1709
|
-
"type":"structure",
|
1710
|
-
"required":["fileName"],
|
1711
|
-
"members":{
|
1712
|
-
"fileName":{"shape":"OutputFileName"}
|
1713
|
-
}
|
1714
|
-
},
|
1715
|
-
"Pipeline":{
|
1716
|
-
"type":"structure",
|
1717
|
-
"members":{
|
1718
|
-
"name":{"shape":"PipelineName"},
|
1719
|
-
"arn":{"shape":"PipelineArn"},
|
1720
|
-
"activities":{"shape":"PipelineActivities"},
|
1721
|
-
"reprocessingSummaries":{"shape":"ReprocessingSummaries"},
|
1722
|
-
"creationTime":{"shape":"Timestamp"},
|
1723
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
1724
|
-
}
|
1725
|
-
},
|
1726
|
-
"PipelineActivities":{
|
1727
|
-
"type":"list",
|
1728
|
-
"member":{"shape":"PipelineActivity"},
|
1729
|
-
"max":25,
|
1730
|
-
"min":1
|
1731
|
-
},
|
1732
|
-
"PipelineActivity":{
|
1733
|
-
"type":"structure",
|
1734
|
-
"members":{
|
1735
|
-
"channel":{"shape":"ChannelActivity"},
|
1736
|
-
"lambda":{"shape":"LambdaActivity"},
|
1737
|
-
"datastore":{"shape":"DatastoreActivity"},
|
1738
|
-
"addAttributes":{"shape":"AddAttributesActivity"},
|
1739
|
-
"removeAttributes":{"shape":"RemoveAttributesActivity"},
|
1740
|
-
"selectAttributes":{"shape":"SelectAttributesActivity"},
|
1741
|
-
"filter":{"shape":"FilterActivity"},
|
1742
|
-
"math":{"shape":"MathActivity"},
|
1743
|
-
"deviceRegistryEnrich":{"shape":"DeviceRegistryEnrichActivity"},
|
1744
|
-
"deviceShadowEnrich":{"shape":"DeviceShadowEnrichActivity"}
|
1745
|
-
}
|
1746
|
-
},
|
1747
|
-
"PipelineArn":{"type":"string"},
|
1748
|
-
"PipelineName":{
|
1749
|
-
"type":"string",
|
1750
|
-
"max":128,
|
1751
|
-
"min":1,
|
1752
|
-
"pattern":"^[a-zA-Z0-9_]+$"
|
1753
|
-
},
|
1754
|
-
"PipelineSummaries":{
|
1755
|
-
"type":"list",
|
1756
|
-
"member":{"shape":"PipelineSummary"}
|
1757
|
-
},
|
1758
|
-
"PipelineSummary":{
|
1759
|
-
"type":"structure",
|
1760
|
-
"members":{
|
1761
|
-
"pipelineName":{"shape":"PipelineName"},
|
1762
|
-
"reprocessingSummaries":{"shape":"ReprocessingSummaries"},
|
1763
|
-
"creationTime":{"shape":"Timestamp"},
|
1764
|
-
"lastUpdateTime":{"shape":"Timestamp"}
|
1765
|
-
}
|
1766
|
-
},
|
1767
|
-
"PresignedURI":{"type":"string"},
|
1768
|
-
"PutLoggingOptionsRequest":{
|
1769
|
-
"type":"structure",
|
1770
|
-
"required":["loggingOptions"],
|
1771
|
-
"members":{
|
1772
|
-
"loggingOptions":{"shape":"LoggingOptions"}
|
1773
|
-
}
|
1774
|
-
},
|
1775
|
-
"QueryFilter":{
|
1776
|
-
"type":"structure",
|
1777
|
-
"members":{
|
1778
|
-
"deltaTime":{"shape":"DeltaTime"}
|
1779
|
-
}
|
1780
|
-
},
|
1781
|
-
"QueryFilters":{
|
1782
|
-
"type":"list",
|
1783
|
-
"member":{"shape":"QueryFilter"},
|
1784
|
-
"max":1,
|
1785
|
-
"min":0
|
1786
|
-
},
|
1787
|
-
"Reason":{"type":"string"},
|
1788
|
-
"RemoveAttributesActivity":{
|
1789
|
-
"type":"structure",
|
1790
|
-
"required":[
|
1791
|
-
"name",
|
1792
|
-
"attributes"
|
1793
|
-
],
|
1794
|
-
"members":{
|
1795
|
-
"name":{"shape":"ActivityName"},
|
1796
|
-
"attributes":{"shape":"AttributeNames"},
|
1797
|
-
"next":{"shape":"ActivityName"}
|
1798
|
-
}
|
1799
|
-
},
|
1800
|
-
"ReprocessingId":{"type":"string"},
|
1801
|
-
"ReprocessingStatus":{
|
1802
|
-
"type":"string",
|
1803
|
-
"enum":[
|
1804
|
-
"RUNNING",
|
1805
|
-
"SUCCEEDED",
|
1806
|
-
"CANCELLED",
|
1807
|
-
"FAILED"
|
1808
|
-
]
|
1809
|
-
},
|
1810
|
-
"ReprocessingSummaries":{
|
1811
|
-
"type":"list",
|
1812
|
-
"member":{"shape":"ReprocessingSummary"}
|
1813
|
-
},
|
1814
|
-
"ReprocessingSummary":{
|
1815
|
-
"type":"structure",
|
1816
|
-
"members":{
|
1817
|
-
"id":{"shape":"ReprocessingId"},
|
1818
|
-
"status":{"shape":"ReprocessingStatus"},
|
1819
|
-
"creationTime":{"shape":"Timestamp"}
|
1820
|
-
}
|
1821
|
-
},
|
1822
|
-
"ResourceAlreadyExistsException":{
|
1823
|
-
"type":"structure",
|
1824
|
-
"members":{
|
1825
|
-
"message":{"shape":"errorMessage"},
|
1826
|
-
"resourceId":{"shape":"resourceId"},
|
1827
|
-
"resourceArn":{"shape":"resourceArn"}
|
1828
|
-
},
|
1829
|
-
"error":{"httpStatusCode":409},
|
1830
|
-
"exception":true
|
1831
|
-
},
|
1832
|
-
"ResourceArn":{
|
1833
|
-
"type":"string",
|
1834
|
-
"max":2048,
|
1835
|
-
"min":20
|
1836
|
-
},
|
1837
|
-
"ResourceConfiguration":{
|
1838
|
-
"type":"structure",
|
1839
|
-
"required":[
|
1840
|
-
"computeType",
|
1841
|
-
"volumeSizeInGB"
|
1842
|
-
],
|
1843
|
-
"members":{
|
1844
|
-
"computeType":{"shape":"ComputeType"},
|
1845
|
-
"volumeSizeInGB":{"shape":"VolumeSizeInGB"}
|
1846
|
-
}
|
1847
|
-
},
|
1848
|
-
"ResourceNotFoundException":{
|
1849
|
-
"type":"structure",
|
1850
|
-
"members":{
|
1851
|
-
"message":{"shape":"errorMessage"}
|
1852
|
-
},
|
1853
|
-
"error":{"httpStatusCode":404},
|
1854
|
-
"exception":true
|
1855
|
-
},
|
1856
|
-
"RetentionPeriod":{
|
1857
|
-
"type":"structure",
|
1858
|
-
"members":{
|
1859
|
-
"unlimited":{"shape":"UnlimitedRetentionPeriod"},
|
1860
|
-
"numberOfDays":{"shape":"RetentionPeriodInDays"}
|
1861
|
-
}
|
1862
|
-
},
|
1863
|
-
"RetentionPeriodInDays":{
|
1864
|
-
"type":"integer",
|
1865
|
-
"min":1
|
1866
|
-
},
|
1867
|
-
"RoleArn":{
|
1868
|
-
"type":"string",
|
1869
|
-
"max":2048,
|
1870
|
-
"min":20
|
1871
|
-
},
|
1872
|
-
"RunPipelineActivityRequest":{
|
1873
|
-
"type":"structure",
|
1874
|
-
"required":[
|
1875
|
-
"pipelineActivity",
|
1876
|
-
"payloads"
|
1877
|
-
],
|
1878
|
-
"members":{
|
1879
|
-
"pipelineActivity":{"shape":"PipelineActivity"},
|
1880
|
-
"payloads":{"shape":"MessagePayloads"}
|
1881
|
-
}
|
1882
|
-
},
|
1883
|
-
"RunPipelineActivityResponse":{
|
1884
|
-
"type":"structure",
|
1885
|
-
"members":{
|
1886
|
-
"payloads":{"shape":"MessagePayloads"},
|
1887
|
-
"logResult":{"shape":"LogResult"}
|
1888
|
-
}
|
1889
|
-
},
|
1890
|
-
"S3DestinationConfiguration":{
|
1891
|
-
"type":"structure",
|
1892
|
-
"required":[
|
1893
|
-
"bucket",
|
1894
|
-
"key",
|
1895
|
-
"roleArn"
|
1896
|
-
],
|
1897
|
-
"members":{
|
1898
|
-
"bucket":{"shape":"BucketName"},
|
1899
|
-
"key":{"shape":"BucketKeyExpression"},
|
1900
|
-
"glueConfiguration":{"shape":"GlueConfiguration"},
|
1901
|
-
"roleArn":{"shape":"RoleArn"}
|
1902
|
-
}
|
1903
|
-
},
|
1904
|
-
"S3KeyPrefix":{
|
1905
|
-
"type":"string",
|
1906
|
-
"max":255,
|
1907
|
-
"min":1,
|
1908
|
-
"pattern":"^[a-zA-Z0-9!_.*'()/{}:-]*/$"
|
1909
|
-
},
|
1910
|
-
"SampleChannelDataRequest":{
|
1911
|
-
"type":"structure",
|
1912
|
-
"required":["channelName"],
|
1913
|
-
"members":{
|
1914
|
-
"channelName":{
|
1915
|
-
"shape":"ChannelName",
|
1916
|
-
"location":"uri",
|
1917
|
-
"locationName":"channelName"
|
1918
|
-
},
|
1919
|
-
"maxMessages":{
|
1920
|
-
"shape":"MaxMessages",
|
1921
|
-
"location":"querystring",
|
1922
|
-
"locationName":"maxMessages"
|
1923
|
-
},
|
1924
|
-
"startTime":{
|
1925
|
-
"shape":"StartTime",
|
1926
|
-
"location":"querystring",
|
1927
|
-
"locationName":"startTime"
|
1928
|
-
},
|
1929
|
-
"endTime":{
|
1930
|
-
"shape":"EndTime",
|
1931
|
-
"location":"querystring",
|
1932
|
-
"locationName":"endTime"
|
1933
|
-
}
|
1934
|
-
}
|
1935
|
-
},
|
1936
|
-
"SampleChannelDataResponse":{
|
1937
|
-
"type":"structure",
|
1938
|
-
"members":{
|
1939
|
-
"payloads":{"shape":"MessagePayloads"}
|
1940
|
-
}
|
1941
|
-
},
|
1942
|
-
"Schedule":{
|
1943
|
-
"type":"structure",
|
1944
|
-
"members":{
|
1945
|
-
"expression":{"shape":"ScheduleExpression"}
|
1946
|
-
}
|
1947
|
-
},
|
1948
|
-
"ScheduleExpression":{"type":"string"},
|
1949
|
-
"SelectAttributesActivity":{
|
1950
|
-
"type":"structure",
|
1951
|
-
"required":[
|
1952
|
-
"name",
|
1953
|
-
"attributes"
|
1954
|
-
],
|
1955
|
-
"members":{
|
1956
|
-
"name":{"shape":"ActivityName"},
|
1957
|
-
"attributes":{"shape":"AttributeNames"},
|
1958
|
-
"next":{"shape":"ActivityName"}
|
1959
|
-
}
|
1960
|
-
},
|
1961
|
-
"ServiceManagedChannelS3Storage":{
|
1962
|
-
"type":"structure",
|
1963
|
-
"members":{
|
1964
|
-
}
|
1965
|
-
},
|
1966
|
-
"ServiceManagedChannelS3StorageSummary":{
|
1967
|
-
"type":"structure",
|
1968
|
-
"members":{
|
1969
|
-
}
|
1970
|
-
},
|
1971
|
-
"ServiceManagedDatastoreS3Storage":{
|
1972
|
-
"type":"structure",
|
1973
|
-
"members":{
|
1974
|
-
}
|
1975
|
-
},
|
1976
|
-
"ServiceManagedDatastoreS3StorageSummary":{
|
1977
|
-
"type":"structure",
|
1978
|
-
"members":{
|
1979
|
-
}
|
1980
|
-
},
|
1981
|
-
"ServiceUnavailableException":{
|
1982
|
-
"type":"structure",
|
1983
|
-
"members":{
|
1984
|
-
"message":{"shape":"errorMessage"}
|
1985
|
-
},
|
1986
|
-
"error":{"httpStatusCode":503},
|
1987
|
-
"exception":true,
|
1988
|
-
"fault":true
|
1989
|
-
},
|
1990
|
-
"SizeInBytes":{"type":"double"},
|
1991
|
-
"SqlQuery":{"type":"string"},
|
1992
|
-
"SqlQueryDatasetAction":{
|
1993
|
-
"type":"structure",
|
1994
|
-
"required":["sqlQuery"],
|
1995
|
-
"members":{
|
1996
|
-
"sqlQuery":{"shape":"SqlQuery"},
|
1997
|
-
"filters":{"shape":"QueryFilters"}
|
1998
|
-
}
|
1999
|
-
},
|
2000
|
-
"StartPipelineReprocessingRequest":{
|
2001
|
-
"type":"structure",
|
2002
|
-
"required":["pipelineName"],
|
2003
|
-
"members":{
|
2004
|
-
"pipelineName":{
|
2005
|
-
"shape":"PipelineName",
|
2006
|
-
"location":"uri",
|
2007
|
-
"locationName":"pipelineName"
|
2008
|
-
},
|
2009
|
-
"startTime":{"shape":"StartTime"},
|
2010
|
-
"endTime":{"shape":"EndTime"}
|
2011
|
-
}
|
2012
|
-
},
|
2013
|
-
"StartPipelineReprocessingResponse":{
|
2014
|
-
"type":"structure",
|
2015
|
-
"members":{
|
2016
|
-
"reprocessingId":{"shape":"ReprocessingId"}
|
2017
|
-
}
|
2018
|
-
},
|
2019
|
-
"StartTime":{"type":"timestamp"},
|
2020
|
-
"StringValue":{
|
2021
|
-
"type":"string",
|
2022
|
-
"max":1024,
|
2023
|
-
"min":0
|
2024
|
-
},
|
2025
|
-
"Tag":{
|
2026
|
-
"type":"structure",
|
2027
|
-
"required":[
|
2028
|
-
"key",
|
2029
|
-
"value"
|
2030
|
-
],
|
2031
|
-
"members":{
|
2032
|
-
"key":{"shape":"TagKey"},
|
2033
|
-
"value":{"shape":"TagValue"}
|
2034
|
-
}
|
2035
|
-
},
|
2036
|
-
"TagKey":{
|
2037
|
-
"type":"string",
|
2038
|
-
"max":256,
|
2039
|
-
"min":1
|
2040
|
-
},
|
2041
|
-
"TagKeyList":{
|
2042
|
-
"type":"list",
|
2043
|
-
"member":{"shape":"TagKey"},
|
2044
|
-
"max":50,
|
2045
|
-
"min":1
|
2046
|
-
},
|
2047
|
-
"TagList":{
|
2048
|
-
"type":"list",
|
2049
|
-
"member":{"shape":"Tag"},
|
2050
|
-
"max":50,
|
2051
|
-
"min":1
|
2052
|
-
},
|
2053
|
-
"TagResourceRequest":{
|
2054
|
-
"type":"structure",
|
2055
|
-
"required":[
|
2056
|
-
"resourceArn",
|
2057
|
-
"tags"
|
2058
|
-
],
|
2059
|
-
"members":{
|
2060
|
-
"resourceArn":{
|
2061
|
-
"shape":"ResourceArn",
|
2062
|
-
"location":"querystring",
|
2063
|
-
"locationName":"resourceArn"
|
2064
|
-
},
|
2065
|
-
"tags":{"shape":"TagList"}
|
2066
|
-
}
|
2067
|
-
},
|
2068
|
-
"TagResourceResponse":{
|
2069
|
-
"type":"structure",
|
2070
|
-
"members":{
|
2071
|
-
}
|
2072
|
-
},
|
2073
|
-
"TagValue":{
|
2074
|
-
"type":"string",
|
2075
|
-
"max":256,
|
2076
|
-
"min":1
|
2077
|
-
},
|
2078
|
-
"ThrottlingException":{
|
2079
|
-
"type":"structure",
|
2080
|
-
"members":{
|
2081
|
-
"message":{"shape":"errorMessage"}
|
2082
|
-
},
|
2083
|
-
"error":{"httpStatusCode":429},
|
2084
|
-
"exception":true
|
2085
|
-
},
|
2086
|
-
"TimeExpression":{"type":"string"},
|
2087
|
-
"Timestamp":{"type":"timestamp"},
|
2088
|
-
"TriggeringDataset":{
|
2089
|
-
"type":"structure",
|
2090
|
-
"required":["name"],
|
2091
|
-
"members":{
|
2092
|
-
"name":{"shape":"DatasetName"}
|
2093
|
-
}
|
2094
|
-
},
|
2095
|
-
"UnlimitedRetentionPeriod":{"type":"boolean"},
|
2096
|
-
"UnlimitedVersioning":{"type":"boolean"},
|
2097
|
-
"UntagResourceRequest":{
|
2098
|
-
"type":"structure",
|
2099
|
-
"required":[
|
2100
|
-
"resourceArn",
|
2101
|
-
"tagKeys"
|
2102
|
-
],
|
2103
|
-
"members":{
|
2104
|
-
"resourceArn":{
|
2105
|
-
"shape":"ResourceArn",
|
2106
|
-
"location":"querystring",
|
2107
|
-
"locationName":"resourceArn"
|
2108
|
-
},
|
2109
|
-
"tagKeys":{
|
2110
|
-
"shape":"TagKeyList",
|
2111
|
-
"location":"querystring",
|
2112
|
-
"locationName":"tagKeys"
|
2113
|
-
}
|
2114
|
-
}
|
2115
|
-
},
|
2116
|
-
"UntagResourceResponse":{
|
2117
|
-
"type":"structure",
|
2118
|
-
"members":{
|
2119
|
-
}
|
2120
|
-
},
|
2121
|
-
"UpdateChannelRequest":{
|
2122
|
-
"type":"structure",
|
2123
|
-
"required":["channelName"],
|
2124
|
-
"members":{
|
2125
|
-
"channelName":{
|
2126
|
-
"shape":"ChannelName",
|
2127
|
-
"location":"uri",
|
2128
|
-
"locationName":"channelName"
|
2129
|
-
},
|
2130
|
-
"channelStorage":{"shape":"ChannelStorage"},
|
2131
|
-
"retentionPeriod":{"shape":"RetentionPeriod"}
|
2132
|
-
}
|
2133
|
-
},
|
2134
|
-
"UpdateDatasetRequest":{
|
2135
|
-
"type":"structure",
|
2136
|
-
"required":[
|
2137
|
-
"datasetName",
|
2138
|
-
"actions"
|
2139
|
-
],
|
2140
|
-
"members":{
|
2141
|
-
"datasetName":{
|
2142
|
-
"shape":"DatasetName",
|
2143
|
-
"location":"uri",
|
2144
|
-
"locationName":"datasetName"
|
2145
|
-
},
|
2146
|
-
"actions":{"shape":"DatasetActions"},
|
2147
|
-
"triggers":{"shape":"DatasetTriggers"},
|
2148
|
-
"contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
|
2149
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
2150
|
-
"versioningConfiguration":{"shape":"VersioningConfiguration"}
|
2151
|
-
}
|
2152
|
-
},
|
2153
|
-
"UpdateDatastoreRequest":{
|
2154
|
-
"type":"structure",
|
2155
|
-
"required":["datastoreName"],
|
2156
|
-
"members":{
|
2157
|
-
"datastoreName":{
|
2158
|
-
"shape":"DatastoreName",
|
2159
|
-
"location":"uri",
|
2160
|
-
"locationName":"datastoreName"
|
2161
|
-
},
|
2162
|
-
"retentionPeriod":{"shape":"RetentionPeriod"},
|
2163
|
-
"datastoreStorage":{"shape":"DatastoreStorage"}
|
2164
|
-
}
|
2165
|
-
},
|
2166
|
-
"UpdatePipelineRequest":{
|
2167
|
-
"type":"structure",
|
2168
|
-
"required":[
|
2169
|
-
"pipelineName",
|
2170
|
-
"pipelineActivities"
|
2171
|
-
],
|
2172
|
-
"members":{
|
2173
|
-
"pipelineName":{
|
2174
|
-
"shape":"PipelineName",
|
2175
|
-
"location":"uri",
|
2176
|
-
"locationName":"pipelineName"
|
2177
|
-
},
|
2178
|
-
"pipelineActivities":{"shape":"PipelineActivities"}
|
2179
|
-
}
|
2180
|
-
},
|
2181
|
-
"Variable":{
|
2182
|
-
"type":"structure",
|
2183
|
-
"required":["name"],
|
2184
|
-
"members":{
|
2185
|
-
"name":{"shape":"VariableName"},
|
2186
|
-
"stringValue":{"shape":"StringValue"},
|
2187
|
-
"doubleValue":{
|
2188
|
-
"shape":"DoubleValue",
|
2189
|
-
"box":true
|
2190
|
-
},
|
2191
|
-
"datasetContentVersionValue":{"shape":"DatasetContentVersionValue"},
|
2192
|
-
"outputFileUriValue":{"shape":"OutputFileUriValue"}
|
2193
|
-
}
|
2194
|
-
},
|
2195
|
-
"VariableName":{
|
2196
|
-
"type":"string",
|
2197
|
-
"max":256,
|
2198
|
-
"min":1
|
2199
|
-
},
|
2200
|
-
"Variables":{
|
2201
|
-
"type":"list",
|
2202
|
-
"member":{"shape":"Variable"},
|
2203
|
-
"max":50,
|
2204
|
-
"min":0
|
2205
|
-
},
|
2206
|
-
"VersioningConfiguration":{
|
2207
|
-
"type":"structure",
|
2208
|
-
"members":{
|
2209
|
-
"unlimited":{"shape":"UnlimitedVersioning"},
|
2210
|
-
"maxVersions":{"shape":"MaxVersions"}
|
2211
|
-
}
|
2212
|
-
},
|
2213
|
-
"VolumeSizeInGB":{
|
2214
|
-
"type":"integer",
|
2215
|
-
"max":50,
|
2216
|
-
"min":1
|
2217
|
-
},
|
2218
|
-
"errorMessage":{"type":"string"},
|
2219
|
-
"resourceArn":{"type":"string"},
|
2220
|
-
"resourceId":{"type":"string"}
|
2221
|
-
}
|
2222
|
-
}
|