aws-sdk-core 2.11.440 → 3.85.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +88 -582
- data/lib/aws-sdk-core/arn.rb +77 -0
- data/lib/aws-sdk-core/arn_parser.rb +38 -0
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +0 -29
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
- data/lib/aws-sdk-core/errors.rb +146 -24
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +7 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +187 -15
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +2126 -0
- data/lib/aws-sdk-sts/client_api.rb +336 -0
- data/lib/aws-sdk-sts/customizations.rb +2 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
- data/lib/aws-sdk-sts/presigner.rb +67 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1504 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +246 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +6 -2
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +67 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +103 -1167
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
- data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -872
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -2374
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5384
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1391
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -1208
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2288
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -989
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2345
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -64
- data/apis/batch/2016-08-10/api-2.json +0 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1633
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -4653
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -59
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/smoke.json +0 -19
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
- data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
- data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1910
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -5383
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2664
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -924
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
- data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
- data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -4340
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -2139
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
- data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
- data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
- data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1451
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/detective/2018-10-26/api-2.json +0 -447
- data/apis/detective/2018-10-26/examples-1.json +0 -5
- data/apis/detective/2018-10-26/paginators-1.json +0 -19
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2074
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1369
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -687
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -3018
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -818
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ebs/2019-11-02/api-2.json +0 -277
- data/apis/ebs/2019-11-02/examples-1.json +0 -5
- data/apis/ebs/2019-11-02/paginators-1.json +0 -14
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -29133
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -474
- data/apis/ec2/2016-11-15/resources-1.json +0 -2688
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -640
- data/apis/ecr/2015-09-21/api-2.json +0 -1615
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecr/2015-09-21/waiters-2.json +0 -45
- data/apis/ecs/2014-11-13/api-2.json +0 -3150
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -52
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -1434
- data/apis/eks/2017-11-01/examples-1.json +0 -135
- data/apis/eks/2017-11-01/paginators-1.json +0 -28
- data/apis/eks/2017-11-01/waiters-2.json +0 -91
- data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1584
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1445
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -829
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1418
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -146
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
- data/apis/fsx/2018-03-01/api-2.json +0 -1340
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -19
- data/apis/gamelift/2015-10-01/api-2.json +0 -3695
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6302
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5124
- data/apis/groundstation/2019-05-23/api-2.json +0 -1409
- data/apis/groundstation/2019-05-23/examples-1.json +0 -5
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3508
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
- data/apis/health/2016-08-04/api-2.json +0 -836
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -52
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5797
- data/apis/iam/2010-05-08/examples-1.json +0 -1577
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/imagebuilder/2019-12-02/api-2.json +0 -2414
- data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
- data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -11061
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1144
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -2208
- data/apis/kafka/2018-11-14/paginators-1.json +0 -40
- data/apis/kendra/2019-02-03/api-2.json +0 -1738
- data/apis/kendra/2019-02-03/examples-1.json +0 -5
- data/apis/kendra/2019-02-03/paginators-1.json +0 -19
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
- data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
- data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -954
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
- data/apis/kms/2014-11-01/api-2.json +0 -2154
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2944
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -52
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -74
- data/apis/lex-models/2017-04-19/api-2.json +0 -2395
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -886
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -5017
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
- data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
- data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8695
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -10694
- data/apis/medialive/2017-10-14/paginators-1.json +0 -52
- data/apis/medialive/2017-10-14/waiters-2.json +0 -217
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -737
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -544
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
- data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
- data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1876
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2577
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3523
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
- data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
- data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2401
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/outposts/2019-12-03/api-2.json +0 -367
- data/apis/outposts/2019-12-03/examples-1.json +0 -5
- data/apis/outposts/2019-12-03/paginators-1.json +0 -14
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1863
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -64
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -5482
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
- data/apis/ram/2018-01-04/api-2.json +0 -1272
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -552
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -7646
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -164
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -5263
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -106
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2659
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
- data/apis/robomaker/2018-06-29/api-2.json +0 -2380
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6653
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1377
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -14
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
- data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
- data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
- data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -749
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/schemas/2019-12-02/api-2.json +0 -2700
- data/apis/schemas/2019-12-02/paginators-1.json +0 -34
- data/apis/schemas/2019-12-02/waiters-2.json +0 -36
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2757
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/sesv2/2019-09-27/api-2.json +0 -2433
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -955
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -9217
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
- data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
- data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
- data/apis/sso/2019-06-10/api-2.json +0 -281
- data/apis/sso/2019-06-10/examples-1.json +0 -5
- data/apis/sso/2019-06-10/paginators-1.json +0 -16
- data/apis/states/2016-11-23/api-2.json +0 -1476
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3260
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -598
- data/apis/sts/2011-06-15/examples-1.json +0 -271
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -653
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -740
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
- data/apis/transfer/2018-11-05/api-2.json +0 -964
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -658
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -14
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/wafv2/2019-07-29/api-2.json +0 -2418
- data/apis/wafv2/2019-07-29/examples-1.json +0 -5
- data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
- data/apis/wafv2/2019-07-29/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1704
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -2029
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5943
- data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -304
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/appconfig.rb +0 -6
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -6
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
- data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/codestarconnections.rb +0 -6
- data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/connectparticipant.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/dataexchange.rb +0 -5
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/detective.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ebs.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -7
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticinference.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/frauddetector.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/imagebuilder.rb +0 -6
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kendra.rb +0 -6
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/networkmanager.rb +0 -6
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/outposts.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -7
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/schemas.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/sesv2.rb +0 -6
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/sso.rb +0 -6
- data/lib/aws-sdk-core/ssooidc.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/wafv2.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -881
@@ -1,26 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"GetComplianceSummary": {
|
4
|
-
"input_token": "PaginationToken",
|
5
|
-
"limit_key": "MaxResults",
|
6
|
-
"output_token": "PaginationToken",
|
7
|
-
"result_key": "SummaryList"
|
8
|
-
},
|
9
|
-
"GetResources": {
|
10
|
-
"input_token": "PaginationToken",
|
11
|
-
"limit_key": "ResourcesPerPage",
|
12
|
-
"output_token": "PaginationToken",
|
13
|
-
"result_key": "ResourceTagMappingList"
|
14
|
-
},
|
15
|
-
"GetTagKeys": {
|
16
|
-
"input_token": "PaginationToken",
|
17
|
-
"output_token": "PaginationToken",
|
18
|
-
"result_key": "TagKeys"
|
19
|
-
},
|
20
|
-
"GetTagValues": {
|
21
|
-
"input_token": "PaginationToken",
|
22
|
-
"output_token": "PaginationToken",
|
23
|
-
"result_key": "TagValues"
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
@@ -1,2380 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2018-06-29",
|
5
|
-
"endpointPrefix":"robomaker",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceAbbreviation":"RoboMaker",
|
9
|
-
"serviceFullName":"AWS RoboMaker",
|
10
|
-
"serviceId":"RoboMaker",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"signingName":"robomaker",
|
13
|
-
"uid":"robomaker-2018-06-29"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"BatchDescribeSimulationJob":{
|
17
|
-
"name":"BatchDescribeSimulationJob",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/batchDescribeSimulationJob"
|
21
|
-
},
|
22
|
-
"input":{"shape":"BatchDescribeSimulationJobRequest"},
|
23
|
-
"output":{"shape":"BatchDescribeSimulationJobResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"ResourceNotFoundException"},
|
26
|
-
{"shape":"InvalidParameterException"},
|
27
|
-
{"shape":"InternalServerException"},
|
28
|
-
{"shape":"ThrottlingException"}
|
29
|
-
]
|
30
|
-
},
|
31
|
-
"CancelDeploymentJob":{
|
32
|
-
"name":"CancelDeploymentJob",
|
33
|
-
"http":{
|
34
|
-
"method":"POST",
|
35
|
-
"requestUri":"/cancelDeploymentJob"
|
36
|
-
},
|
37
|
-
"input":{"shape":"CancelDeploymentJobRequest"},
|
38
|
-
"output":{"shape":"CancelDeploymentJobResponse"},
|
39
|
-
"errors":[
|
40
|
-
{"shape":"ResourceNotFoundException"},
|
41
|
-
{"shape":"InvalidParameterException"},
|
42
|
-
{"shape":"InternalServerException"},
|
43
|
-
{"shape":"ThrottlingException"}
|
44
|
-
]
|
45
|
-
},
|
46
|
-
"CancelSimulationJob":{
|
47
|
-
"name":"CancelSimulationJob",
|
48
|
-
"http":{
|
49
|
-
"method":"POST",
|
50
|
-
"requestUri":"/cancelSimulationJob"
|
51
|
-
},
|
52
|
-
"input":{"shape":"CancelSimulationJobRequest"},
|
53
|
-
"output":{"shape":"CancelSimulationJobResponse"},
|
54
|
-
"errors":[
|
55
|
-
{"shape":"ResourceNotFoundException"},
|
56
|
-
{"shape":"InvalidParameterException"},
|
57
|
-
{"shape":"InternalServerException"},
|
58
|
-
{"shape":"ThrottlingException"}
|
59
|
-
]
|
60
|
-
},
|
61
|
-
"CancelSimulationJobBatch":{
|
62
|
-
"name":"CancelSimulationJobBatch",
|
63
|
-
"http":{
|
64
|
-
"method":"POST",
|
65
|
-
"requestUri":"/cancelSimulationJobBatch"
|
66
|
-
},
|
67
|
-
"input":{"shape":"CancelSimulationJobBatchRequest"},
|
68
|
-
"output":{"shape":"CancelSimulationJobBatchResponse"},
|
69
|
-
"errors":[
|
70
|
-
{"shape":"ResourceNotFoundException"},
|
71
|
-
{"shape":"InvalidParameterException"},
|
72
|
-
{"shape":"InternalServerException"},
|
73
|
-
{"shape":"ThrottlingException"}
|
74
|
-
]
|
75
|
-
},
|
76
|
-
"CreateDeploymentJob":{
|
77
|
-
"name":"CreateDeploymentJob",
|
78
|
-
"http":{
|
79
|
-
"method":"POST",
|
80
|
-
"requestUri":"/createDeploymentJob"
|
81
|
-
},
|
82
|
-
"input":{"shape":"CreateDeploymentJobRequest"},
|
83
|
-
"output":{"shape":"CreateDeploymentJobResponse"},
|
84
|
-
"errors":[
|
85
|
-
{"shape":"ResourceNotFoundException"},
|
86
|
-
{"shape":"InvalidParameterException"},
|
87
|
-
{"shape":"InternalServerException"},
|
88
|
-
{"shape":"ThrottlingException"},
|
89
|
-
{"shape":"LimitExceededException"},
|
90
|
-
{"shape":"ConcurrentDeploymentException"},
|
91
|
-
{"shape":"IdempotentParameterMismatchException"}
|
92
|
-
]
|
93
|
-
},
|
94
|
-
"CreateFleet":{
|
95
|
-
"name":"CreateFleet",
|
96
|
-
"http":{
|
97
|
-
"method":"POST",
|
98
|
-
"requestUri":"/createFleet"
|
99
|
-
},
|
100
|
-
"input":{"shape":"CreateFleetRequest"},
|
101
|
-
"output":{"shape":"CreateFleetResponse"},
|
102
|
-
"errors":[
|
103
|
-
{"shape":"InvalidParameterException"},
|
104
|
-
{"shape":"InternalServerException"},
|
105
|
-
{"shape":"ThrottlingException"},
|
106
|
-
{"shape":"LimitExceededException"}
|
107
|
-
]
|
108
|
-
},
|
109
|
-
"CreateRobot":{
|
110
|
-
"name":"CreateRobot",
|
111
|
-
"http":{
|
112
|
-
"method":"POST",
|
113
|
-
"requestUri":"/createRobot"
|
114
|
-
},
|
115
|
-
"input":{"shape":"CreateRobotRequest"},
|
116
|
-
"output":{"shape":"CreateRobotResponse"},
|
117
|
-
"errors":[
|
118
|
-
{"shape":"InvalidParameterException"},
|
119
|
-
{"shape":"InternalServerException"},
|
120
|
-
{"shape":"ThrottlingException"},
|
121
|
-
{"shape":"LimitExceededException"},
|
122
|
-
{"shape":"ResourceAlreadyExistsException"}
|
123
|
-
]
|
124
|
-
},
|
125
|
-
"CreateRobotApplication":{
|
126
|
-
"name":"CreateRobotApplication",
|
127
|
-
"http":{
|
128
|
-
"method":"POST",
|
129
|
-
"requestUri":"/createRobotApplication"
|
130
|
-
},
|
131
|
-
"input":{"shape":"CreateRobotApplicationRequest"},
|
132
|
-
"output":{"shape":"CreateRobotApplicationResponse"},
|
133
|
-
"errors":[
|
134
|
-
{"shape":"InvalidParameterException"},
|
135
|
-
{"shape":"ResourceAlreadyExistsException"},
|
136
|
-
{"shape":"LimitExceededException"},
|
137
|
-
{"shape":"ThrottlingException"},
|
138
|
-
{"shape":"InternalServerException"},
|
139
|
-
{"shape":"IdempotentParameterMismatchException"}
|
140
|
-
]
|
141
|
-
},
|
142
|
-
"CreateRobotApplicationVersion":{
|
143
|
-
"name":"CreateRobotApplicationVersion",
|
144
|
-
"http":{
|
145
|
-
"method":"POST",
|
146
|
-
"requestUri":"/createRobotApplicationVersion"
|
147
|
-
},
|
148
|
-
"input":{"shape":"CreateRobotApplicationVersionRequest"},
|
149
|
-
"output":{"shape":"CreateRobotApplicationVersionResponse"},
|
150
|
-
"errors":[
|
151
|
-
{"shape":"InvalidParameterException"},
|
152
|
-
{"shape":"IdempotentParameterMismatchException"},
|
153
|
-
{"shape":"LimitExceededException"},
|
154
|
-
{"shape":"ThrottlingException"},
|
155
|
-
{"shape":"InternalServerException"}
|
156
|
-
]
|
157
|
-
},
|
158
|
-
"CreateSimulationApplication":{
|
159
|
-
"name":"CreateSimulationApplication",
|
160
|
-
"http":{
|
161
|
-
"method":"POST",
|
162
|
-
"requestUri":"/createSimulationApplication"
|
163
|
-
},
|
164
|
-
"input":{"shape":"CreateSimulationApplicationRequest"},
|
165
|
-
"output":{"shape":"CreateSimulationApplicationResponse"},
|
166
|
-
"errors":[
|
167
|
-
{"shape":"InvalidParameterException"},
|
168
|
-
{"shape":"ResourceAlreadyExistsException"},
|
169
|
-
{"shape":"LimitExceededException"},
|
170
|
-
{"shape":"ThrottlingException"},
|
171
|
-
{"shape":"InternalServerException"},
|
172
|
-
{"shape":"IdempotentParameterMismatchException"}
|
173
|
-
]
|
174
|
-
},
|
175
|
-
"CreateSimulationApplicationVersion":{
|
176
|
-
"name":"CreateSimulationApplicationVersion",
|
177
|
-
"http":{
|
178
|
-
"method":"POST",
|
179
|
-
"requestUri":"/createSimulationApplicationVersion"
|
180
|
-
},
|
181
|
-
"input":{"shape":"CreateSimulationApplicationVersionRequest"},
|
182
|
-
"output":{"shape":"CreateSimulationApplicationVersionResponse"},
|
183
|
-
"errors":[
|
184
|
-
{"shape":"InvalidParameterException"},
|
185
|
-
{"shape":"IdempotentParameterMismatchException"},
|
186
|
-
{"shape":"LimitExceededException"},
|
187
|
-
{"shape":"ThrottlingException"},
|
188
|
-
{"shape":"InternalServerException"}
|
189
|
-
]
|
190
|
-
},
|
191
|
-
"CreateSimulationJob":{
|
192
|
-
"name":"CreateSimulationJob",
|
193
|
-
"http":{
|
194
|
-
"method":"POST",
|
195
|
-
"requestUri":"/createSimulationJob"
|
196
|
-
},
|
197
|
-
"input":{"shape":"CreateSimulationJobRequest"},
|
198
|
-
"output":{"shape":"CreateSimulationJobResponse"},
|
199
|
-
"errors":[
|
200
|
-
{"shape":"ResourceNotFoundException"},
|
201
|
-
{"shape":"InvalidParameterException"},
|
202
|
-
{"shape":"InternalServerException"},
|
203
|
-
{"shape":"ThrottlingException"},
|
204
|
-
{"shape":"LimitExceededException"},
|
205
|
-
{"shape":"IdempotentParameterMismatchException"},
|
206
|
-
{"shape":"ServiceUnavailableException"}
|
207
|
-
]
|
208
|
-
},
|
209
|
-
"DeleteFleet":{
|
210
|
-
"name":"DeleteFleet",
|
211
|
-
"http":{
|
212
|
-
"method":"POST",
|
213
|
-
"requestUri":"/deleteFleet"
|
214
|
-
},
|
215
|
-
"input":{"shape":"DeleteFleetRequest"},
|
216
|
-
"output":{"shape":"DeleteFleetResponse"},
|
217
|
-
"errors":[
|
218
|
-
{"shape":"InvalidParameterException"},
|
219
|
-
{"shape":"InternalServerException"},
|
220
|
-
{"shape":"ThrottlingException"}
|
221
|
-
]
|
222
|
-
},
|
223
|
-
"DeleteRobot":{
|
224
|
-
"name":"DeleteRobot",
|
225
|
-
"http":{
|
226
|
-
"method":"POST",
|
227
|
-
"requestUri":"/deleteRobot"
|
228
|
-
},
|
229
|
-
"input":{"shape":"DeleteRobotRequest"},
|
230
|
-
"output":{"shape":"DeleteRobotResponse"},
|
231
|
-
"errors":[
|
232
|
-
{"shape":"InvalidParameterException"},
|
233
|
-
{"shape":"InternalServerException"},
|
234
|
-
{"shape":"ThrottlingException"}
|
235
|
-
]
|
236
|
-
},
|
237
|
-
"DeleteRobotApplication":{
|
238
|
-
"name":"DeleteRobotApplication",
|
239
|
-
"http":{
|
240
|
-
"method":"POST",
|
241
|
-
"requestUri":"/deleteRobotApplication"
|
242
|
-
},
|
243
|
-
"input":{"shape":"DeleteRobotApplicationRequest"},
|
244
|
-
"output":{"shape":"DeleteRobotApplicationResponse"},
|
245
|
-
"errors":[
|
246
|
-
{"shape":"InvalidParameterException"},
|
247
|
-
{"shape":"ThrottlingException"},
|
248
|
-
{"shape":"InternalServerException"}
|
249
|
-
]
|
250
|
-
},
|
251
|
-
"DeleteSimulationApplication":{
|
252
|
-
"name":"DeleteSimulationApplication",
|
253
|
-
"http":{
|
254
|
-
"method":"POST",
|
255
|
-
"requestUri":"/deleteSimulationApplication"
|
256
|
-
},
|
257
|
-
"input":{"shape":"DeleteSimulationApplicationRequest"},
|
258
|
-
"output":{"shape":"DeleteSimulationApplicationResponse"},
|
259
|
-
"errors":[
|
260
|
-
{"shape":"InvalidParameterException"},
|
261
|
-
{"shape":"ThrottlingException"},
|
262
|
-
{"shape":"InternalServerException"}
|
263
|
-
]
|
264
|
-
},
|
265
|
-
"DeregisterRobot":{
|
266
|
-
"name":"DeregisterRobot",
|
267
|
-
"http":{
|
268
|
-
"method":"POST",
|
269
|
-
"requestUri":"/deregisterRobot"
|
270
|
-
},
|
271
|
-
"input":{"shape":"DeregisterRobotRequest"},
|
272
|
-
"output":{"shape":"DeregisterRobotResponse"},
|
273
|
-
"errors":[
|
274
|
-
{"shape":"InvalidParameterException"},
|
275
|
-
{"shape":"InternalServerException"},
|
276
|
-
{"shape":"ThrottlingException"},
|
277
|
-
{"shape":"ResourceNotFoundException"}
|
278
|
-
]
|
279
|
-
},
|
280
|
-
"DescribeDeploymentJob":{
|
281
|
-
"name":"DescribeDeploymentJob",
|
282
|
-
"http":{
|
283
|
-
"method":"POST",
|
284
|
-
"requestUri":"/describeDeploymentJob"
|
285
|
-
},
|
286
|
-
"input":{"shape":"DescribeDeploymentJobRequest"},
|
287
|
-
"output":{"shape":"DescribeDeploymentJobResponse"},
|
288
|
-
"errors":[
|
289
|
-
{"shape":"ResourceNotFoundException"},
|
290
|
-
{"shape":"InvalidParameterException"},
|
291
|
-
{"shape":"InternalServerException"},
|
292
|
-
{"shape":"ThrottlingException"}
|
293
|
-
]
|
294
|
-
},
|
295
|
-
"DescribeFleet":{
|
296
|
-
"name":"DescribeFleet",
|
297
|
-
"http":{
|
298
|
-
"method":"POST",
|
299
|
-
"requestUri":"/describeFleet"
|
300
|
-
},
|
301
|
-
"input":{"shape":"DescribeFleetRequest"},
|
302
|
-
"output":{"shape":"DescribeFleetResponse"},
|
303
|
-
"errors":[
|
304
|
-
{"shape":"ResourceNotFoundException"},
|
305
|
-
{"shape":"InvalidParameterException"},
|
306
|
-
{"shape":"InternalServerException"},
|
307
|
-
{"shape":"ThrottlingException"}
|
308
|
-
]
|
309
|
-
},
|
310
|
-
"DescribeRobot":{
|
311
|
-
"name":"DescribeRobot",
|
312
|
-
"http":{
|
313
|
-
"method":"POST",
|
314
|
-
"requestUri":"/describeRobot"
|
315
|
-
},
|
316
|
-
"input":{"shape":"DescribeRobotRequest"},
|
317
|
-
"output":{"shape":"DescribeRobotResponse"},
|
318
|
-
"errors":[
|
319
|
-
{"shape":"ResourceNotFoundException"},
|
320
|
-
{"shape":"InvalidParameterException"},
|
321
|
-
{"shape":"InternalServerException"},
|
322
|
-
{"shape":"ThrottlingException"}
|
323
|
-
]
|
324
|
-
},
|
325
|
-
"DescribeRobotApplication":{
|
326
|
-
"name":"DescribeRobotApplication",
|
327
|
-
"http":{
|
328
|
-
"method":"POST",
|
329
|
-
"requestUri":"/describeRobotApplication"
|
330
|
-
},
|
331
|
-
"input":{"shape":"DescribeRobotApplicationRequest"},
|
332
|
-
"output":{"shape":"DescribeRobotApplicationResponse"},
|
333
|
-
"errors":[
|
334
|
-
{"shape":"InvalidParameterException"},
|
335
|
-
{"shape":"ResourceNotFoundException"},
|
336
|
-
{"shape":"ThrottlingException"},
|
337
|
-
{"shape":"InternalServerException"}
|
338
|
-
]
|
339
|
-
},
|
340
|
-
"DescribeSimulationApplication":{
|
341
|
-
"name":"DescribeSimulationApplication",
|
342
|
-
"http":{
|
343
|
-
"method":"POST",
|
344
|
-
"requestUri":"/describeSimulationApplication"
|
345
|
-
},
|
346
|
-
"input":{"shape":"DescribeSimulationApplicationRequest"},
|
347
|
-
"output":{"shape":"DescribeSimulationApplicationResponse"},
|
348
|
-
"errors":[
|
349
|
-
{"shape":"InvalidParameterException"},
|
350
|
-
{"shape":"ResourceNotFoundException"},
|
351
|
-
{"shape":"ThrottlingException"},
|
352
|
-
{"shape":"InternalServerException"}
|
353
|
-
]
|
354
|
-
},
|
355
|
-
"DescribeSimulationJob":{
|
356
|
-
"name":"DescribeSimulationJob",
|
357
|
-
"http":{
|
358
|
-
"method":"POST",
|
359
|
-
"requestUri":"/describeSimulationJob"
|
360
|
-
},
|
361
|
-
"input":{"shape":"DescribeSimulationJobRequest"},
|
362
|
-
"output":{"shape":"DescribeSimulationJobResponse"},
|
363
|
-
"errors":[
|
364
|
-
{"shape":"ResourceNotFoundException"},
|
365
|
-
{"shape":"InvalidParameterException"},
|
366
|
-
{"shape":"InternalServerException"},
|
367
|
-
{"shape":"ThrottlingException"}
|
368
|
-
]
|
369
|
-
},
|
370
|
-
"DescribeSimulationJobBatch":{
|
371
|
-
"name":"DescribeSimulationJobBatch",
|
372
|
-
"http":{
|
373
|
-
"method":"POST",
|
374
|
-
"requestUri":"/describeSimulationJobBatch"
|
375
|
-
},
|
376
|
-
"input":{"shape":"DescribeSimulationJobBatchRequest"},
|
377
|
-
"output":{"shape":"DescribeSimulationJobBatchResponse"},
|
378
|
-
"errors":[
|
379
|
-
{"shape":"ResourceNotFoundException"},
|
380
|
-
{"shape":"InvalidParameterException"},
|
381
|
-
{"shape":"InternalServerException"}
|
382
|
-
]
|
383
|
-
},
|
384
|
-
"ListDeploymentJobs":{
|
385
|
-
"name":"ListDeploymentJobs",
|
386
|
-
"http":{
|
387
|
-
"method":"POST",
|
388
|
-
"requestUri":"/listDeploymentJobs"
|
389
|
-
},
|
390
|
-
"input":{"shape":"ListDeploymentJobsRequest"},
|
391
|
-
"output":{"shape":"ListDeploymentJobsResponse"},
|
392
|
-
"errors":[
|
393
|
-
{"shape":"ResourceNotFoundException"},
|
394
|
-
{"shape":"InvalidParameterException"},
|
395
|
-
{"shape":"InternalServerException"},
|
396
|
-
{"shape":"ThrottlingException"}
|
397
|
-
]
|
398
|
-
},
|
399
|
-
"ListFleets":{
|
400
|
-
"name":"ListFleets",
|
401
|
-
"http":{
|
402
|
-
"method":"POST",
|
403
|
-
"requestUri":"/listFleets"
|
404
|
-
},
|
405
|
-
"input":{"shape":"ListFleetsRequest"},
|
406
|
-
"output":{"shape":"ListFleetsResponse"},
|
407
|
-
"errors":[
|
408
|
-
{"shape":"ResourceNotFoundException"},
|
409
|
-
{"shape":"InvalidParameterException"},
|
410
|
-
{"shape":"InternalServerException"},
|
411
|
-
{"shape":"ThrottlingException"}
|
412
|
-
]
|
413
|
-
},
|
414
|
-
"ListRobotApplications":{
|
415
|
-
"name":"ListRobotApplications",
|
416
|
-
"http":{
|
417
|
-
"method":"POST",
|
418
|
-
"requestUri":"/listRobotApplications"
|
419
|
-
},
|
420
|
-
"input":{"shape":"ListRobotApplicationsRequest"},
|
421
|
-
"output":{"shape":"ListRobotApplicationsResponse"},
|
422
|
-
"errors":[
|
423
|
-
{"shape":"InvalidParameterException"},
|
424
|
-
{"shape":"ThrottlingException"},
|
425
|
-
{"shape":"InternalServerException"}
|
426
|
-
]
|
427
|
-
},
|
428
|
-
"ListRobots":{
|
429
|
-
"name":"ListRobots",
|
430
|
-
"http":{
|
431
|
-
"method":"POST",
|
432
|
-
"requestUri":"/listRobots"
|
433
|
-
},
|
434
|
-
"input":{"shape":"ListRobotsRequest"},
|
435
|
-
"output":{"shape":"ListRobotsResponse"},
|
436
|
-
"errors":[
|
437
|
-
{"shape":"ResourceNotFoundException"},
|
438
|
-
{"shape":"InvalidParameterException"},
|
439
|
-
{"shape":"InternalServerException"},
|
440
|
-
{"shape":"ThrottlingException"}
|
441
|
-
]
|
442
|
-
},
|
443
|
-
"ListSimulationApplications":{
|
444
|
-
"name":"ListSimulationApplications",
|
445
|
-
"http":{
|
446
|
-
"method":"POST",
|
447
|
-
"requestUri":"/listSimulationApplications"
|
448
|
-
},
|
449
|
-
"input":{"shape":"ListSimulationApplicationsRequest"},
|
450
|
-
"output":{"shape":"ListSimulationApplicationsResponse"},
|
451
|
-
"errors":[
|
452
|
-
{"shape":"InvalidParameterException"},
|
453
|
-
{"shape":"ThrottlingException"},
|
454
|
-
{"shape":"InternalServerException"}
|
455
|
-
]
|
456
|
-
},
|
457
|
-
"ListSimulationJobBatches":{
|
458
|
-
"name":"ListSimulationJobBatches",
|
459
|
-
"http":{
|
460
|
-
"method":"POST",
|
461
|
-
"requestUri":"/listSimulationJobBatches"
|
462
|
-
},
|
463
|
-
"input":{"shape":"ListSimulationJobBatchesRequest"},
|
464
|
-
"output":{"shape":"ListSimulationJobBatchesResponse"},
|
465
|
-
"errors":[
|
466
|
-
{"shape":"InvalidParameterException"},
|
467
|
-
{"shape":"InternalServerException"}
|
468
|
-
]
|
469
|
-
},
|
470
|
-
"ListSimulationJobs":{
|
471
|
-
"name":"ListSimulationJobs",
|
472
|
-
"http":{
|
473
|
-
"method":"POST",
|
474
|
-
"requestUri":"/listSimulationJobs"
|
475
|
-
},
|
476
|
-
"input":{"shape":"ListSimulationJobsRequest"},
|
477
|
-
"output":{"shape":"ListSimulationJobsResponse"},
|
478
|
-
"errors":[
|
479
|
-
{"shape":"InvalidParameterException"},
|
480
|
-
{"shape":"InternalServerException"},
|
481
|
-
{"shape":"ThrottlingException"}
|
482
|
-
]
|
483
|
-
},
|
484
|
-
"ListTagsForResource":{
|
485
|
-
"name":"ListTagsForResource",
|
486
|
-
"http":{
|
487
|
-
"method":"GET",
|
488
|
-
"requestUri":"/tags/{resourceArn}"
|
489
|
-
},
|
490
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
491
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
492
|
-
"errors":[
|
493
|
-
{"shape":"InternalServerException"},
|
494
|
-
{"shape":"ResourceNotFoundException"},
|
495
|
-
{"shape":"InvalidParameterException"},
|
496
|
-
{"shape":"ThrottlingException"}
|
497
|
-
]
|
498
|
-
},
|
499
|
-
"RegisterRobot":{
|
500
|
-
"name":"RegisterRobot",
|
501
|
-
"http":{
|
502
|
-
"method":"POST",
|
503
|
-
"requestUri":"/registerRobot"
|
504
|
-
},
|
505
|
-
"input":{"shape":"RegisterRobotRequest"},
|
506
|
-
"output":{"shape":"RegisterRobotResponse"},
|
507
|
-
"errors":[
|
508
|
-
{"shape":"InvalidParameterException"},
|
509
|
-
{"shape":"InternalServerException"},
|
510
|
-
{"shape":"ThrottlingException"},
|
511
|
-
{"shape":"LimitExceededException"},
|
512
|
-
{"shape":"ResourceNotFoundException"}
|
513
|
-
]
|
514
|
-
},
|
515
|
-
"RestartSimulationJob":{
|
516
|
-
"name":"RestartSimulationJob",
|
517
|
-
"http":{
|
518
|
-
"method":"POST",
|
519
|
-
"requestUri":"/restartSimulationJob"
|
520
|
-
},
|
521
|
-
"input":{"shape":"RestartSimulationJobRequest"},
|
522
|
-
"output":{"shape":"RestartSimulationJobResponse"},
|
523
|
-
"errors":[
|
524
|
-
{"shape":"ResourceNotFoundException"},
|
525
|
-
{"shape":"ThrottlingException"},
|
526
|
-
{"shape":"LimitExceededException"},
|
527
|
-
{"shape":"InvalidParameterException"},
|
528
|
-
{"shape":"InternalServerException"}
|
529
|
-
]
|
530
|
-
},
|
531
|
-
"StartSimulationJobBatch":{
|
532
|
-
"name":"StartSimulationJobBatch",
|
533
|
-
"http":{
|
534
|
-
"method":"POST",
|
535
|
-
"requestUri":"/startSimulationJobBatch"
|
536
|
-
},
|
537
|
-
"input":{"shape":"StartSimulationJobBatchRequest"},
|
538
|
-
"output":{"shape":"StartSimulationJobBatchResponse"},
|
539
|
-
"errors":[
|
540
|
-
{"shape":"InvalidParameterException"},
|
541
|
-
{"shape":"LimitExceededException"},
|
542
|
-
{"shape":"ThrottlingException"},
|
543
|
-
{"shape":"IdempotentParameterMismatchException"},
|
544
|
-
{"shape":"InternalServerException"}
|
545
|
-
]
|
546
|
-
},
|
547
|
-
"SyncDeploymentJob":{
|
548
|
-
"name":"SyncDeploymentJob",
|
549
|
-
"http":{
|
550
|
-
"method":"POST",
|
551
|
-
"requestUri":"/syncDeploymentJob"
|
552
|
-
},
|
553
|
-
"input":{"shape":"SyncDeploymentJobRequest"},
|
554
|
-
"output":{"shape":"SyncDeploymentJobResponse"},
|
555
|
-
"errors":[
|
556
|
-
{"shape":"ResourceNotFoundException"},
|
557
|
-
{"shape":"InvalidParameterException"},
|
558
|
-
{"shape":"InternalServerException"},
|
559
|
-
{"shape":"ThrottlingException"},
|
560
|
-
{"shape":"LimitExceededException"},
|
561
|
-
{"shape":"ConcurrentDeploymentException"},
|
562
|
-
{"shape":"IdempotentParameterMismatchException"}
|
563
|
-
]
|
564
|
-
},
|
565
|
-
"TagResource":{
|
566
|
-
"name":"TagResource",
|
567
|
-
"http":{
|
568
|
-
"method":"POST",
|
569
|
-
"requestUri":"/tags/{resourceArn}"
|
570
|
-
},
|
571
|
-
"input":{"shape":"TagResourceRequest"},
|
572
|
-
"output":{"shape":"TagResourceResponse"},
|
573
|
-
"errors":[
|
574
|
-
{"shape":"InternalServerException"},
|
575
|
-
{"shape":"ResourceNotFoundException"},
|
576
|
-
{"shape":"InvalidParameterException"},
|
577
|
-
{"shape":"ThrottlingException"}
|
578
|
-
]
|
579
|
-
},
|
580
|
-
"UntagResource":{
|
581
|
-
"name":"UntagResource",
|
582
|
-
"http":{
|
583
|
-
"method":"DELETE",
|
584
|
-
"requestUri":"/tags/{resourceArn}"
|
585
|
-
},
|
586
|
-
"input":{"shape":"UntagResourceRequest"},
|
587
|
-
"output":{"shape":"UntagResourceResponse"},
|
588
|
-
"errors":[
|
589
|
-
{"shape":"InternalServerException"},
|
590
|
-
{"shape":"ResourceNotFoundException"},
|
591
|
-
{"shape":"InvalidParameterException"},
|
592
|
-
{"shape":"ThrottlingException"}
|
593
|
-
]
|
594
|
-
},
|
595
|
-
"UpdateRobotApplication":{
|
596
|
-
"name":"UpdateRobotApplication",
|
597
|
-
"http":{
|
598
|
-
"method":"POST",
|
599
|
-
"requestUri":"/updateRobotApplication"
|
600
|
-
},
|
601
|
-
"input":{"shape":"UpdateRobotApplicationRequest"},
|
602
|
-
"output":{"shape":"UpdateRobotApplicationResponse"},
|
603
|
-
"errors":[
|
604
|
-
{"shape":"InvalidParameterException"},
|
605
|
-
{"shape":"ResourceNotFoundException"},
|
606
|
-
{"shape":"LimitExceededException"},
|
607
|
-
{"shape":"ThrottlingException"},
|
608
|
-
{"shape":"InternalServerException"}
|
609
|
-
]
|
610
|
-
},
|
611
|
-
"UpdateSimulationApplication":{
|
612
|
-
"name":"UpdateSimulationApplication",
|
613
|
-
"http":{
|
614
|
-
"method":"POST",
|
615
|
-
"requestUri":"/updateSimulationApplication"
|
616
|
-
},
|
617
|
-
"input":{"shape":"UpdateSimulationApplicationRequest"},
|
618
|
-
"output":{"shape":"UpdateSimulationApplicationResponse"},
|
619
|
-
"errors":[
|
620
|
-
{"shape":"InvalidParameterException"},
|
621
|
-
{"shape":"ResourceNotFoundException"},
|
622
|
-
{"shape":"LimitExceededException"},
|
623
|
-
{"shape":"ThrottlingException"},
|
624
|
-
{"shape":"InternalServerException"}
|
625
|
-
]
|
626
|
-
}
|
627
|
-
},
|
628
|
-
"shapes":{
|
629
|
-
"Architecture":{
|
630
|
-
"type":"string",
|
631
|
-
"enum":[
|
632
|
-
"X86_64",
|
633
|
-
"ARM64",
|
634
|
-
"ARMHF"
|
635
|
-
]
|
636
|
-
},
|
637
|
-
"Arn":{
|
638
|
-
"type":"string",
|
639
|
-
"max":1224,
|
640
|
-
"min":1,
|
641
|
-
"pattern":"arn:.*"
|
642
|
-
},
|
643
|
-
"Arns":{
|
644
|
-
"type":"list",
|
645
|
-
"member":{"shape":"Arn"},
|
646
|
-
"max":100,
|
647
|
-
"min":1
|
648
|
-
},
|
649
|
-
"BatchDescribeSimulationJobRequest":{
|
650
|
-
"type":"structure",
|
651
|
-
"required":["jobs"],
|
652
|
-
"members":{
|
653
|
-
"jobs":{"shape":"Arns"}
|
654
|
-
}
|
655
|
-
},
|
656
|
-
"BatchDescribeSimulationJobResponse":{
|
657
|
-
"type":"structure",
|
658
|
-
"members":{
|
659
|
-
"jobs":{"shape":"SimulationJobs"},
|
660
|
-
"unprocessedJobs":{"shape":"Arns"}
|
661
|
-
}
|
662
|
-
},
|
663
|
-
"BatchPolicy":{
|
664
|
-
"type":"structure",
|
665
|
-
"members":{
|
666
|
-
"timeoutInSeconds":{"shape":"BatchTimeoutInSeconds"},
|
667
|
-
"maxConcurrency":{"shape":"MaxConcurrency"}
|
668
|
-
}
|
669
|
-
},
|
670
|
-
"BatchTimeoutInSeconds":{"type":"long"},
|
671
|
-
"Boolean":{"type":"boolean"},
|
672
|
-
"BoxedBoolean":{"type":"boolean"},
|
673
|
-
"CancelDeploymentJobRequest":{
|
674
|
-
"type":"structure",
|
675
|
-
"required":["job"],
|
676
|
-
"members":{
|
677
|
-
"job":{"shape":"Arn"}
|
678
|
-
}
|
679
|
-
},
|
680
|
-
"CancelDeploymentJobResponse":{
|
681
|
-
"type":"structure",
|
682
|
-
"members":{
|
683
|
-
}
|
684
|
-
},
|
685
|
-
"CancelSimulationJobBatchRequest":{
|
686
|
-
"type":"structure",
|
687
|
-
"required":["batch"],
|
688
|
-
"members":{
|
689
|
-
"batch":{"shape":"Arn"}
|
690
|
-
}
|
691
|
-
},
|
692
|
-
"CancelSimulationJobBatchResponse":{
|
693
|
-
"type":"structure",
|
694
|
-
"members":{
|
695
|
-
}
|
696
|
-
},
|
697
|
-
"CancelSimulationJobRequest":{
|
698
|
-
"type":"structure",
|
699
|
-
"required":["job"],
|
700
|
-
"members":{
|
701
|
-
"job":{"shape":"Arn"}
|
702
|
-
}
|
703
|
-
},
|
704
|
-
"CancelSimulationJobResponse":{
|
705
|
-
"type":"structure",
|
706
|
-
"members":{
|
707
|
-
}
|
708
|
-
},
|
709
|
-
"ClientRequestToken":{
|
710
|
-
"type":"string",
|
711
|
-
"max":64,
|
712
|
-
"min":1,
|
713
|
-
"pattern":"[a-zA-Z0-9_\\-=]*"
|
714
|
-
},
|
715
|
-
"Command":{
|
716
|
-
"type":"string",
|
717
|
-
"max":1024,
|
718
|
-
"min":1,
|
719
|
-
"pattern":"[a-zA-Z0-9_.\\-]*"
|
720
|
-
},
|
721
|
-
"ConcurrentDeploymentException":{
|
722
|
-
"type":"structure",
|
723
|
-
"members":{
|
724
|
-
"message":{"shape":"errorMessage"}
|
725
|
-
},
|
726
|
-
"error":{"httpStatusCode":400},
|
727
|
-
"exception":true
|
728
|
-
},
|
729
|
-
"CreateDeploymentJobRequest":{
|
730
|
-
"type":"structure",
|
731
|
-
"required":[
|
732
|
-
"clientRequestToken",
|
733
|
-
"fleet",
|
734
|
-
"deploymentApplicationConfigs"
|
735
|
-
],
|
736
|
-
"members":{
|
737
|
-
"deploymentConfig":{"shape":"DeploymentConfig"},
|
738
|
-
"clientRequestToken":{
|
739
|
-
"shape":"ClientRequestToken",
|
740
|
-
"idempotencyToken":true
|
741
|
-
},
|
742
|
-
"fleet":{"shape":"Arn"},
|
743
|
-
"deploymentApplicationConfigs":{"shape":"DeploymentApplicationConfigs"},
|
744
|
-
"tags":{"shape":"TagMap"}
|
745
|
-
}
|
746
|
-
},
|
747
|
-
"CreateDeploymentJobResponse":{
|
748
|
-
"type":"structure",
|
749
|
-
"members":{
|
750
|
-
"arn":{"shape":"Arn"},
|
751
|
-
"fleet":{"shape":"Arn"},
|
752
|
-
"status":{"shape":"DeploymentStatus"},
|
753
|
-
"deploymentApplicationConfigs":{"shape":"DeploymentApplicationConfigs"},
|
754
|
-
"failureReason":{"shape":"GenericString"},
|
755
|
-
"failureCode":{"shape":"DeploymentJobErrorCode"},
|
756
|
-
"createdAt":{"shape":"CreatedAt"},
|
757
|
-
"deploymentConfig":{"shape":"DeploymentConfig"},
|
758
|
-
"tags":{"shape":"TagMap"}
|
759
|
-
}
|
760
|
-
},
|
761
|
-
"CreateFleetRequest":{
|
762
|
-
"type":"structure",
|
763
|
-
"required":["name"],
|
764
|
-
"members":{
|
765
|
-
"name":{"shape":"Name"},
|
766
|
-
"tags":{"shape":"TagMap"}
|
767
|
-
}
|
768
|
-
},
|
769
|
-
"CreateFleetResponse":{
|
770
|
-
"type":"structure",
|
771
|
-
"members":{
|
772
|
-
"arn":{"shape":"Arn"},
|
773
|
-
"name":{"shape":"Name"},
|
774
|
-
"createdAt":{"shape":"CreatedAt"},
|
775
|
-
"tags":{"shape":"TagMap"}
|
776
|
-
}
|
777
|
-
},
|
778
|
-
"CreateRobotApplicationRequest":{
|
779
|
-
"type":"structure",
|
780
|
-
"required":[
|
781
|
-
"name",
|
782
|
-
"sources",
|
783
|
-
"robotSoftwareSuite"
|
784
|
-
],
|
785
|
-
"members":{
|
786
|
-
"name":{"shape":"Name"},
|
787
|
-
"sources":{"shape":"SourceConfigs"},
|
788
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
789
|
-
"tags":{"shape":"TagMap"}
|
790
|
-
}
|
791
|
-
},
|
792
|
-
"CreateRobotApplicationResponse":{
|
793
|
-
"type":"structure",
|
794
|
-
"members":{
|
795
|
-
"arn":{"shape":"Arn"},
|
796
|
-
"name":{"shape":"Name"},
|
797
|
-
"version":{"shape":"Version"},
|
798
|
-
"sources":{"shape":"Sources"},
|
799
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
800
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
801
|
-
"revisionId":{"shape":"RevisionId"},
|
802
|
-
"tags":{"shape":"TagMap"}
|
803
|
-
}
|
804
|
-
},
|
805
|
-
"CreateRobotApplicationVersionRequest":{
|
806
|
-
"type":"structure",
|
807
|
-
"required":["application"],
|
808
|
-
"members":{
|
809
|
-
"application":{"shape":"Arn"},
|
810
|
-
"currentRevisionId":{"shape":"RevisionId"}
|
811
|
-
}
|
812
|
-
},
|
813
|
-
"CreateRobotApplicationVersionResponse":{
|
814
|
-
"type":"structure",
|
815
|
-
"members":{
|
816
|
-
"arn":{"shape":"Arn"},
|
817
|
-
"name":{"shape":"Name"},
|
818
|
-
"version":{"shape":"Version"},
|
819
|
-
"sources":{"shape":"Sources"},
|
820
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
821
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
822
|
-
"revisionId":{"shape":"RevisionId"}
|
823
|
-
}
|
824
|
-
},
|
825
|
-
"CreateRobotRequest":{
|
826
|
-
"type":"structure",
|
827
|
-
"required":[
|
828
|
-
"name",
|
829
|
-
"architecture",
|
830
|
-
"greengrassGroupId"
|
831
|
-
],
|
832
|
-
"members":{
|
833
|
-
"name":{"shape":"Name"},
|
834
|
-
"architecture":{"shape":"Architecture"},
|
835
|
-
"greengrassGroupId":{"shape":"Id"},
|
836
|
-
"tags":{"shape":"TagMap"}
|
837
|
-
}
|
838
|
-
},
|
839
|
-
"CreateRobotResponse":{
|
840
|
-
"type":"structure",
|
841
|
-
"members":{
|
842
|
-
"arn":{"shape":"Arn"},
|
843
|
-
"name":{"shape":"Name"},
|
844
|
-
"createdAt":{"shape":"CreatedAt"},
|
845
|
-
"greengrassGroupId":{"shape":"Id"},
|
846
|
-
"architecture":{"shape":"Architecture"},
|
847
|
-
"tags":{"shape":"TagMap"}
|
848
|
-
}
|
849
|
-
},
|
850
|
-
"CreateSimulationApplicationRequest":{
|
851
|
-
"type":"structure",
|
852
|
-
"required":[
|
853
|
-
"name",
|
854
|
-
"sources",
|
855
|
-
"simulationSoftwareSuite",
|
856
|
-
"robotSoftwareSuite"
|
857
|
-
],
|
858
|
-
"members":{
|
859
|
-
"name":{"shape":"Name"},
|
860
|
-
"sources":{"shape":"SourceConfigs"},
|
861
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
862
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
863
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
864
|
-
"tags":{"shape":"TagMap"}
|
865
|
-
}
|
866
|
-
},
|
867
|
-
"CreateSimulationApplicationResponse":{
|
868
|
-
"type":"structure",
|
869
|
-
"members":{
|
870
|
-
"arn":{"shape":"Arn"},
|
871
|
-
"name":{"shape":"Name"},
|
872
|
-
"version":{"shape":"Version"},
|
873
|
-
"sources":{"shape":"Sources"},
|
874
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
875
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
876
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
877
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
878
|
-
"revisionId":{"shape":"RevisionId"},
|
879
|
-
"tags":{"shape":"TagMap"}
|
880
|
-
}
|
881
|
-
},
|
882
|
-
"CreateSimulationApplicationVersionRequest":{
|
883
|
-
"type":"structure",
|
884
|
-
"required":["application"],
|
885
|
-
"members":{
|
886
|
-
"application":{"shape":"Arn"},
|
887
|
-
"currentRevisionId":{"shape":"RevisionId"}
|
888
|
-
}
|
889
|
-
},
|
890
|
-
"CreateSimulationApplicationVersionResponse":{
|
891
|
-
"type":"structure",
|
892
|
-
"members":{
|
893
|
-
"arn":{"shape":"Arn"},
|
894
|
-
"name":{"shape":"Name"},
|
895
|
-
"version":{"shape":"Version"},
|
896
|
-
"sources":{"shape":"Sources"},
|
897
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
898
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
899
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
900
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
901
|
-
"revisionId":{"shape":"RevisionId"}
|
902
|
-
}
|
903
|
-
},
|
904
|
-
"CreateSimulationJobRequest":{
|
905
|
-
"type":"structure",
|
906
|
-
"required":[
|
907
|
-
"maxJobDurationInSeconds",
|
908
|
-
"iamRole"
|
909
|
-
],
|
910
|
-
"members":{
|
911
|
-
"clientRequestToken":{
|
912
|
-
"shape":"ClientRequestToken",
|
913
|
-
"idempotencyToken":true
|
914
|
-
},
|
915
|
-
"outputLocation":{"shape":"OutputLocation"},
|
916
|
-
"loggingConfig":{"shape":"LoggingConfig"},
|
917
|
-
"maxJobDurationInSeconds":{"shape":"JobDuration"},
|
918
|
-
"iamRole":{"shape":"IamRole"},
|
919
|
-
"failureBehavior":{"shape":"FailureBehavior"},
|
920
|
-
"robotApplications":{"shape":"RobotApplicationConfigs"},
|
921
|
-
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
|
922
|
-
"dataSources":{"shape":"DataSourceConfigs"},
|
923
|
-
"tags":{"shape":"TagMap"},
|
924
|
-
"vpcConfig":{"shape":"VPCConfig"}
|
925
|
-
}
|
926
|
-
},
|
927
|
-
"CreateSimulationJobRequests":{
|
928
|
-
"type":"list",
|
929
|
-
"member":{"shape":"SimulationJobRequest"},
|
930
|
-
"min":1
|
931
|
-
},
|
932
|
-
"CreateSimulationJobResponse":{
|
933
|
-
"type":"structure",
|
934
|
-
"members":{
|
935
|
-
"arn":{"shape":"Arn"},
|
936
|
-
"status":{"shape":"SimulationJobStatus"},
|
937
|
-
"lastStartedAt":{"shape":"LastStartedAt"},
|
938
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
939
|
-
"failureBehavior":{"shape":"FailureBehavior"},
|
940
|
-
"failureCode":{"shape":"SimulationJobErrorCode"},
|
941
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
942
|
-
"outputLocation":{"shape":"OutputLocation"},
|
943
|
-
"loggingConfig":{"shape":"LoggingConfig"},
|
944
|
-
"maxJobDurationInSeconds":{"shape":"JobDuration"},
|
945
|
-
"simulationTimeMillis":{"shape":"SimulationTimeMillis"},
|
946
|
-
"iamRole":{"shape":"IamRole"},
|
947
|
-
"robotApplications":{"shape":"RobotApplicationConfigs"},
|
948
|
-
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
|
949
|
-
"dataSources":{"shape":"DataSources"},
|
950
|
-
"tags":{"shape":"TagMap"},
|
951
|
-
"vpcConfig":{"shape":"VPCConfigResponse"}
|
952
|
-
}
|
953
|
-
},
|
954
|
-
"CreatedAt":{"type":"timestamp"},
|
955
|
-
"DataSource":{
|
956
|
-
"type":"structure",
|
957
|
-
"members":{
|
958
|
-
"name":{"shape":"Name"},
|
959
|
-
"s3Bucket":{"shape":"S3Bucket"},
|
960
|
-
"s3Keys":{"shape":"S3KeyOutputs"}
|
961
|
-
}
|
962
|
-
},
|
963
|
-
"DataSourceConfig":{
|
964
|
-
"type":"structure",
|
965
|
-
"required":[
|
966
|
-
"name",
|
967
|
-
"s3Bucket",
|
968
|
-
"s3Keys"
|
969
|
-
],
|
970
|
-
"members":{
|
971
|
-
"name":{"shape":"Name"},
|
972
|
-
"s3Bucket":{"shape":"S3Bucket"},
|
973
|
-
"s3Keys":{"shape":"S3Keys"}
|
974
|
-
}
|
975
|
-
},
|
976
|
-
"DataSourceConfigs":{
|
977
|
-
"type":"list",
|
978
|
-
"member":{"shape":"DataSourceConfig"},
|
979
|
-
"max":5,
|
980
|
-
"min":1
|
981
|
-
},
|
982
|
-
"DataSourceNames":{
|
983
|
-
"type":"list",
|
984
|
-
"member":{"shape":"Name"}
|
985
|
-
},
|
986
|
-
"DataSources":{
|
987
|
-
"type":"list",
|
988
|
-
"member":{"shape":"DataSource"}
|
989
|
-
},
|
990
|
-
"DeleteFleetRequest":{
|
991
|
-
"type":"structure",
|
992
|
-
"required":["fleet"],
|
993
|
-
"members":{
|
994
|
-
"fleet":{"shape":"Arn"}
|
995
|
-
}
|
996
|
-
},
|
997
|
-
"DeleteFleetResponse":{
|
998
|
-
"type":"structure",
|
999
|
-
"members":{
|
1000
|
-
}
|
1001
|
-
},
|
1002
|
-
"DeleteRobotApplicationRequest":{
|
1003
|
-
"type":"structure",
|
1004
|
-
"required":["application"],
|
1005
|
-
"members":{
|
1006
|
-
"application":{"shape":"Arn"},
|
1007
|
-
"applicationVersion":{"shape":"Version"}
|
1008
|
-
}
|
1009
|
-
},
|
1010
|
-
"DeleteRobotApplicationResponse":{
|
1011
|
-
"type":"structure",
|
1012
|
-
"members":{
|
1013
|
-
}
|
1014
|
-
},
|
1015
|
-
"DeleteRobotRequest":{
|
1016
|
-
"type":"structure",
|
1017
|
-
"required":["robot"],
|
1018
|
-
"members":{
|
1019
|
-
"robot":{"shape":"Arn"}
|
1020
|
-
}
|
1021
|
-
},
|
1022
|
-
"DeleteRobotResponse":{
|
1023
|
-
"type":"structure",
|
1024
|
-
"members":{
|
1025
|
-
}
|
1026
|
-
},
|
1027
|
-
"DeleteSimulationApplicationRequest":{
|
1028
|
-
"type":"structure",
|
1029
|
-
"required":["application"],
|
1030
|
-
"members":{
|
1031
|
-
"application":{"shape":"Arn"},
|
1032
|
-
"applicationVersion":{"shape":"Version"}
|
1033
|
-
}
|
1034
|
-
},
|
1035
|
-
"DeleteSimulationApplicationResponse":{
|
1036
|
-
"type":"structure",
|
1037
|
-
"members":{
|
1038
|
-
}
|
1039
|
-
},
|
1040
|
-
"DeploymentApplicationConfig":{
|
1041
|
-
"type":"structure",
|
1042
|
-
"required":[
|
1043
|
-
"application",
|
1044
|
-
"applicationVersion",
|
1045
|
-
"launchConfig"
|
1046
|
-
],
|
1047
|
-
"members":{
|
1048
|
-
"application":{"shape":"Arn"},
|
1049
|
-
"applicationVersion":{"shape":"DeploymentVersion"},
|
1050
|
-
"launchConfig":{"shape":"DeploymentLaunchConfig"}
|
1051
|
-
}
|
1052
|
-
},
|
1053
|
-
"DeploymentApplicationConfigs":{
|
1054
|
-
"type":"list",
|
1055
|
-
"member":{"shape":"DeploymentApplicationConfig"},
|
1056
|
-
"max":1,
|
1057
|
-
"min":1
|
1058
|
-
},
|
1059
|
-
"DeploymentConfig":{
|
1060
|
-
"type":"structure",
|
1061
|
-
"members":{
|
1062
|
-
"concurrentDeploymentPercentage":{"shape":"Percentage"},
|
1063
|
-
"failureThresholdPercentage":{"shape":"Percentage"},
|
1064
|
-
"robotDeploymentTimeoutInSeconds":{"shape":"DeploymentTimeout"},
|
1065
|
-
"downloadConditionFile":{"shape":"S3Object"}
|
1066
|
-
}
|
1067
|
-
},
|
1068
|
-
"DeploymentJob":{
|
1069
|
-
"type":"structure",
|
1070
|
-
"members":{
|
1071
|
-
"arn":{"shape":"Arn"},
|
1072
|
-
"fleet":{"shape":"Arn"},
|
1073
|
-
"status":{"shape":"DeploymentStatus"},
|
1074
|
-
"deploymentApplicationConfigs":{"shape":"DeploymentApplicationConfigs"},
|
1075
|
-
"deploymentConfig":{"shape":"DeploymentConfig"},
|
1076
|
-
"failureReason":{"shape":"GenericString"},
|
1077
|
-
"failureCode":{"shape":"DeploymentJobErrorCode"},
|
1078
|
-
"createdAt":{"shape":"CreatedAt"}
|
1079
|
-
}
|
1080
|
-
},
|
1081
|
-
"DeploymentJobErrorCode":{
|
1082
|
-
"type":"string",
|
1083
|
-
"enum":[
|
1084
|
-
"ResourceNotFound",
|
1085
|
-
"EnvironmentSetupError",
|
1086
|
-
"EtagMismatch",
|
1087
|
-
"FailureThresholdBreached",
|
1088
|
-
"RobotDeploymentAborted",
|
1089
|
-
"RobotDeploymentNoResponse",
|
1090
|
-
"RobotAgentConnectionTimeout",
|
1091
|
-
"GreengrassDeploymentFailed",
|
1092
|
-
"MissingRobotArchitecture",
|
1093
|
-
"MissingRobotApplicationArchitecture",
|
1094
|
-
"MissingRobotDeploymentResource",
|
1095
|
-
"GreengrassGroupVersionDoesNotExist",
|
1096
|
-
"ExtractingBundleFailure",
|
1097
|
-
"PreLaunchFileFailure",
|
1098
|
-
"PostLaunchFileFailure",
|
1099
|
-
"BadPermissionError",
|
1100
|
-
"DownloadConditionFailed",
|
1101
|
-
"InternalServerError"
|
1102
|
-
]
|
1103
|
-
},
|
1104
|
-
"DeploymentJobs":{
|
1105
|
-
"type":"list",
|
1106
|
-
"member":{"shape":"DeploymentJob"},
|
1107
|
-
"max":200,
|
1108
|
-
"min":0
|
1109
|
-
},
|
1110
|
-
"DeploymentLaunchConfig":{
|
1111
|
-
"type":"structure",
|
1112
|
-
"required":[
|
1113
|
-
"packageName",
|
1114
|
-
"launchFile"
|
1115
|
-
],
|
1116
|
-
"members":{
|
1117
|
-
"packageName":{"shape":"Command"},
|
1118
|
-
"preLaunchFile":{"shape":"Path"},
|
1119
|
-
"launchFile":{"shape":"Command"},
|
1120
|
-
"postLaunchFile":{"shape":"Path"},
|
1121
|
-
"environmentVariables":{"shape":"EnvironmentVariableMap"}
|
1122
|
-
}
|
1123
|
-
},
|
1124
|
-
"DeploymentStatus":{
|
1125
|
-
"type":"string",
|
1126
|
-
"enum":[
|
1127
|
-
"Pending",
|
1128
|
-
"Preparing",
|
1129
|
-
"InProgress",
|
1130
|
-
"Failed",
|
1131
|
-
"Succeeded",
|
1132
|
-
"Canceled"
|
1133
|
-
]
|
1134
|
-
},
|
1135
|
-
"DeploymentTimeout":{"type":"long"},
|
1136
|
-
"DeploymentVersion":{
|
1137
|
-
"type":"string",
|
1138
|
-
"max":255,
|
1139
|
-
"min":1,
|
1140
|
-
"pattern":"[0-9]*"
|
1141
|
-
},
|
1142
|
-
"DeregisterRobotRequest":{
|
1143
|
-
"type":"structure",
|
1144
|
-
"required":[
|
1145
|
-
"fleet",
|
1146
|
-
"robot"
|
1147
|
-
],
|
1148
|
-
"members":{
|
1149
|
-
"fleet":{"shape":"Arn"},
|
1150
|
-
"robot":{"shape":"Arn"}
|
1151
|
-
}
|
1152
|
-
},
|
1153
|
-
"DeregisterRobotResponse":{
|
1154
|
-
"type":"structure",
|
1155
|
-
"members":{
|
1156
|
-
"fleet":{"shape":"Arn"},
|
1157
|
-
"robot":{"shape":"Arn"}
|
1158
|
-
}
|
1159
|
-
},
|
1160
|
-
"DescribeDeploymentJobRequest":{
|
1161
|
-
"type":"structure",
|
1162
|
-
"required":["job"],
|
1163
|
-
"members":{
|
1164
|
-
"job":{"shape":"Arn"}
|
1165
|
-
}
|
1166
|
-
},
|
1167
|
-
"DescribeDeploymentJobResponse":{
|
1168
|
-
"type":"structure",
|
1169
|
-
"members":{
|
1170
|
-
"arn":{"shape":"Arn"},
|
1171
|
-
"fleet":{"shape":"Arn"},
|
1172
|
-
"status":{"shape":"DeploymentStatus"},
|
1173
|
-
"deploymentConfig":{"shape":"DeploymentConfig"},
|
1174
|
-
"deploymentApplicationConfigs":{"shape":"DeploymentApplicationConfigs"},
|
1175
|
-
"failureReason":{"shape":"GenericString"},
|
1176
|
-
"failureCode":{"shape":"DeploymentJobErrorCode"},
|
1177
|
-
"createdAt":{"shape":"CreatedAt"},
|
1178
|
-
"robotDeploymentSummary":{"shape":"RobotDeploymentSummary"},
|
1179
|
-
"tags":{"shape":"TagMap"}
|
1180
|
-
}
|
1181
|
-
},
|
1182
|
-
"DescribeFleetRequest":{
|
1183
|
-
"type":"structure",
|
1184
|
-
"required":["fleet"],
|
1185
|
-
"members":{
|
1186
|
-
"fleet":{"shape":"Arn"}
|
1187
|
-
}
|
1188
|
-
},
|
1189
|
-
"DescribeFleetResponse":{
|
1190
|
-
"type":"structure",
|
1191
|
-
"members":{
|
1192
|
-
"name":{"shape":"Name"},
|
1193
|
-
"arn":{"shape":"Arn"},
|
1194
|
-
"robots":{"shape":"Robots"},
|
1195
|
-
"createdAt":{"shape":"CreatedAt"},
|
1196
|
-
"lastDeploymentStatus":{"shape":"DeploymentStatus"},
|
1197
|
-
"lastDeploymentJob":{"shape":"Arn"},
|
1198
|
-
"lastDeploymentTime":{"shape":"CreatedAt"},
|
1199
|
-
"tags":{"shape":"TagMap"}
|
1200
|
-
}
|
1201
|
-
},
|
1202
|
-
"DescribeRobotApplicationRequest":{
|
1203
|
-
"type":"structure",
|
1204
|
-
"required":["application"],
|
1205
|
-
"members":{
|
1206
|
-
"application":{"shape":"Arn"},
|
1207
|
-
"applicationVersion":{"shape":"Version"}
|
1208
|
-
}
|
1209
|
-
},
|
1210
|
-
"DescribeRobotApplicationResponse":{
|
1211
|
-
"type":"structure",
|
1212
|
-
"members":{
|
1213
|
-
"arn":{"shape":"Arn"},
|
1214
|
-
"name":{"shape":"Name"},
|
1215
|
-
"version":{"shape":"Version"},
|
1216
|
-
"sources":{"shape":"Sources"},
|
1217
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
1218
|
-
"revisionId":{"shape":"RevisionId"},
|
1219
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1220
|
-
"tags":{"shape":"TagMap"}
|
1221
|
-
}
|
1222
|
-
},
|
1223
|
-
"DescribeRobotRequest":{
|
1224
|
-
"type":"structure",
|
1225
|
-
"required":["robot"],
|
1226
|
-
"members":{
|
1227
|
-
"robot":{"shape":"Arn"}
|
1228
|
-
}
|
1229
|
-
},
|
1230
|
-
"DescribeRobotResponse":{
|
1231
|
-
"type":"structure",
|
1232
|
-
"members":{
|
1233
|
-
"arn":{"shape":"Arn"},
|
1234
|
-
"name":{"shape":"Name"},
|
1235
|
-
"fleetArn":{"shape":"Arn"},
|
1236
|
-
"status":{"shape":"RobotStatus"},
|
1237
|
-
"greengrassGroupId":{"shape":"Id"},
|
1238
|
-
"createdAt":{"shape":"CreatedAt"},
|
1239
|
-
"architecture":{"shape":"Architecture"},
|
1240
|
-
"lastDeploymentJob":{"shape":"Arn"},
|
1241
|
-
"lastDeploymentTime":{"shape":"CreatedAt"},
|
1242
|
-
"tags":{"shape":"TagMap"}
|
1243
|
-
}
|
1244
|
-
},
|
1245
|
-
"DescribeSimulationApplicationRequest":{
|
1246
|
-
"type":"structure",
|
1247
|
-
"required":["application"],
|
1248
|
-
"members":{
|
1249
|
-
"application":{"shape":"Arn"},
|
1250
|
-
"applicationVersion":{"shape":"Version"}
|
1251
|
-
}
|
1252
|
-
},
|
1253
|
-
"DescribeSimulationApplicationResponse":{
|
1254
|
-
"type":"structure",
|
1255
|
-
"members":{
|
1256
|
-
"arn":{"shape":"Arn"},
|
1257
|
-
"name":{"shape":"Name"},
|
1258
|
-
"version":{"shape":"Version"},
|
1259
|
-
"sources":{"shape":"Sources"},
|
1260
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
1261
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
1262
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
1263
|
-
"revisionId":{"shape":"RevisionId"},
|
1264
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1265
|
-
"tags":{"shape":"TagMap"}
|
1266
|
-
}
|
1267
|
-
},
|
1268
|
-
"DescribeSimulationJobBatchRequest":{
|
1269
|
-
"type":"structure",
|
1270
|
-
"required":["batch"],
|
1271
|
-
"members":{
|
1272
|
-
"batch":{"shape":"Arn"}
|
1273
|
-
}
|
1274
|
-
},
|
1275
|
-
"DescribeSimulationJobBatchResponse":{
|
1276
|
-
"type":"structure",
|
1277
|
-
"members":{
|
1278
|
-
"arn":{"shape":"Arn"},
|
1279
|
-
"status":{"shape":"SimulationJobBatchStatus"},
|
1280
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1281
|
-
"createdAt":{"shape":"CreatedAt"},
|
1282
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
1283
|
-
"batchPolicy":{"shape":"BatchPolicy"},
|
1284
|
-
"failureCode":{"shape":"SimulationJobBatchErrorCode"},
|
1285
|
-
"failureReason":{"shape":"GenericString"},
|
1286
|
-
"failedRequests":{"shape":"FailedCreateSimulationJobRequests"},
|
1287
|
-
"pendingRequests":{"shape":"CreateSimulationJobRequests"},
|
1288
|
-
"createdRequests":{"shape":"SimulationJobSummaries"},
|
1289
|
-
"tags":{"shape":"TagMap"}
|
1290
|
-
}
|
1291
|
-
},
|
1292
|
-
"DescribeSimulationJobRequest":{
|
1293
|
-
"type":"structure",
|
1294
|
-
"required":["job"],
|
1295
|
-
"members":{
|
1296
|
-
"job":{"shape":"Arn"}
|
1297
|
-
}
|
1298
|
-
},
|
1299
|
-
"DescribeSimulationJobResponse":{
|
1300
|
-
"type":"structure",
|
1301
|
-
"members":{
|
1302
|
-
"arn":{"shape":"Arn"},
|
1303
|
-
"name":{"shape":"Name"},
|
1304
|
-
"status":{"shape":"SimulationJobStatus"},
|
1305
|
-
"lastStartedAt":{"shape":"LastStartedAt"},
|
1306
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1307
|
-
"failureBehavior":{"shape":"FailureBehavior"},
|
1308
|
-
"failureCode":{"shape":"SimulationJobErrorCode"},
|
1309
|
-
"failureReason":{"shape":"GenericString"},
|
1310
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
1311
|
-
"outputLocation":{"shape":"OutputLocation"},
|
1312
|
-
"loggingConfig":{"shape":"LoggingConfig"},
|
1313
|
-
"maxJobDurationInSeconds":{"shape":"JobDuration"},
|
1314
|
-
"simulationTimeMillis":{"shape":"SimulationTimeMillis"},
|
1315
|
-
"iamRole":{"shape":"IamRole"},
|
1316
|
-
"robotApplications":{"shape":"RobotApplicationConfigs"},
|
1317
|
-
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
|
1318
|
-
"dataSources":{"shape":"DataSources"},
|
1319
|
-
"tags":{"shape":"TagMap"},
|
1320
|
-
"vpcConfig":{"shape":"VPCConfigResponse"},
|
1321
|
-
"networkInterface":{"shape":"NetworkInterface"}
|
1322
|
-
}
|
1323
|
-
},
|
1324
|
-
"EnvironmentVariableKey":{
|
1325
|
-
"type":"string",
|
1326
|
-
"max":1024,
|
1327
|
-
"min":1,
|
1328
|
-
"pattern":"[A-Z_][A-Z0-9_]*"
|
1329
|
-
},
|
1330
|
-
"EnvironmentVariableMap":{
|
1331
|
-
"type":"map",
|
1332
|
-
"key":{"shape":"EnvironmentVariableKey"},
|
1333
|
-
"value":{"shape":"EnvironmentVariableValue"},
|
1334
|
-
"max":16,
|
1335
|
-
"min":0
|
1336
|
-
},
|
1337
|
-
"EnvironmentVariableValue":{
|
1338
|
-
"type":"string",
|
1339
|
-
"max":1024,
|
1340
|
-
"min":1,
|
1341
|
-
"pattern":".*"
|
1342
|
-
},
|
1343
|
-
"FailedAt":{"type":"timestamp"},
|
1344
|
-
"FailedCreateSimulationJobRequest":{
|
1345
|
-
"type":"structure",
|
1346
|
-
"members":{
|
1347
|
-
"request":{"shape":"SimulationJobRequest"},
|
1348
|
-
"failureReason":{"shape":"GenericString"},
|
1349
|
-
"failureCode":{"shape":"SimulationJobErrorCode"},
|
1350
|
-
"failedAt":{"shape":"FailedAt"}
|
1351
|
-
}
|
1352
|
-
},
|
1353
|
-
"FailedCreateSimulationJobRequests":{
|
1354
|
-
"type":"list",
|
1355
|
-
"member":{"shape":"FailedCreateSimulationJobRequest"}
|
1356
|
-
},
|
1357
|
-
"FailureBehavior":{
|
1358
|
-
"type":"string",
|
1359
|
-
"enum":[
|
1360
|
-
"Fail",
|
1361
|
-
"Continue"
|
1362
|
-
]
|
1363
|
-
},
|
1364
|
-
"Filter":{
|
1365
|
-
"type":"structure",
|
1366
|
-
"members":{
|
1367
|
-
"name":{"shape":"Name"},
|
1368
|
-
"values":{"shape":"FilterValues"}
|
1369
|
-
}
|
1370
|
-
},
|
1371
|
-
"FilterValues":{
|
1372
|
-
"type":"list",
|
1373
|
-
"member":{"shape":"Name"},
|
1374
|
-
"max":1,
|
1375
|
-
"min":1
|
1376
|
-
},
|
1377
|
-
"Filters":{
|
1378
|
-
"type":"list",
|
1379
|
-
"member":{"shape":"Filter"},
|
1380
|
-
"max":1,
|
1381
|
-
"min":1
|
1382
|
-
},
|
1383
|
-
"Fleet":{
|
1384
|
-
"type":"structure",
|
1385
|
-
"members":{
|
1386
|
-
"name":{"shape":"Name"},
|
1387
|
-
"arn":{"shape":"Arn"},
|
1388
|
-
"createdAt":{"shape":"CreatedAt"},
|
1389
|
-
"lastDeploymentStatus":{"shape":"DeploymentStatus"},
|
1390
|
-
"lastDeploymentJob":{"shape":"Arn"},
|
1391
|
-
"lastDeploymentTime":{"shape":"CreatedAt"}
|
1392
|
-
}
|
1393
|
-
},
|
1394
|
-
"Fleets":{
|
1395
|
-
"type":"list",
|
1396
|
-
"member":{"shape":"Fleet"},
|
1397
|
-
"max":200,
|
1398
|
-
"min":0
|
1399
|
-
},
|
1400
|
-
"GenericInteger":{"type":"integer"},
|
1401
|
-
"GenericString":{"type":"string"},
|
1402
|
-
"IamRole":{
|
1403
|
-
"type":"string",
|
1404
|
-
"max":255,
|
1405
|
-
"min":1,
|
1406
|
-
"pattern":"arn:aws:iam::\\w+:role/.*"
|
1407
|
-
},
|
1408
|
-
"Id":{
|
1409
|
-
"type":"string",
|
1410
|
-
"max":1224,
|
1411
|
-
"min":1,
|
1412
|
-
"pattern":".*"
|
1413
|
-
},
|
1414
|
-
"IdempotentParameterMismatchException":{
|
1415
|
-
"type":"structure",
|
1416
|
-
"members":{
|
1417
|
-
"message":{"shape":"errorMessage"}
|
1418
|
-
},
|
1419
|
-
"error":{"httpStatusCode":400},
|
1420
|
-
"exception":true
|
1421
|
-
},
|
1422
|
-
"Integer":{"type":"integer"},
|
1423
|
-
"InternalServerException":{
|
1424
|
-
"type":"structure",
|
1425
|
-
"members":{
|
1426
|
-
"message":{"shape":"errorMessage"}
|
1427
|
-
},
|
1428
|
-
"error":{"httpStatusCode":500},
|
1429
|
-
"exception":true
|
1430
|
-
},
|
1431
|
-
"InvalidParameterException":{
|
1432
|
-
"type":"structure",
|
1433
|
-
"members":{
|
1434
|
-
"message":{"shape":"errorMessage"}
|
1435
|
-
},
|
1436
|
-
"error":{"httpStatusCode":400},
|
1437
|
-
"exception":true
|
1438
|
-
},
|
1439
|
-
"JobDuration":{"type":"long"},
|
1440
|
-
"LastStartedAt":{"type":"timestamp"},
|
1441
|
-
"LastUpdatedAt":{"type":"timestamp"},
|
1442
|
-
"LaunchConfig":{
|
1443
|
-
"type":"structure",
|
1444
|
-
"required":[
|
1445
|
-
"packageName",
|
1446
|
-
"launchFile"
|
1447
|
-
],
|
1448
|
-
"members":{
|
1449
|
-
"packageName":{"shape":"Command"},
|
1450
|
-
"launchFile":{"shape":"Command"},
|
1451
|
-
"environmentVariables":{"shape":"EnvironmentVariableMap"},
|
1452
|
-
"portForwardingConfig":{"shape":"PortForwardingConfig"}
|
1453
|
-
}
|
1454
|
-
},
|
1455
|
-
"LimitExceededException":{
|
1456
|
-
"type":"structure",
|
1457
|
-
"members":{
|
1458
|
-
"message":{"shape":"errorMessage"}
|
1459
|
-
},
|
1460
|
-
"error":{"httpStatusCode":400},
|
1461
|
-
"exception":true
|
1462
|
-
},
|
1463
|
-
"ListDeploymentJobsRequest":{
|
1464
|
-
"type":"structure",
|
1465
|
-
"members":{
|
1466
|
-
"filters":{"shape":"Filters"},
|
1467
|
-
"nextToken":{"shape":"PaginationToken"},
|
1468
|
-
"maxResults":{"shape":"MaxResults"}
|
1469
|
-
}
|
1470
|
-
},
|
1471
|
-
"ListDeploymentJobsResponse":{
|
1472
|
-
"type":"structure",
|
1473
|
-
"members":{
|
1474
|
-
"deploymentJobs":{"shape":"DeploymentJobs"},
|
1475
|
-
"nextToken":{"shape":"PaginationToken"}
|
1476
|
-
}
|
1477
|
-
},
|
1478
|
-
"ListFleetsRequest":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"members":{
|
1481
|
-
"nextToken":{"shape":"PaginationToken"},
|
1482
|
-
"maxResults":{"shape":"MaxResults"},
|
1483
|
-
"filters":{"shape":"Filters"}
|
1484
|
-
}
|
1485
|
-
},
|
1486
|
-
"ListFleetsResponse":{
|
1487
|
-
"type":"structure",
|
1488
|
-
"members":{
|
1489
|
-
"fleetDetails":{"shape":"Fleets"},
|
1490
|
-
"nextToken":{"shape":"PaginationToken"}
|
1491
|
-
}
|
1492
|
-
},
|
1493
|
-
"ListRobotApplicationsRequest":{
|
1494
|
-
"type":"structure",
|
1495
|
-
"members":{
|
1496
|
-
"versionQualifier":{"shape":"VersionQualifier"},
|
1497
|
-
"nextToken":{"shape":"PaginationToken"},
|
1498
|
-
"maxResults":{"shape":"MaxResults"},
|
1499
|
-
"filters":{"shape":"Filters"}
|
1500
|
-
}
|
1501
|
-
},
|
1502
|
-
"ListRobotApplicationsResponse":{
|
1503
|
-
"type":"structure",
|
1504
|
-
"members":{
|
1505
|
-
"robotApplicationSummaries":{"shape":"RobotApplicationSummaries"},
|
1506
|
-
"nextToken":{"shape":"PaginationToken"}
|
1507
|
-
}
|
1508
|
-
},
|
1509
|
-
"ListRobotsRequest":{
|
1510
|
-
"type":"structure",
|
1511
|
-
"members":{
|
1512
|
-
"nextToken":{"shape":"PaginationToken"},
|
1513
|
-
"maxResults":{"shape":"MaxResults"},
|
1514
|
-
"filters":{"shape":"Filters"}
|
1515
|
-
}
|
1516
|
-
},
|
1517
|
-
"ListRobotsResponse":{
|
1518
|
-
"type":"structure",
|
1519
|
-
"members":{
|
1520
|
-
"robots":{"shape":"Robots"},
|
1521
|
-
"nextToken":{"shape":"PaginationToken"}
|
1522
|
-
}
|
1523
|
-
},
|
1524
|
-
"ListSimulationApplicationsRequest":{
|
1525
|
-
"type":"structure",
|
1526
|
-
"members":{
|
1527
|
-
"versionQualifier":{"shape":"VersionQualifier"},
|
1528
|
-
"nextToken":{"shape":"PaginationToken"},
|
1529
|
-
"maxResults":{"shape":"MaxResults"},
|
1530
|
-
"filters":{"shape":"Filters"}
|
1531
|
-
}
|
1532
|
-
},
|
1533
|
-
"ListSimulationApplicationsResponse":{
|
1534
|
-
"type":"structure",
|
1535
|
-
"members":{
|
1536
|
-
"simulationApplicationSummaries":{"shape":"SimulationApplicationSummaries"},
|
1537
|
-
"nextToken":{"shape":"PaginationToken"}
|
1538
|
-
}
|
1539
|
-
},
|
1540
|
-
"ListSimulationJobBatchesRequest":{
|
1541
|
-
"type":"structure",
|
1542
|
-
"members":{
|
1543
|
-
"nextToken":{"shape":"PaginationToken"},
|
1544
|
-
"maxResults":{"shape":"MaxResults"},
|
1545
|
-
"filters":{"shape":"Filters"}
|
1546
|
-
}
|
1547
|
-
},
|
1548
|
-
"ListSimulationJobBatchesResponse":{
|
1549
|
-
"type":"structure",
|
1550
|
-
"members":{
|
1551
|
-
"simulationJobBatchSummaries":{"shape":"SimulationJobBatchSummaries"},
|
1552
|
-
"nextToken":{"shape":"PaginationToken"}
|
1553
|
-
}
|
1554
|
-
},
|
1555
|
-
"ListSimulationJobsRequest":{
|
1556
|
-
"type":"structure",
|
1557
|
-
"members":{
|
1558
|
-
"nextToken":{"shape":"PaginationToken"},
|
1559
|
-
"maxResults":{"shape":"MaxResults"},
|
1560
|
-
"filters":{"shape":"Filters"}
|
1561
|
-
}
|
1562
|
-
},
|
1563
|
-
"ListSimulationJobsResponse":{
|
1564
|
-
"type":"structure",
|
1565
|
-
"required":["simulationJobSummaries"],
|
1566
|
-
"members":{
|
1567
|
-
"simulationJobSummaries":{"shape":"SimulationJobSummaries"},
|
1568
|
-
"nextToken":{"shape":"PaginationToken"}
|
1569
|
-
}
|
1570
|
-
},
|
1571
|
-
"ListTagsForResourceRequest":{
|
1572
|
-
"type":"structure",
|
1573
|
-
"required":["resourceArn"],
|
1574
|
-
"members":{
|
1575
|
-
"resourceArn":{
|
1576
|
-
"shape":"Arn",
|
1577
|
-
"location":"uri",
|
1578
|
-
"locationName":"resourceArn"
|
1579
|
-
}
|
1580
|
-
}
|
1581
|
-
},
|
1582
|
-
"ListTagsForResourceResponse":{
|
1583
|
-
"type":"structure",
|
1584
|
-
"members":{
|
1585
|
-
"tags":{"shape":"TagMap"}
|
1586
|
-
}
|
1587
|
-
},
|
1588
|
-
"LoggingConfig":{
|
1589
|
-
"type":"structure",
|
1590
|
-
"required":["recordAllRosTopics"],
|
1591
|
-
"members":{
|
1592
|
-
"recordAllRosTopics":{"shape":"BoxedBoolean"}
|
1593
|
-
}
|
1594
|
-
},
|
1595
|
-
"MaxConcurrency":{"type":"integer"},
|
1596
|
-
"MaxResults":{"type":"integer"},
|
1597
|
-
"Name":{
|
1598
|
-
"type":"string",
|
1599
|
-
"max":255,
|
1600
|
-
"min":1,
|
1601
|
-
"pattern":"[a-zA-Z0-9_\\-]*"
|
1602
|
-
},
|
1603
|
-
"NetworkInterface":{
|
1604
|
-
"type":"structure",
|
1605
|
-
"members":{
|
1606
|
-
"networkInterfaceId":{"shape":"GenericString"},
|
1607
|
-
"privateIpAddress":{"shape":"GenericString"},
|
1608
|
-
"publicIpAddress":{"shape":"GenericString"}
|
1609
|
-
}
|
1610
|
-
},
|
1611
|
-
"NonEmptyString":{
|
1612
|
-
"type":"string",
|
1613
|
-
"max":255,
|
1614
|
-
"min":1
|
1615
|
-
},
|
1616
|
-
"NonSystemPort":{
|
1617
|
-
"type":"integer",
|
1618
|
-
"max":65535,
|
1619
|
-
"min":1024
|
1620
|
-
},
|
1621
|
-
"OutputLocation":{
|
1622
|
-
"type":"structure",
|
1623
|
-
"members":{
|
1624
|
-
"s3Bucket":{"shape":"S3Bucket"},
|
1625
|
-
"s3Prefix":{"shape":"S3Key"}
|
1626
|
-
}
|
1627
|
-
},
|
1628
|
-
"PaginationToken":{
|
1629
|
-
"type":"string",
|
1630
|
-
"max":2048,
|
1631
|
-
"min":1,
|
1632
|
-
"pattern":"[a-zA-Z0-9_.\\-\\/+=]*"
|
1633
|
-
},
|
1634
|
-
"Path":{
|
1635
|
-
"type":"string",
|
1636
|
-
"max":1024,
|
1637
|
-
"min":1,
|
1638
|
-
"pattern":".*"
|
1639
|
-
},
|
1640
|
-
"PercentDone":{
|
1641
|
-
"type":"float",
|
1642
|
-
"max":100.0,
|
1643
|
-
"min":0.0
|
1644
|
-
},
|
1645
|
-
"Percentage":{
|
1646
|
-
"type":"integer",
|
1647
|
-
"max":100,
|
1648
|
-
"min":1
|
1649
|
-
},
|
1650
|
-
"Port":{
|
1651
|
-
"type":"integer",
|
1652
|
-
"max":65535,
|
1653
|
-
"min":1
|
1654
|
-
},
|
1655
|
-
"PortForwardingConfig":{
|
1656
|
-
"type":"structure",
|
1657
|
-
"members":{
|
1658
|
-
"portMappings":{"shape":"PortMappingList"}
|
1659
|
-
}
|
1660
|
-
},
|
1661
|
-
"PortMapping":{
|
1662
|
-
"type":"structure",
|
1663
|
-
"required":[
|
1664
|
-
"jobPort",
|
1665
|
-
"applicationPort"
|
1666
|
-
],
|
1667
|
-
"members":{
|
1668
|
-
"jobPort":{"shape":"Port"},
|
1669
|
-
"applicationPort":{"shape":"NonSystemPort"},
|
1670
|
-
"enableOnPublicIp":{"shape":"Boolean"}
|
1671
|
-
}
|
1672
|
-
},
|
1673
|
-
"PortMappingList":{
|
1674
|
-
"type":"list",
|
1675
|
-
"member":{"shape":"PortMapping"},
|
1676
|
-
"max":10,
|
1677
|
-
"min":0
|
1678
|
-
},
|
1679
|
-
"ProgressDetail":{
|
1680
|
-
"type":"structure",
|
1681
|
-
"members":{
|
1682
|
-
"currentProgress":{"shape":"RobotDeploymentStep"},
|
1683
|
-
"percentDone":{"shape":"PercentDone"},
|
1684
|
-
"estimatedTimeRemainingSeconds":{"shape":"GenericInteger"},
|
1685
|
-
"targetResource":{"shape":"GenericString"}
|
1686
|
-
}
|
1687
|
-
},
|
1688
|
-
"RegisterRobotRequest":{
|
1689
|
-
"type":"structure",
|
1690
|
-
"required":[
|
1691
|
-
"fleet",
|
1692
|
-
"robot"
|
1693
|
-
],
|
1694
|
-
"members":{
|
1695
|
-
"fleet":{"shape":"Arn"},
|
1696
|
-
"robot":{"shape":"Arn"}
|
1697
|
-
}
|
1698
|
-
},
|
1699
|
-
"RegisterRobotResponse":{
|
1700
|
-
"type":"structure",
|
1701
|
-
"members":{
|
1702
|
-
"fleet":{"shape":"Arn"},
|
1703
|
-
"robot":{"shape":"Arn"}
|
1704
|
-
}
|
1705
|
-
},
|
1706
|
-
"RenderingEngine":{
|
1707
|
-
"type":"structure",
|
1708
|
-
"members":{
|
1709
|
-
"name":{"shape":"RenderingEngineType"},
|
1710
|
-
"version":{"shape":"RenderingEngineVersionType"}
|
1711
|
-
}
|
1712
|
-
},
|
1713
|
-
"RenderingEngineType":{
|
1714
|
-
"type":"string",
|
1715
|
-
"enum":["OGRE"]
|
1716
|
-
},
|
1717
|
-
"RenderingEngineVersionType":{
|
1718
|
-
"type":"string",
|
1719
|
-
"pattern":"1.x"
|
1720
|
-
},
|
1721
|
-
"ResourceAlreadyExistsException":{
|
1722
|
-
"type":"structure",
|
1723
|
-
"members":{
|
1724
|
-
"message":{"shape":"errorMessage"}
|
1725
|
-
},
|
1726
|
-
"error":{"httpStatusCode":400},
|
1727
|
-
"exception":true
|
1728
|
-
},
|
1729
|
-
"ResourceNotFoundException":{
|
1730
|
-
"type":"structure",
|
1731
|
-
"members":{
|
1732
|
-
"message":{"shape":"errorMessage"}
|
1733
|
-
},
|
1734
|
-
"error":{"httpStatusCode":400},
|
1735
|
-
"exception":true
|
1736
|
-
},
|
1737
|
-
"RestartSimulationJobRequest":{
|
1738
|
-
"type":"structure",
|
1739
|
-
"required":["job"],
|
1740
|
-
"members":{
|
1741
|
-
"job":{"shape":"Arn"}
|
1742
|
-
}
|
1743
|
-
},
|
1744
|
-
"RestartSimulationJobResponse":{
|
1745
|
-
"type":"structure",
|
1746
|
-
"members":{
|
1747
|
-
}
|
1748
|
-
},
|
1749
|
-
"RevisionId":{
|
1750
|
-
"type":"string",
|
1751
|
-
"max":40,
|
1752
|
-
"min":1,
|
1753
|
-
"pattern":"[a-zA-Z0-9_.\\-]*"
|
1754
|
-
},
|
1755
|
-
"Robot":{
|
1756
|
-
"type":"structure",
|
1757
|
-
"members":{
|
1758
|
-
"arn":{"shape":"Arn"},
|
1759
|
-
"name":{"shape":"Name"},
|
1760
|
-
"fleetArn":{"shape":"Arn"},
|
1761
|
-
"status":{"shape":"RobotStatus"},
|
1762
|
-
"greenGrassGroupId":{"shape":"Id"},
|
1763
|
-
"createdAt":{"shape":"CreatedAt"},
|
1764
|
-
"architecture":{"shape":"Architecture"},
|
1765
|
-
"lastDeploymentJob":{"shape":"Arn"},
|
1766
|
-
"lastDeploymentTime":{"shape":"CreatedAt"}
|
1767
|
-
}
|
1768
|
-
},
|
1769
|
-
"RobotApplicationConfig":{
|
1770
|
-
"type":"structure",
|
1771
|
-
"required":[
|
1772
|
-
"application",
|
1773
|
-
"launchConfig"
|
1774
|
-
],
|
1775
|
-
"members":{
|
1776
|
-
"application":{"shape":"Arn"},
|
1777
|
-
"applicationVersion":{"shape":"Version"},
|
1778
|
-
"launchConfig":{"shape":"LaunchConfig"}
|
1779
|
-
}
|
1780
|
-
},
|
1781
|
-
"RobotApplicationConfigs":{
|
1782
|
-
"type":"list",
|
1783
|
-
"member":{"shape":"RobotApplicationConfig"},
|
1784
|
-
"max":1,
|
1785
|
-
"min":1
|
1786
|
-
},
|
1787
|
-
"RobotApplicationNames":{
|
1788
|
-
"type":"list",
|
1789
|
-
"member":{"shape":"Name"}
|
1790
|
-
},
|
1791
|
-
"RobotApplicationSummaries":{
|
1792
|
-
"type":"list",
|
1793
|
-
"member":{"shape":"RobotApplicationSummary"},
|
1794
|
-
"max":100,
|
1795
|
-
"min":0
|
1796
|
-
},
|
1797
|
-
"RobotApplicationSummary":{
|
1798
|
-
"type":"structure",
|
1799
|
-
"members":{
|
1800
|
-
"name":{"shape":"Name"},
|
1801
|
-
"arn":{"shape":"Arn"},
|
1802
|
-
"version":{"shape":"Version"},
|
1803
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1804
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"}
|
1805
|
-
}
|
1806
|
-
},
|
1807
|
-
"RobotDeployment":{
|
1808
|
-
"type":"structure",
|
1809
|
-
"members":{
|
1810
|
-
"arn":{"shape":"Arn"},
|
1811
|
-
"deploymentStartTime":{"shape":"CreatedAt"},
|
1812
|
-
"deploymentFinishTime":{"shape":"CreatedAt"},
|
1813
|
-
"status":{"shape":"RobotStatus"},
|
1814
|
-
"progressDetail":{"shape":"ProgressDetail"},
|
1815
|
-
"failureReason":{"shape":"GenericString"},
|
1816
|
-
"failureCode":{"shape":"DeploymentJobErrorCode"}
|
1817
|
-
}
|
1818
|
-
},
|
1819
|
-
"RobotDeploymentStep":{
|
1820
|
-
"type":"string",
|
1821
|
-
"enum":[
|
1822
|
-
"Validating",
|
1823
|
-
"DownloadingExtracting",
|
1824
|
-
"ExecutingDownloadCondition",
|
1825
|
-
"ExecutingPreLaunch",
|
1826
|
-
"Launching",
|
1827
|
-
"ExecutingPostLaunch",
|
1828
|
-
"Finished"
|
1829
|
-
]
|
1830
|
-
},
|
1831
|
-
"RobotDeploymentSummary":{
|
1832
|
-
"type":"list",
|
1833
|
-
"member":{"shape":"RobotDeployment"}
|
1834
|
-
},
|
1835
|
-
"RobotSoftwareSuite":{
|
1836
|
-
"type":"structure",
|
1837
|
-
"members":{
|
1838
|
-
"name":{"shape":"RobotSoftwareSuiteType"},
|
1839
|
-
"version":{"shape":"RobotSoftwareSuiteVersionType"}
|
1840
|
-
}
|
1841
|
-
},
|
1842
|
-
"RobotSoftwareSuiteType":{
|
1843
|
-
"type":"string",
|
1844
|
-
"enum":[
|
1845
|
-
"ROS",
|
1846
|
-
"ROS2"
|
1847
|
-
]
|
1848
|
-
},
|
1849
|
-
"RobotSoftwareSuiteVersionType":{
|
1850
|
-
"type":"string",
|
1851
|
-
"enum":[
|
1852
|
-
"Kinetic",
|
1853
|
-
"Melodic",
|
1854
|
-
"Dashing"
|
1855
|
-
]
|
1856
|
-
},
|
1857
|
-
"RobotStatus":{
|
1858
|
-
"type":"string",
|
1859
|
-
"enum":[
|
1860
|
-
"Available",
|
1861
|
-
"Registered",
|
1862
|
-
"PendingNewDeployment",
|
1863
|
-
"Deploying",
|
1864
|
-
"Failed",
|
1865
|
-
"InSync",
|
1866
|
-
"NoResponse"
|
1867
|
-
]
|
1868
|
-
},
|
1869
|
-
"Robots":{
|
1870
|
-
"type":"list",
|
1871
|
-
"member":{"shape":"Robot"},
|
1872
|
-
"max":1000,
|
1873
|
-
"min":0
|
1874
|
-
},
|
1875
|
-
"S3Bucket":{
|
1876
|
-
"type":"string",
|
1877
|
-
"max":63,
|
1878
|
-
"min":3,
|
1879
|
-
"pattern":"[a-z0-9][a-z0-9.\\-]*[a-z0-9]"
|
1880
|
-
},
|
1881
|
-
"S3Etag":{"type":"string"},
|
1882
|
-
"S3Key":{
|
1883
|
-
"type":"string",
|
1884
|
-
"max":1024,
|
1885
|
-
"min":1,
|
1886
|
-
"pattern":".*"
|
1887
|
-
},
|
1888
|
-
"S3KeyOutput":{
|
1889
|
-
"type":"structure",
|
1890
|
-
"members":{
|
1891
|
-
"s3Key":{"shape":"S3Key"},
|
1892
|
-
"etag":{"shape":"S3Etag"}
|
1893
|
-
}
|
1894
|
-
},
|
1895
|
-
"S3KeyOutputs":{
|
1896
|
-
"type":"list",
|
1897
|
-
"member":{"shape":"S3KeyOutput"}
|
1898
|
-
},
|
1899
|
-
"S3Keys":{
|
1900
|
-
"type":"list",
|
1901
|
-
"member":{"shape":"S3Key"},
|
1902
|
-
"max":100,
|
1903
|
-
"min":1
|
1904
|
-
},
|
1905
|
-
"S3Object":{
|
1906
|
-
"type":"structure",
|
1907
|
-
"required":[
|
1908
|
-
"bucket",
|
1909
|
-
"key"
|
1910
|
-
],
|
1911
|
-
"members":{
|
1912
|
-
"bucket":{"shape":"S3Bucket"},
|
1913
|
-
"key":{"shape":"S3Key"},
|
1914
|
-
"etag":{"shape":"S3Etag"}
|
1915
|
-
}
|
1916
|
-
},
|
1917
|
-
"SecurityGroups":{
|
1918
|
-
"type":"list",
|
1919
|
-
"member":{"shape":"NonEmptyString"},
|
1920
|
-
"max":5,
|
1921
|
-
"min":1
|
1922
|
-
},
|
1923
|
-
"ServiceUnavailableException":{
|
1924
|
-
"type":"structure",
|
1925
|
-
"members":{
|
1926
|
-
"message":{"shape":"errorMessage"}
|
1927
|
-
},
|
1928
|
-
"error":{"httpStatusCode":503},
|
1929
|
-
"exception":true
|
1930
|
-
},
|
1931
|
-
"SimulationApplicationConfig":{
|
1932
|
-
"type":"structure",
|
1933
|
-
"required":[
|
1934
|
-
"application",
|
1935
|
-
"launchConfig"
|
1936
|
-
],
|
1937
|
-
"members":{
|
1938
|
-
"application":{"shape":"Arn"},
|
1939
|
-
"applicationVersion":{"shape":"Version"},
|
1940
|
-
"launchConfig":{"shape":"LaunchConfig"}
|
1941
|
-
}
|
1942
|
-
},
|
1943
|
-
"SimulationApplicationConfigs":{
|
1944
|
-
"type":"list",
|
1945
|
-
"member":{"shape":"SimulationApplicationConfig"},
|
1946
|
-
"max":1,
|
1947
|
-
"min":1
|
1948
|
-
},
|
1949
|
-
"SimulationApplicationNames":{
|
1950
|
-
"type":"list",
|
1951
|
-
"member":{"shape":"Name"}
|
1952
|
-
},
|
1953
|
-
"SimulationApplicationSummaries":{
|
1954
|
-
"type":"list",
|
1955
|
-
"member":{"shape":"SimulationApplicationSummary"},
|
1956
|
-
"max":100,
|
1957
|
-
"min":0
|
1958
|
-
},
|
1959
|
-
"SimulationApplicationSummary":{
|
1960
|
-
"type":"structure",
|
1961
|
-
"members":{
|
1962
|
-
"name":{"shape":"Name"},
|
1963
|
-
"arn":{"shape":"Arn"},
|
1964
|
-
"version":{"shape":"Version"},
|
1965
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1966
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
1967
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"}
|
1968
|
-
}
|
1969
|
-
},
|
1970
|
-
"SimulationJob":{
|
1971
|
-
"type":"structure",
|
1972
|
-
"members":{
|
1973
|
-
"arn":{"shape":"Arn"},
|
1974
|
-
"name":{"shape":"Name"},
|
1975
|
-
"status":{"shape":"SimulationJobStatus"},
|
1976
|
-
"lastStartedAt":{"shape":"LastStartedAt"},
|
1977
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
1978
|
-
"failureBehavior":{"shape":"FailureBehavior"},
|
1979
|
-
"failureCode":{"shape":"SimulationJobErrorCode"},
|
1980
|
-
"failureReason":{"shape":"GenericString"},
|
1981
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
1982
|
-
"outputLocation":{"shape":"OutputLocation"},
|
1983
|
-
"loggingConfig":{"shape":"LoggingConfig"},
|
1984
|
-
"maxJobDurationInSeconds":{"shape":"JobDuration"},
|
1985
|
-
"simulationTimeMillis":{"shape":"SimulationTimeMillis"},
|
1986
|
-
"iamRole":{"shape":"IamRole"},
|
1987
|
-
"robotApplications":{"shape":"RobotApplicationConfigs"},
|
1988
|
-
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
|
1989
|
-
"dataSources":{"shape":"DataSources"},
|
1990
|
-
"tags":{"shape":"TagMap"},
|
1991
|
-
"vpcConfig":{"shape":"VPCConfigResponse"},
|
1992
|
-
"networkInterface":{"shape":"NetworkInterface"}
|
1993
|
-
}
|
1994
|
-
},
|
1995
|
-
"SimulationJobBatchErrorCode":{
|
1996
|
-
"type":"string",
|
1997
|
-
"enum":["InternalServiceError"]
|
1998
|
-
},
|
1999
|
-
"SimulationJobBatchStatus":{
|
2000
|
-
"type":"string",
|
2001
|
-
"enum":[
|
2002
|
-
"Pending",
|
2003
|
-
"InProgress",
|
2004
|
-
"Failed",
|
2005
|
-
"Completed",
|
2006
|
-
"Canceled",
|
2007
|
-
"Canceling",
|
2008
|
-
"Completing",
|
2009
|
-
"TimingOut",
|
2010
|
-
"TimedOut"
|
2011
|
-
]
|
2012
|
-
},
|
2013
|
-
"SimulationJobBatchSummaries":{
|
2014
|
-
"type":"list",
|
2015
|
-
"member":{"shape":"SimulationJobBatchSummary"}
|
2016
|
-
},
|
2017
|
-
"SimulationJobBatchSummary":{
|
2018
|
-
"type":"structure",
|
2019
|
-
"members":{
|
2020
|
-
"arn":{"shape":"Arn"},
|
2021
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
2022
|
-
"createdAt":{"shape":"CreatedAt"},
|
2023
|
-
"status":{"shape":"SimulationJobBatchStatus"},
|
2024
|
-
"failedRequestCount":{"shape":"Integer"},
|
2025
|
-
"pendingRequestCount":{"shape":"Integer"},
|
2026
|
-
"createdRequestCount":{"shape":"Integer"}
|
2027
|
-
}
|
2028
|
-
},
|
2029
|
-
"SimulationJobErrorCode":{
|
2030
|
-
"type":"string",
|
2031
|
-
"enum":[
|
2032
|
-
"InternalServiceError",
|
2033
|
-
"RobotApplicationCrash",
|
2034
|
-
"SimulationApplicationCrash",
|
2035
|
-
"BadPermissionsRobotApplication",
|
2036
|
-
"BadPermissionsSimulationApplication",
|
2037
|
-
"BadPermissionsS3Object",
|
2038
|
-
"BadPermissionsS3Output",
|
2039
|
-
"BadPermissionsCloudwatchLogs",
|
2040
|
-
"SubnetIpLimitExceeded",
|
2041
|
-
"ENILimitExceeded",
|
2042
|
-
"BadPermissionsUserCredentials",
|
2043
|
-
"InvalidBundleRobotApplication",
|
2044
|
-
"InvalidBundleSimulationApplication",
|
2045
|
-
"InvalidS3Resource",
|
2046
|
-
"LimitExceeded",
|
2047
|
-
"MismatchedEtag",
|
2048
|
-
"RobotApplicationVersionMismatchedEtag",
|
2049
|
-
"SimulationApplicationVersionMismatchedEtag",
|
2050
|
-
"ResourceNotFound",
|
2051
|
-
"RequestThrottled",
|
2052
|
-
"BatchTimedOut",
|
2053
|
-
"BatchCanceled",
|
2054
|
-
"InvalidInput",
|
2055
|
-
"WrongRegionS3Bucket",
|
2056
|
-
"WrongRegionS3Output",
|
2057
|
-
"WrongRegionRobotApplication",
|
2058
|
-
"WrongRegionSimulationApplication"
|
2059
|
-
]
|
2060
|
-
},
|
2061
|
-
"SimulationJobRequest":{
|
2062
|
-
"type":"structure",
|
2063
|
-
"required":["maxJobDurationInSeconds"],
|
2064
|
-
"members":{
|
2065
|
-
"outputLocation":{"shape":"OutputLocation"},
|
2066
|
-
"loggingConfig":{"shape":"LoggingConfig"},
|
2067
|
-
"maxJobDurationInSeconds":{"shape":"JobDuration"},
|
2068
|
-
"iamRole":{"shape":"IamRole"},
|
2069
|
-
"failureBehavior":{"shape":"FailureBehavior"},
|
2070
|
-
"useDefaultApplications":{"shape":"BoxedBoolean"},
|
2071
|
-
"robotApplications":{"shape":"RobotApplicationConfigs"},
|
2072
|
-
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
|
2073
|
-
"dataSources":{"shape":"DataSourceConfigs"},
|
2074
|
-
"vpcConfig":{"shape":"VPCConfig"},
|
2075
|
-
"tags":{"shape":"TagMap"}
|
2076
|
-
}
|
2077
|
-
},
|
2078
|
-
"SimulationJobStatus":{
|
2079
|
-
"type":"string",
|
2080
|
-
"enum":[
|
2081
|
-
"Pending",
|
2082
|
-
"Preparing",
|
2083
|
-
"Running",
|
2084
|
-
"Restarting",
|
2085
|
-
"Completed",
|
2086
|
-
"Failed",
|
2087
|
-
"RunningFailed",
|
2088
|
-
"Terminating",
|
2089
|
-
"Terminated",
|
2090
|
-
"Canceled"
|
2091
|
-
]
|
2092
|
-
},
|
2093
|
-
"SimulationJobSummaries":{
|
2094
|
-
"type":"list",
|
2095
|
-
"member":{"shape":"SimulationJobSummary"},
|
2096
|
-
"max":100,
|
2097
|
-
"min":0
|
2098
|
-
},
|
2099
|
-
"SimulationJobSummary":{
|
2100
|
-
"type":"structure",
|
2101
|
-
"members":{
|
2102
|
-
"arn":{"shape":"Arn"},
|
2103
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
2104
|
-
"name":{"shape":"Name"},
|
2105
|
-
"status":{"shape":"SimulationJobStatus"},
|
2106
|
-
"simulationApplicationNames":{"shape":"SimulationApplicationNames"},
|
2107
|
-
"robotApplicationNames":{"shape":"RobotApplicationNames"},
|
2108
|
-
"dataSourceNames":{"shape":"DataSourceNames"}
|
2109
|
-
}
|
2110
|
-
},
|
2111
|
-
"SimulationJobs":{
|
2112
|
-
"type":"list",
|
2113
|
-
"member":{"shape":"SimulationJob"}
|
2114
|
-
},
|
2115
|
-
"SimulationSoftwareSuite":{
|
2116
|
-
"type":"structure",
|
2117
|
-
"members":{
|
2118
|
-
"name":{"shape":"SimulationSoftwareSuiteType"},
|
2119
|
-
"version":{"shape":"SimulationSoftwareSuiteVersionType"}
|
2120
|
-
}
|
2121
|
-
},
|
2122
|
-
"SimulationSoftwareSuiteType":{
|
2123
|
-
"type":"string",
|
2124
|
-
"enum":[
|
2125
|
-
"Gazebo",
|
2126
|
-
"RosbagPlay"
|
2127
|
-
]
|
2128
|
-
},
|
2129
|
-
"SimulationSoftwareSuiteVersionType":{
|
2130
|
-
"type":"string",
|
2131
|
-
"pattern":"7|9|Kinetic|Melodic|Dashing"
|
2132
|
-
},
|
2133
|
-
"SimulationTimeMillis":{"type":"long"},
|
2134
|
-
"Source":{
|
2135
|
-
"type":"structure",
|
2136
|
-
"members":{
|
2137
|
-
"s3Bucket":{"shape":"S3Bucket"},
|
2138
|
-
"s3Key":{"shape":"S3Key"},
|
2139
|
-
"etag":{"shape":"S3Etag"},
|
2140
|
-
"architecture":{"shape":"Architecture"}
|
2141
|
-
}
|
2142
|
-
},
|
2143
|
-
"SourceConfig":{
|
2144
|
-
"type":"structure",
|
2145
|
-
"members":{
|
2146
|
-
"s3Bucket":{"shape":"S3Bucket"},
|
2147
|
-
"s3Key":{"shape":"S3Key"},
|
2148
|
-
"architecture":{"shape":"Architecture"}
|
2149
|
-
}
|
2150
|
-
},
|
2151
|
-
"SourceConfigs":{
|
2152
|
-
"type":"list",
|
2153
|
-
"member":{"shape":"SourceConfig"}
|
2154
|
-
},
|
2155
|
-
"Sources":{
|
2156
|
-
"type":"list",
|
2157
|
-
"member":{"shape":"Source"}
|
2158
|
-
},
|
2159
|
-
"StartSimulationJobBatchRequest":{
|
2160
|
-
"type":"structure",
|
2161
|
-
"required":["createSimulationJobRequests"],
|
2162
|
-
"members":{
|
2163
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
2164
|
-
"batchPolicy":{"shape":"BatchPolicy"},
|
2165
|
-
"createSimulationJobRequests":{"shape":"CreateSimulationJobRequests"},
|
2166
|
-
"tags":{"shape":"TagMap"}
|
2167
|
-
}
|
2168
|
-
},
|
2169
|
-
"StartSimulationJobBatchResponse":{
|
2170
|
-
"type":"structure",
|
2171
|
-
"members":{
|
2172
|
-
"arn":{"shape":"Arn"},
|
2173
|
-
"status":{"shape":"SimulationJobBatchStatus"},
|
2174
|
-
"createdAt":{"shape":"CreatedAt"},
|
2175
|
-
"clientRequestToken":{"shape":"ClientRequestToken"},
|
2176
|
-
"batchPolicy":{"shape":"BatchPolicy"},
|
2177
|
-
"failureCode":{"shape":"SimulationJobBatchErrorCode"},
|
2178
|
-
"failureReason":{"shape":"GenericString"},
|
2179
|
-
"failedRequests":{"shape":"FailedCreateSimulationJobRequests"},
|
2180
|
-
"pendingRequests":{"shape":"CreateSimulationJobRequests"},
|
2181
|
-
"createdRequests":{"shape":"SimulationJobSummaries"},
|
2182
|
-
"tags":{"shape":"TagMap"}
|
2183
|
-
}
|
2184
|
-
},
|
2185
|
-
"Subnets":{
|
2186
|
-
"type":"list",
|
2187
|
-
"member":{"shape":"NonEmptyString"},
|
2188
|
-
"max":16,
|
2189
|
-
"min":1
|
2190
|
-
},
|
2191
|
-
"SyncDeploymentJobRequest":{
|
2192
|
-
"type":"structure",
|
2193
|
-
"required":[
|
2194
|
-
"clientRequestToken",
|
2195
|
-
"fleet"
|
2196
|
-
],
|
2197
|
-
"members":{
|
2198
|
-
"clientRequestToken":{
|
2199
|
-
"shape":"ClientRequestToken",
|
2200
|
-
"idempotencyToken":true
|
2201
|
-
},
|
2202
|
-
"fleet":{"shape":"Arn"}
|
2203
|
-
}
|
2204
|
-
},
|
2205
|
-
"SyncDeploymentJobResponse":{
|
2206
|
-
"type":"structure",
|
2207
|
-
"members":{
|
2208
|
-
"arn":{"shape":"Arn"},
|
2209
|
-
"fleet":{"shape":"Arn"},
|
2210
|
-
"status":{"shape":"DeploymentStatus"},
|
2211
|
-
"deploymentConfig":{"shape":"DeploymentConfig"},
|
2212
|
-
"deploymentApplicationConfigs":{"shape":"DeploymentApplicationConfigs"},
|
2213
|
-
"failureReason":{"shape":"GenericString"},
|
2214
|
-
"failureCode":{"shape":"DeploymentJobErrorCode"},
|
2215
|
-
"createdAt":{"shape":"CreatedAt"}
|
2216
|
-
}
|
2217
|
-
},
|
2218
|
-
"TagKey":{
|
2219
|
-
"type":"string",
|
2220
|
-
"max":128,
|
2221
|
-
"min":1,
|
2222
|
-
"pattern":"[a-zA-Z0-9 _.\\-\\/+=:]*"
|
2223
|
-
},
|
2224
|
-
"TagKeyList":{
|
2225
|
-
"type":"list",
|
2226
|
-
"member":{"shape":"TagKey"}
|
2227
|
-
},
|
2228
|
-
"TagMap":{
|
2229
|
-
"type":"map",
|
2230
|
-
"key":{"shape":"TagKey"},
|
2231
|
-
"value":{"shape":"TagValue"},
|
2232
|
-
"max":50,
|
2233
|
-
"min":0
|
2234
|
-
},
|
2235
|
-
"TagResourceRequest":{
|
2236
|
-
"type":"structure",
|
2237
|
-
"required":[
|
2238
|
-
"resourceArn",
|
2239
|
-
"tags"
|
2240
|
-
],
|
2241
|
-
"members":{
|
2242
|
-
"resourceArn":{
|
2243
|
-
"shape":"Arn",
|
2244
|
-
"location":"uri",
|
2245
|
-
"locationName":"resourceArn"
|
2246
|
-
},
|
2247
|
-
"tags":{"shape":"TagMap"}
|
2248
|
-
}
|
2249
|
-
},
|
2250
|
-
"TagResourceResponse":{
|
2251
|
-
"type":"structure",
|
2252
|
-
"members":{
|
2253
|
-
}
|
2254
|
-
},
|
2255
|
-
"TagValue":{
|
2256
|
-
"type":"string",
|
2257
|
-
"max":256,
|
2258
|
-
"min":0,
|
2259
|
-
"pattern":"[a-zA-Z0-9 _.\\-\\/+=:]*"
|
2260
|
-
},
|
2261
|
-
"ThrottlingException":{
|
2262
|
-
"type":"structure",
|
2263
|
-
"members":{
|
2264
|
-
"message":{"shape":"errorMessage"}
|
2265
|
-
},
|
2266
|
-
"error":{"httpStatusCode":400},
|
2267
|
-
"exception":true
|
2268
|
-
},
|
2269
|
-
"UntagResourceRequest":{
|
2270
|
-
"type":"structure",
|
2271
|
-
"required":[
|
2272
|
-
"resourceArn",
|
2273
|
-
"tagKeys"
|
2274
|
-
],
|
2275
|
-
"members":{
|
2276
|
-
"resourceArn":{
|
2277
|
-
"shape":"Arn",
|
2278
|
-
"location":"uri",
|
2279
|
-
"locationName":"resourceArn"
|
2280
|
-
},
|
2281
|
-
"tagKeys":{
|
2282
|
-
"shape":"TagKeyList",
|
2283
|
-
"location":"querystring",
|
2284
|
-
"locationName":"tagKeys"
|
2285
|
-
}
|
2286
|
-
}
|
2287
|
-
},
|
2288
|
-
"UntagResourceResponse":{
|
2289
|
-
"type":"structure",
|
2290
|
-
"members":{
|
2291
|
-
}
|
2292
|
-
},
|
2293
|
-
"UpdateRobotApplicationRequest":{
|
2294
|
-
"type":"structure",
|
2295
|
-
"required":[
|
2296
|
-
"application",
|
2297
|
-
"sources",
|
2298
|
-
"robotSoftwareSuite"
|
2299
|
-
],
|
2300
|
-
"members":{
|
2301
|
-
"application":{"shape":"Arn"},
|
2302
|
-
"sources":{"shape":"SourceConfigs"},
|
2303
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
2304
|
-
"currentRevisionId":{"shape":"RevisionId"}
|
2305
|
-
}
|
2306
|
-
},
|
2307
|
-
"UpdateRobotApplicationResponse":{
|
2308
|
-
"type":"structure",
|
2309
|
-
"members":{
|
2310
|
-
"arn":{"shape":"Arn"},
|
2311
|
-
"name":{"shape":"Name"},
|
2312
|
-
"version":{"shape":"Version"},
|
2313
|
-
"sources":{"shape":"Sources"},
|
2314
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
2315
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
2316
|
-
"revisionId":{"shape":"RevisionId"}
|
2317
|
-
}
|
2318
|
-
},
|
2319
|
-
"UpdateSimulationApplicationRequest":{
|
2320
|
-
"type":"structure",
|
2321
|
-
"required":[
|
2322
|
-
"application",
|
2323
|
-
"sources",
|
2324
|
-
"simulationSoftwareSuite",
|
2325
|
-
"robotSoftwareSuite"
|
2326
|
-
],
|
2327
|
-
"members":{
|
2328
|
-
"application":{"shape":"Arn"},
|
2329
|
-
"sources":{"shape":"SourceConfigs"},
|
2330
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
2331
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
2332
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
2333
|
-
"currentRevisionId":{"shape":"RevisionId"}
|
2334
|
-
}
|
2335
|
-
},
|
2336
|
-
"UpdateSimulationApplicationResponse":{
|
2337
|
-
"type":"structure",
|
2338
|
-
"members":{
|
2339
|
-
"arn":{"shape":"Arn"},
|
2340
|
-
"name":{"shape":"Name"},
|
2341
|
-
"version":{"shape":"Version"},
|
2342
|
-
"sources":{"shape":"Sources"},
|
2343
|
-
"simulationSoftwareSuite":{"shape":"SimulationSoftwareSuite"},
|
2344
|
-
"robotSoftwareSuite":{"shape":"RobotSoftwareSuite"},
|
2345
|
-
"renderingEngine":{"shape":"RenderingEngine"},
|
2346
|
-
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
2347
|
-
"revisionId":{"shape":"RevisionId"}
|
2348
|
-
}
|
2349
|
-
},
|
2350
|
-
"VPCConfig":{
|
2351
|
-
"type":"structure",
|
2352
|
-
"required":["subnets"],
|
2353
|
-
"members":{
|
2354
|
-
"subnets":{"shape":"Subnets"},
|
2355
|
-
"securityGroups":{"shape":"SecurityGroups"},
|
2356
|
-
"assignPublicIp":{"shape":"Boolean"}
|
2357
|
-
}
|
2358
|
-
},
|
2359
|
-
"VPCConfigResponse":{
|
2360
|
-
"type":"structure",
|
2361
|
-
"members":{
|
2362
|
-
"subnets":{"shape":"Subnets"},
|
2363
|
-
"securityGroups":{"shape":"SecurityGroups"},
|
2364
|
-
"vpcId":{"shape":"GenericString"},
|
2365
|
-
"assignPublicIp":{"shape":"Boolean"}
|
2366
|
-
}
|
2367
|
-
},
|
2368
|
-
"Version":{
|
2369
|
-
"type":"string",
|
2370
|
-
"max":255,
|
2371
|
-
"min":1,
|
2372
|
-
"pattern":"(\\$LATEST)|[0-9]*"
|
2373
|
-
},
|
2374
|
-
"VersionQualifier":{
|
2375
|
-
"type":"string",
|
2376
|
-
"pattern":"ALL"
|
2377
|
-
},
|
2378
|
-
"errorMessage":{"type":"string"}
|
2379
|
-
}
|
2380
|
-
}
|