aws-sdk-core 2.11.335 → 3.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -547
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- 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 +147 -10
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1021
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3994
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3202
- 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 -2304
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3270
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -16
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -247
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1204
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -24837
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2809
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -597
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -4
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3131
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3447
- 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 -798
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2345
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -8711
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2490
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6575
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2093
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2095
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1078
- 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 -8913
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1372
- 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 -3160
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -504
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -851
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -4601
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/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 -749
@@ -1,1148 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "1.0",
|
3
|
-
"examples": {
|
4
|
-
"AddAttributesToFindings": [
|
5
|
-
{
|
6
|
-
"input": {
|
7
|
-
"attributes": [
|
8
|
-
{
|
9
|
-
"key": "Example",
|
10
|
-
"value": "example"
|
11
|
-
}
|
12
|
-
],
|
13
|
-
"findingArns": [
|
14
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-8l1VIE0D/run/0-Z02cjjug/finding/0-T8yM9mEU"
|
15
|
-
]
|
16
|
-
},
|
17
|
-
"output": {
|
18
|
-
"failedItems": {
|
19
|
-
}
|
20
|
-
},
|
21
|
-
"comments": {
|
22
|
-
"input": {
|
23
|
-
},
|
24
|
-
"output": {
|
25
|
-
}
|
26
|
-
},
|
27
|
-
"description": "Assigns attributes (key and value pairs) to the findings that are specified by the ARNs of the findings.",
|
28
|
-
"id": "add-attributes-to-findings-1481063856401",
|
29
|
-
"title": "Add attributes to findings"
|
30
|
-
}
|
31
|
-
],
|
32
|
-
"CreateAssessmentTarget": [
|
33
|
-
{
|
34
|
-
"input": {
|
35
|
-
"assessmentTargetName": "ExampleAssessmentTarget",
|
36
|
-
"resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv"
|
37
|
-
},
|
38
|
-
"output": {
|
39
|
-
"assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX"
|
40
|
-
},
|
41
|
-
"comments": {
|
42
|
-
"input": {
|
43
|
-
},
|
44
|
-
"output": {
|
45
|
-
}
|
46
|
-
},
|
47
|
-
"description": "Creates a new assessment target using the ARN of the resource group that is generated by CreateResourceGroup. You can create up to 50 assessment targets per AWS account. You can run up to 500 concurrent agents per AWS account.",
|
48
|
-
"id": "create-assessment-target-1481063953657",
|
49
|
-
"title": "Create assessment target"
|
50
|
-
}
|
51
|
-
],
|
52
|
-
"CreateAssessmentTemplate": [
|
53
|
-
{
|
54
|
-
"input": {
|
55
|
-
"assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX",
|
56
|
-
"assessmentTemplateName": "ExampleAssessmentTemplate",
|
57
|
-
"durationInSeconds": 180,
|
58
|
-
"rulesPackageArns": [
|
59
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-11B9DBXp"
|
60
|
-
],
|
61
|
-
"userAttributesForFindings": [
|
62
|
-
{
|
63
|
-
"key": "Example",
|
64
|
-
"value": "example"
|
65
|
-
}
|
66
|
-
]
|
67
|
-
},
|
68
|
-
"output": {
|
69
|
-
"assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T"
|
70
|
-
},
|
71
|
-
"comments": {
|
72
|
-
"input": {
|
73
|
-
},
|
74
|
-
"output": {
|
75
|
-
}
|
76
|
-
},
|
77
|
-
"description": "Creates an assessment template for the assessment target that is specified by the ARN of the assessment target.",
|
78
|
-
"id": "create-assessment-template-1481064046719",
|
79
|
-
"title": "Create assessment template"
|
80
|
-
}
|
81
|
-
],
|
82
|
-
"CreateResourceGroup": [
|
83
|
-
{
|
84
|
-
"input": {
|
85
|
-
"resourceGroupTags": [
|
86
|
-
{
|
87
|
-
"key": "Name",
|
88
|
-
"value": "example"
|
89
|
-
}
|
90
|
-
]
|
91
|
-
},
|
92
|
-
"output": {
|
93
|
-
"resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-AB6DMKnv"
|
94
|
-
},
|
95
|
-
"comments": {
|
96
|
-
"input": {
|
97
|
-
},
|
98
|
-
"output": {
|
99
|
-
}
|
100
|
-
},
|
101
|
-
"description": "Creates a resource group using the specified set of tags (key and value pairs) that are used to select the EC2 instances to be included in an Amazon Inspector assessment target. The created resource group is then used to create an Amazon Inspector assessment target. ",
|
102
|
-
"id": "create-resource-group-1481064169037",
|
103
|
-
"title": "Create resource group"
|
104
|
-
}
|
105
|
-
],
|
106
|
-
"DeleteAssessmentRun": [
|
107
|
-
{
|
108
|
-
"input": {
|
109
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe"
|
110
|
-
},
|
111
|
-
"comments": {
|
112
|
-
"input": {
|
113
|
-
},
|
114
|
-
"output": {
|
115
|
-
}
|
116
|
-
},
|
117
|
-
"description": "Deletes the assessment run that is specified by the ARN of the assessment run.",
|
118
|
-
"id": "delete-assessment-run-1481064251629",
|
119
|
-
"title": "Delete assessment run"
|
120
|
-
}
|
121
|
-
],
|
122
|
-
"DeleteAssessmentTarget": [
|
123
|
-
{
|
124
|
-
"input": {
|
125
|
-
"assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
|
126
|
-
},
|
127
|
-
"comments": {
|
128
|
-
"input": {
|
129
|
-
},
|
130
|
-
"output": {
|
131
|
-
}
|
132
|
-
},
|
133
|
-
"description": "Deletes the assessment target that is specified by the ARN of the assessment target.",
|
134
|
-
"id": "delete-assessment-target-1481064309029",
|
135
|
-
"title": "Delete assessment target"
|
136
|
-
}
|
137
|
-
],
|
138
|
-
"DeleteAssessmentTemplate": [
|
139
|
-
{
|
140
|
-
"input": {
|
141
|
-
"assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T"
|
142
|
-
},
|
143
|
-
"comments": {
|
144
|
-
"input": {
|
145
|
-
},
|
146
|
-
"output": {
|
147
|
-
}
|
148
|
-
},
|
149
|
-
"description": "Deletes the assessment template that is specified by the ARN of the assessment template.",
|
150
|
-
"id": "delete-assessment-template-1481064364074",
|
151
|
-
"title": "Delete assessment template"
|
152
|
-
}
|
153
|
-
],
|
154
|
-
"DescribeAssessmentRuns": [
|
155
|
-
{
|
156
|
-
"input": {
|
157
|
-
"assessmentRunArns": [
|
158
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE"
|
159
|
-
]
|
160
|
-
},
|
161
|
-
"output": {
|
162
|
-
"assessmentRuns": [
|
163
|
-
{
|
164
|
-
"name": "Run 1 for ExampleAssessmentTemplate",
|
165
|
-
"arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE",
|
166
|
-
"assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw",
|
167
|
-
"completedAt": "1458680301.4",
|
168
|
-
"createdAt": "1458680170.035",
|
169
|
-
"dataCollected": true,
|
170
|
-
"durationInSeconds": 3600,
|
171
|
-
"findingCounts": {
|
172
|
-
"High": 14,
|
173
|
-
"Informational": 0,
|
174
|
-
"Low": 0,
|
175
|
-
"Medium": 2,
|
176
|
-
"Undefined": 0
|
177
|
-
},
|
178
|
-
"notifications": [
|
179
|
-
|
180
|
-
],
|
181
|
-
"rulesPackageArns": [
|
182
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP"
|
183
|
-
],
|
184
|
-
"startedAt": "1458680170.161",
|
185
|
-
"state": "COMPLETED",
|
186
|
-
"stateChangedAt": "1458680301.4",
|
187
|
-
"stateChanges": [
|
188
|
-
{
|
189
|
-
"state": "CREATED",
|
190
|
-
"stateChangedAt": "1458680170.035"
|
191
|
-
},
|
192
|
-
{
|
193
|
-
"state": "START_DATA_COLLECTION_PENDING",
|
194
|
-
"stateChangedAt": "1458680170.065"
|
195
|
-
},
|
196
|
-
{
|
197
|
-
"state": "START_DATA_COLLECTION_IN_PROGRESS",
|
198
|
-
"stateChangedAt": "1458680170.096"
|
199
|
-
},
|
200
|
-
{
|
201
|
-
"state": "COLLECTING_DATA",
|
202
|
-
"stateChangedAt": "1458680170.161"
|
203
|
-
},
|
204
|
-
{
|
205
|
-
"state": "STOP_DATA_COLLECTION_PENDING",
|
206
|
-
"stateChangedAt": "1458680239.883"
|
207
|
-
},
|
208
|
-
{
|
209
|
-
"state": "DATA_COLLECTED",
|
210
|
-
"stateChangedAt": "1458680299.847"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"state": "EVALUATING_RULES",
|
214
|
-
"stateChangedAt": "1458680300.099"
|
215
|
-
},
|
216
|
-
{
|
217
|
-
"state": "COMPLETED",
|
218
|
-
"stateChangedAt": "1458680301.4"
|
219
|
-
}
|
220
|
-
],
|
221
|
-
"userAttributesForFindings": [
|
222
|
-
|
223
|
-
]
|
224
|
-
}
|
225
|
-
],
|
226
|
-
"failedItems": {
|
227
|
-
}
|
228
|
-
},
|
229
|
-
"comments": {
|
230
|
-
"input": {
|
231
|
-
},
|
232
|
-
"output": {
|
233
|
-
}
|
234
|
-
},
|
235
|
-
"description": "Describes the assessment runs that are specified by the ARNs of the assessment runs.",
|
236
|
-
"id": "describte-assessment-runs-1481064424352",
|
237
|
-
"title": "Describte assessment runs"
|
238
|
-
}
|
239
|
-
],
|
240
|
-
"DescribeAssessmentTargets": [
|
241
|
-
{
|
242
|
-
"input": {
|
243
|
-
"assessmentTargetArns": [
|
244
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
|
245
|
-
]
|
246
|
-
},
|
247
|
-
"output": {
|
248
|
-
"assessmentTargets": [
|
249
|
-
{
|
250
|
-
"name": "ExampleAssessmentTarget",
|
251
|
-
"arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq",
|
252
|
-
"createdAt": "1458074191.459",
|
253
|
-
"resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI",
|
254
|
-
"updatedAt": "1458074191.459"
|
255
|
-
}
|
256
|
-
],
|
257
|
-
"failedItems": {
|
258
|
-
}
|
259
|
-
},
|
260
|
-
"comments": {
|
261
|
-
"input": {
|
262
|
-
},
|
263
|
-
"output": {
|
264
|
-
}
|
265
|
-
},
|
266
|
-
"description": "Describes the assessment targets that are specified by the ARNs of the assessment targets.",
|
267
|
-
"id": "describte-assessment-targets-1481064527735",
|
268
|
-
"title": "Describte assessment targets"
|
269
|
-
}
|
270
|
-
],
|
271
|
-
"DescribeAssessmentTemplates": [
|
272
|
-
{
|
273
|
-
"input": {
|
274
|
-
"assessmentTemplateArns": [
|
275
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw"
|
276
|
-
]
|
277
|
-
},
|
278
|
-
"output": {
|
279
|
-
"assessmentTemplates": [
|
280
|
-
{
|
281
|
-
"name": "ExampleAssessmentTemplate",
|
282
|
-
"arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw",
|
283
|
-
"assessmentRunCount": 0,
|
284
|
-
"assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq",
|
285
|
-
"createdAt": "1458074191.844",
|
286
|
-
"durationInSeconds": 3600,
|
287
|
-
"rulesPackageArns": [
|
288
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP"
|
289
|
-
],
|
290
|
-
"userAttributesForFindings": [
|
291
|
-
|
292
|
-
]
|
293
|
-
}
|
294
|
-
],
|
295
|
-
"failedItems": {
|
296
|
-
}
|
297
|
-
},
|
298
|
-
"comments": {
|
299
|
-
"input": {
|
300
|
-
},
|
301
|
-
"output": {
|
302
|
-
}
|
303
|
-
},
|
304
|
-
"description": "Describes the assessment templates that are specified by the ARNs of the assessment templates.",
|
305
|
-
"id": "describte-assessment-templates-1481064606829",
|
306
|
-
"title": "Describte assessment templates"
|
307
|
-
}
|
308
|
-
],
|
309
|
-
"DescribeCrossAccountAccessRole": [
|
310
|
-
{
|
311
|
-
"output": {
|
312
|
-
"registeredAt": "1458069182.826",
|
313
|
-
"roleArn": "arn:aws:iam::123456789012:role/inspector",
|
314
|
-
"valid": true
|
315
|
-
},
|
316
|
-
"comments": {
|
317
|
-
"input": {
|
318
|
-
},
|
319
|
-
"output": {
|
320
|
-
}
|
321
|
-
},
|
322
|
-
"description": "Describes the IAM role that enables Amazon Inspector to access your AWS account.",
|
323
|
-
"id": "describte-cross-account-access-role-1481064682267",
|
324
|
-
"title": "Describte cross account access role"
|
325
|
-
}
|
326
|
-
],
|
327
|
-
"DescribeFindings": [
|
328
|
-
{
|
329
|
-
"input": {
|
330
|
-
"findingArns": [
|
331
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4"
|
332
|
-
]
|
333
|
-
},
|
334
|
-
"output": {
|
335
|
-
"failedItems": {
|
336
|
-
},
|
337
|
-
"findings": [
|
338
|
-
{
|
339
|
-
"arn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4",
|
340
|
-
"assetAttributes": {
|
341
|
-
"ipv4Addresses": [
|
342
|
-
|
343
|
-
],
|
344
|
-
"schemaVersion": 1
|
345
|
-
},
|
346
|
-
"assetType": "ec2-instance",
|
347
|
-
"attributes": [
|
348
|
-
|
349
|
-
],
|
350
|
-
"confidence": 10,
|
351
|
-
"createdAt": "1458680301.37",
|
352
|
-
"description": "Amazon Inspector did not find any potential security issues during this assessment.",
|
353
|
-
"indicatorOfCompromise": false,
|
354
|
-
"numericSeverity": 0,
|
355
|
-
"recommendation": "No remediation needed.",
|
356
|
-
"schemaVersion": 1,
|
357
|
-
"service": "Inspector",
|
358
|
-
"serviceAttributes": {
|
359
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE",
|
360
|
-
"rulesPackageArn": "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-X1KXtawP",
|
361
|
-
"schemaVersion": 1
|
362
|
-
},
|
363
|
-
"severity": "Informational",
|
364
|
-
"title": "No potential security issues found",
|
365
|
-
"updatedAt": "1458680301.37",
|
366
|
-
"userAttributes": [
|
367
|
-
|
368
|
-
]
|
369
|
-
}
|
370
|
-
]
|
371
|
-
},
|
372
|
-
"comments": {
|
373
|
-
"input": {
|
374
|
-
},
|
375
|
-
"output": {
|
376
|
-
}
|
377
|
-
},
|
378
|
-
"description": "Describes the findings that are specified by the ARNs of the findings.",
|
379
|
-
"id": "describte-findings-1481064771803",
|
380
|
-
"title": "Describe findings"
|
381
|
-
}
|
382
|
-
],
|
383
|
-
"DescribeResourceGroups": [
|
384
|
-
{
|
385
|
-
"input": {
|
386
|
-
"resourceGroupArns": [
|
387
|
-
"arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI"
|
388
|
-
]
|
389
|
-
},
|
390
|
-
"output": {
|
391
|
-
"failedItems": {
|
392
|
-
},
|
393
|
-
"resourceGroups": [
|
394
|
-
{
|
395
|
-
"arn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-PyGXopAI",
|
396
|
-
"createdAt": "1458074191.098",
|
397
|
-
"tags": [
|
398
|
-
{
|
399
|
-
"key": "Name",
|
400
|
-
"value": "example"
|
401
|
-
}
|
402
|
-
]
|
403
|
-
}
|
404
|
-
]
|
405
|
-
},
|
406
|
-
"comments": {
|
407
|
-
"input": {
|
408
|
-
},
|
409
|
-
"output": {
|
410
|
-
}
|
411
|
-
},
|
412
|
-
"description": "Describes the resource groups that are specified by the ARNs of the resource groups.",
|
413
|
-
"id": "describe-resource-groups-1481065787743",
|
414
|
-
"title": "Describe resource groups"
|
415
|
-
}
|
416
|
-
],
|
417
|
-
"DescribeRulesPackages": [
|
418
|
-
{
|
419
|
-
"input": {
|
420
|
-
"rulesPackageArns": [
|
421
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ"
|
422
|
-
]
|
423
|
-
},
|
424
|
-
"output": {
|
425
|
-
"failedItems": {
|
426
|
-
},
|
427
|
-
"rulesPackages": [
|
428
|
-
{
|
429
|
-
"version": "1.1",
|
430
|
-
"name": "Security Best Practices",
|
431
|
-
"arn": "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
|
432
|
-
"description": "The rules in this package help determine whether your systems are configured securely.",
|
433
|
-
"provider": "Amazon Web Services, Inc."
|
434
|
-
}
|
435
|
-
]
|
436
|
-
},
|
437
|
-
"comments": {
|
438
|
-
"input": {
|
439
|
-
},
|
440
|
-
"output": {
|
441
|
-
}
|
442
|
-
},
|
443
|
-
"description": "Describes the rules packages that are specified by the ARNs of the rules packages.",
|
444
|
-
"id": "describe-rules-packages-1481069641979",
|
445
|
-
"title": "Describe rules packages"
|
446
|
-
}
|
447
|
-
],
|
448
|
-
"GetTelemetryMetadata": [
|
449
|
-
{
|
450
|
-
"input": {
|
451
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE"
|
452
|
-
},
|
453
|
-
"output": {
|
454
|
-
"telemetryMetadata": [
|
455
|
-
{
|
456
|
-
"count": 2,
|
457
|
-
"dataSize": 345,
|
458
|
-
"messageType": "InspectorDuplicateProcess"
|
459
|
-
},
|
460
|
-
{
|
461
|
-
"count": 3,
|
462
|
-
"dataSize": 255,
|
463
|
-
"messageType": "InspectorTimeEventMsg"
|
464
|
-
},
|
465
|
-
{
|
466
|
-
"count": 4,
|
467
|
-
"dataSize": 1082,
|
468
|
-
"messageType": "InspectorNetworkInterface"
|
469
|
-
},
|
470
|
-
{
|
471
|
-
"count": 2,
|
472
|
-
"dataSize": 349,
|
473
|
-
"messageType": "InspectorDnsEntry"
|
474
|
-
},
|
475
|
-
{
|
476
|
-
"count": 11,
|
477
|
-
"dataSize": 2514,
|
478
|
-
"messageType": "InspectorDirectoryInfoMsg"
|
479
|
-
},
|
480
|
-
{
|
481
|
-
"count": 1,
|
482
|
-
"dataSize": 179,
|
483
|
-
"messageType": "InspectorTcpV6ListeningPort"
|
484
|
-
},
|
485
|
-
{
|
486
|
-
"count": 101,
|
487
|
-
"dataSize": 10949,
|
488
|
-
"messageType": "InspectorTerminal"
|
489
|
-
},
|
490
|
-
{
|
491
|
-
"count": 26,
|
492
|
-
"dataSize": 5916,
|
493
|
-
"messageType": "InspectorUser"
|
494
|
-
},
|
495
|
-
{
|
496
|
-
"count": 282,
|
497
|
-
"dataSize": 32148,
|
498
|
-
"messageType": "InspectorDynamicallyLoadedCodeModule"
|
499
|
-
},
|
500
|
-
{
|
501
|
-
"count": 18,
|
502
|
-
"dataSize": 10172,
|
503
|
-
"messageType": "InspectorCreateProcess"
|
504
|
-
},
|
505
|
-
{
|
506
|
-
"count": 3,
|
507
|
-
"dataSize": 8001,
|
508
|
-
"messageType": "InspectorProcessPerformance"
|
509
|
-
},
|
510
|
-
{
|
511
|
-
"count": 1,
|
512
|
-
"dataSize": 360,
|
513
|
-
"messageType": "InspectorOperatingSystem"
|
514
|
-
},
|
515
|
-
{
|
516
|
-
"count": 6,
|
517
|
-
"dataSize": 546,
|
518
|
-
"messageType": "InspectorStopProcess"
|
519
|
-
},
|
520
|
-
{
|
521
|
-
"count": 1,
|
522
|
-
"dataSize": 1553,
|
523
|
-
"messageType": "InspectorInstanceMetaData"
|
524
|
-
},
|
525
|
-
{
|
526
|
-
"count": 2,
|
527
|
-
"dataSize": 434,
|
528
|
-
"messageType": "InspectorTcpV4Connection"
|
529
|
-
},
|
530
|
-
{
|
531
|
-
"count": 474,
|
532
|
-
"dataSize": 2960322,
|
533
|
-
"messageType": "InspectorPackageInfo"
|
534
|
-
},
|
535
|
-
{
|
536
|
-
"count": 3,
|
537
|
-
"dataSize": 2235,
|
538
|
-
"messageType": "InspectorSystemPerformance"
|
539
|
-
},
|
540
|
-
{
|
541
|
-
"count": 105,
|
542
|
-
"dataSize": 46048,
|
543
|
-
"messageType": "InspectorCodeModule"
|
544
|
-
},
|
545
|
-
{
|
546
|
-
"count": 1,
|
547
|
-
"dataSize": 182,
|
548
|
-
"messageType": "InspectorUdpV6ListeningPort"
|
549
|
-
},
|
550
|
-
{
|
551
|
-
"count": 2,
|
552
|
-
"dataSize": 371,
|
553
|
-
"messageType": "InspectorUdpV4ListeningPort"
|
554
|
-
},
|
555
|
-
{
|
556
|
-
"count": 18,
|
557
|
-
"dataSize": 8362,
|
558
|
-
"messageType": "InspectorKernelModule"
|
559
|
-
},
|
560
|
-
{
|
561
|
-
"count": 29,
|
562
|
-
"dataSize": 48788,
|
563
|
-
"messageType": "InspectorConfigurationInfo"
|
564
|
-
},
|
565
|
-
{
|
566
|
-
"count": 1,
|
567
|
-
"dataSize": 79,
|
568
|
-
"messageType": "InspectorMonitoringStart"
|
569
|
-
},
|
570
|
-
{
|
571
|
-
"count": 5,
|
572
|
-
"dataSize": 0,
|
573
|
-
"messageType": "InspectorSplitMsgBegin"
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"count": 51,
|
577
|
-
"dataSize": 4593,
|
578
|
-
"messageType": "InspectorGroup"
|
579
|
-
},
|
580
|
-
{
|
581
|
-
"count": 1,
|
582
|
-
"dataSize": 184,
|
583
|
-
"messageType": "InspectorTcpV4ListeningPort"
|
584
|
-
},
|
585
|
-
{
|
586
|
-
"count": 1159,
|
587
|
-
"dataSize": 3146579,
|
588
|
-
"messageType": "Total"
|
589
|
-
},
|
590
|
-
{
|
591
|
-
"count": 5,
|
592
|
-
"dataSize": 0,
|
593
|
-
"messageType": "InspectorSplitMsgEnd"
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"count": 1,
|
597
|
-
"dataSize": 612,
|
598
|
-
"messageType": "InspectorLoadImageInProcess"
|
599
|
-
}
|
600
|
-
]
|
601
|
-
},
|
602
|
-
"comments": {
|
603
|
-
"input": {
|
604
|
-
},
|
605
|
-
"output": {
|
606
|
-
}
|
607
|
-
},
|
608
|
-
"description": "Information about the data that is collected for the specified assessment run.",
|
609
|
-
"id": "get-telemetry-metadata-1481066021297",
|
610
|
-
"title": "Get telemetry metadata"
|
611
|
-
}
|
612
|
-
],
|
613
|
-
"ListAssessmentRunAgents": [
|
614
|
-
{
|
615
|
-
"input": {
|
616
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE",
|
617
|
-
"maxResults": 123
|
618
|
-
},
|
619
|
-
"output": {
|
620
|
-
"assessmentRunAgents": [
|
621
|
-
{
|
622
|
-
"agentHealth": "HEALTHY",
|
623
|
-
"agentHealthCode": "RUNNING",
|
624
|
-
"agentId": "i-49113b93",
|
625
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE",
|
626
|
-
"telemetryMetadata": [
|
627
|
-
{
|
628
|
-
"count": 2,
|
629
|
-
"dataSize": 345,
|
630
|
-
"messageType": "InspectorDuplicateProcess"
|
631
|
-
},
|
632
|
-
{
|
633
|
-
"count": 3,
|
634
|
-
"dataSize": 255,
|
635
|
-
"messageType": "InspectorTimeEventMsg"
|
636
|
-
},
|
637
|
-
{
|
638
|
-
"count": 4,
|
639
|
-
"dataSize": 1082,
|
640
|
-
"messageType": "InspectorNetworkInterface"
|
641
|
-
},
|
642
|
-
{
|
643
|
-
"count": 2,
|
644
|
-
"dataSize": 349,
|
645
|
-
"messageType": "InspectorDnsEntry"
|
646
|
-
},
|
647
|
-
{
|
648
|
-
"count": 11,
|
649
|
-
"dataSize": 2514,
|
650
|
-
"messageType": "InspectorDirectoryInfoMsg"
|
651
|
-
},
|
652
|
-
{
|
653
|
-
"count": 1,
|
654
|
-
"dataSize": 179,
|
655
|
-
"messageType": "InspectorTcpV6ListeningPort"
|
656
|
-
},
|
657
|
-
{
|
658
|
-
"count": 101,
|
659
|
-
"dataSize": 10949,
|
660
|
-
"messageType": "InspectorTerminal"
|
661
|
-
},
|
662
|
-
{
|
663
|
-
"count": 26,
|
664
|
-
"dataSize": 5916,
|
665
|
-
"messageType": "InspectorUser"
|
666
|
-
},
|
667
|
-
{
|
668
|
-
"count": 282,
|
669
|
-
"dataSize": 32148,
|
670
|
-
"messageType": "InspectorDynamicallyLoadedCodeModule"
|
671
|
-
},
|
672
|
-
{
|
673
|
-
"count": 18,
|
674
|
-
"dataSize": 10172,
|
675
|
-
"messageType": "InspectorCreateProcess"
|
676
|
-
},
|
677
|
-
{
|
678
|
-
"count": 3,
|
679
|
-
"dataSize": 8001,
|
680
|
-
"messageType": "InspectorProcessPerformance"
|
681
|
-
},
|
682
|
-
{
|
683
|
-
"count": 1,
|
684
|
-
"dataSize": 360,
|
685
|
-
"messageType": "InspectorOperatingSystem"
|
686
|
-
},
|
687
|
-
{
|
688
|
-
"count": 6,
|
689
|
-
"dataSize": 546,
|
690
|
-
"messageType": "InspectorStopProcess"
|
691
|
-
},
|
692
|
-
{
|
693
|
-
"count": 1,
|
694
|
-
"dataSize": 1553,
|
695
|
-
"messageType": "InspectorInstanceMetaData"
|
696
|
-
},
|
697
|
-
{
|
698
|
-
"count": 2,
|
699
|
-
"dataSize": 434,
|
700
|
-
"messageType": "InspectorTcpV4Connection"
|
701
|
-
},
|
702
|
-
{
|
703
|
-
"count": 474,
|
704
|
-
"dataSize": 2960322,
|
705
|
-
"messageType": "InspectorPackageInfo"
|
706
|
-
},
|
707
|
-
{
|
708
|
-
"count": 3,
|
709
|
-
"dataSize": 2235,
|
710
|
-
"messageType": "InspectorSystemPerformance"
|
711
|
-
},
|
712
|
-
{
|
713
|
-
"count": 105,
|
714
|
-
"dataSize": 46048,
|
715
|
-
"messageType": "InspectorCodeModule"
|
716
|
-
},
|
717
|
-
{
|
718
|
-
"count": 1,
|
719
|
-
"dataSize": 182,
|
720
|
-
"messageType": "InspectorUdpV6ListeningPort"
|
721
|
-
},
|
722
|
-
{
|
723
|
-
"count": 2,
|
724
|
-
"dataSize": 371,
|
725
|
-
"messageType": "InspectorUdpV4ListeningPort"
|
726
|
-
},
|
727
|
-
{
|
728
|
-
"count": 18,
|
729
|
-
"dataSize": 8362,
|
730
|
-
"messageType": "InspectorKernelModule"
|
731
|
-
},
|
732
|
-
{
|
733
|
-
"count": 29,
|
734
|
-
"dataSize": 48788,
|
735
|
-
"messageType": "InspectorConfigurationInfo"
|
736
|
-
},
|
737
|
-
{
|
738
|
-
"count": 1,
|
739
|
-
"dataSize": 79,
|
740
|
-
"messageType": "InspectorMonitoringStart"
|
741
|
-
},
|
742
|
-
{
|
743
|
-
"count": 5,
|
744
|
-
"dataSize": 0,
|
745
|
-
"messageType": "InspectorSplitMsgBegin"
|
746
|
-
},
|
747
|
-
{
|
748
|
-
"count": 51,
|
749
|
-
"dataSize": 4593,
|
750
|
-
"messageType": "InspectorGroup"
|
751
|
-
},
|
752
|
-
{
|
753
|
-
"count": 1,
|
754
|
-
"dataSize": 184,
|
755
|
-
"messageType": "InspectorTcpV4ListeningPort"
|
756
|
-
},
|
757
|
-
{
|
758
|
-
"count": 1159,
|
759
|
-
"dataSize": 3146579,
|
760
|
-
"messageType": "Total"
|
761
|
-
},
|
762
|
-
{
|
763
|
-
"count": 5,
|
764
|
-
"dataSize": 0,
|
765
|
-
"messageType": "InspectorSplitMsgEnd"
|
766
|
-
},
|
767
|
-
{
|
768
|
-
"count": 1,
|
769
|
-
"dataSize": 612,
|
770
|
-
"messageType": "InspectorLoadImageInProcess"
|
771
|
-
}
|
772
|
-
]
|
773
|
-
}
|
774
|
-
],
|
775
|
-
"nextToken": "1"
|
776
|
-
},
|
777
|
-
"comments": {
|
778
|
-
"input": {
|
779
|
-
},
|
780
|
-
"output": {
|
781
|
-
}
|
782
|
-
},
|
783
|
-
"description": "Lists the agents of the assessment runs that are specified by the ARNs of the assessment runs.",
|
784
|
-
"id": "list-assessment-run-agents-1481918140642",
|
785
|
-
"title": "List assessment run agents"
|
786
|
-
}
|
787
|
-
],
|
788
|
-
"ListAssessmentRuns": [
|
789
|
-
{
|
790
|
-
"input": {
|
791
|
-
"assessmentTemplateArns": [
|
792
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw"
|
793
|
-
],
|
794
|
-
"maxResults": 123
|
795
|
-
},
|
796
|
-
"output": {
|
797
|
-
"assessmentRunArns": [
|
798
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE",
|
799
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-v5D6fI3v"
|
800
|
-
],
|
801
|
-
"nextToken": "1"
|
802
|
-
},
|
803
|
-
"comments": {
|
804
|
-
"input": {
|
805
|
-
},
|
806
|
-
"output": {
|
807
|
-
}
|
808
|
-
},
|
809
|
-
"description": "Lists the assessment runs that correspond to the assessment templates that are specified by the ARNs of the assessment templates.",
|
810
|
-
"id": "list-assessment-runs-1481066340844",
|
811
|
-
"title": "List assessment runs"
|
812
|
-
}
|
813
|
-
],
|
814
|
-
"ListAssessmentTargets": [
|
815
|
-
{
|
816
|
-
"input": {
|
817
|
-
"maxResults": 123
|
818
|
-
},
|
819
|
-
"output": {
|
820
|
-
"assessmentTargetArns": [
|
821
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
|
822
|
-
],
|
823
|
-
"nextToken": "1"
|
824
|
-
},
|
825
|
-
"comments": {
|
826
|
-
"input": {
|
827
|
-
},
|
828
|
-
"output": {
|
829
|
-
}
|
830
|
-
},
|
831
|
-
"description": "Lists the ARNs of the assessment targets within this AWS account. ",
|
832
|
-
"id": "list-assessment-targets-1481066540849",
|
833
|
-
"title": "List assessment targets"
|
834
|
-
}
|
835
|
-
],
|
836
|
-
"ListAssessmentTemplates": [
|
837
|
-
{
|
838
|
-
"input": {
|
839
|
-
"assessmentTargetArns": [
|
840
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
|
841
|
-
],
|
842
|
-
"maxResults": 123
|
843
|
-
},
|
844
|
-
"output": {
|
845
|
-
"assessmentTemplateArns": [
|
846
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw",
|
847
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-Uza6ihLh"
|
848
|
-
],
|
849
|
-
"nextToken": "1"
|
850
|
-
},
|
851
|
-
"comments": {
|
852
|
-
"input": {
|
853
|
-
},
|
854
|
-
"output": {
|
855
|
-
}
|
856
|
-
},
|
857
|
-
"description": "Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets.",
|
858
|
-
"id": "list-assessment-templates-1481066623520",
|
859
|
-
"title": "List assessment templates"
|
860
|
-
}
|
861
|
-
],
|
862
|
-
"ListEventSubscriptions": [
|
863
|
-
{
|
864
|
-
"input": {
|
865
|
-
"maxResults": 123,
|
866
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0"
|
867
|
-
},
|
868
|
-
"output": {
|
869
|
-
"nextToken": "1",
|
870
|
-
"subscriptions": [
|
871
|
-
{
|
872
|
-
"eventSubscriptions": [
|
873
|
-
{
|
874
|
-
"event": "ASSESSMENT_RUN_COMPLETED",
|
875
|
-
"subscribedAt": "1459455440.867"
|
876
|
-
}
|
877
|
-
],
|
878
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
|
879
|
-
"topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic"
|
880
|
-
}
|
881
|
-
]
|
882
|
-
},
|
883
|
-
"comments": {
|
884
|
-
"input": {
|
885
|
-
},
|
886
|
-
"output": {
|
887
|
-
}
|
888
|
-
},
|
889
|
-
"description": "Lists all the event subscriptions for the assessment template that is specified by the ARN of the assessment template. ",
|
890
|
-
"id": "list-event-subscriptions-1481068376945",
|
891
|
-
"title": "List event subscriptions"
|
892
|
-
}
|
893
|
-
],
|
894
|
-
"ListFindings": [
|
895
|
-
{
|
896
|
-
"input": {
|
897
|
-
"assessmentRunArns": [
|
898
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE"
|
899
|
-
],
|
900
|
-
"maxResults": 123
|
901
|
-
},
|
902
|
-
"output": {
|
903
|
-
"findingArns": [
|
904
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE/finding/0-HwPnsDm4",
|
905
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-v5D6fI3v/finding/0-tyvmqBLy"
|
906
|
-
],
|
907
|
-
"nextToken": "1"
|
908
|
-
},
|
909
|
-
"comments": {
|
910
|
-
"input": {
|
911
|
-
},
|
912
|
-
"output": {
|
913
|
-
}
|
914
|
-
},
|
915
|
-
"description": "Lists findings that are generated by the assessment runs that are specified by the ARNs of the assessment runs.",
|
916
|
-
"id": "list-findings-1481066840611",
|
917
|
-
"title": "List findings"
|
918
|
-
}
|
919
|
-
],
|
920
|
-
"ListRulesPackages": [
|
921
|
-
{
|
922
|
-
"input": {
|
923
|
-
"maxResults": 123
|
924
|
-
},
|
925
|
-
"output": {
|
926
|
-
"nextToken": "1",
|
927
|
-
"rulesPackageArns": [
|
928
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-9hgA516p",
|
929
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-H5hpSawc",
|
930
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ",
|
931
|
-
"arn:aws:inspector:us-west-2:758058086616:rulespackage/0-vg5GGHSD"
|
932
|
-
]
|
933
|
-
},
|
934
|
-
"comments": {
|
935
|
-
"input": {
|
936
|
-
},
|
937
|
-
"output": {
|
938
|
-
}
|
939
|
-
},
|
940
|
-
"description": "Lists all available Amazon Inspector rules packages.",
|
941
|
-
"id": "list-rules-packages-1481066954883",
|
942
|
-
"title": "List rules packages"
|
943
|
-
}
|
944
|
-
],
|
945
|
-
"ListTagsForResource": [
|
946
|
-
{
|
947
|
-
"input": {
|
948
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-gcwFliYu"
|
949
|
-
},
|
950
|
-
"output": {
|
951
|
-
"tags": [
|
952
|
-
{
|
953
|
-
"key": "Name",
|
954
|
-
"value": "Example"
|
955
|
-
}
|
956
|
-
]
|
957
|
-
},
|
958
|
-
"comments": {
|
959
|
-
"input": {
|
960
|
-
},
|
961
|
-
"output": {
|
962
|
-
}
|
963
|
-
},
|
964
|
-
"description": "Lists all tags associated with an assessment template.",
|
965
|
-
"id": "list-tags-for-resource-1481067025240",
|
966
|
-
"title": "List tags for resource"
|
967
|
-
}
|
968
|
-
],
|
969
|
-
"PreviewAgents": [
|
970
|
-
{
|
971
|
-
"input": {
|
972
|
-
"maxResults": 123,
|
973
|
-
"previewAgentsArn": "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
|
974
|
-
},
|
975
|
-
"output": {
|
976
|
-
"agentPreviews": [
|
977
|
-
{
|
978
|
-
"agentId": "i-49113b93"
|
979
|
-
}
|
980
|
-
],
|
981
|
-
"nextToken": "1"
|
982
|
-
},
|
983
|
-
"comments": {
|
984
|
-
"input": {
|
985
|
-
},
|
986
|
-
"output": {
|
987
|
-
}
|
988
|
-
},
|
989
|
-
"description": "Previews the agents installed on the EC2 instances that are part of the specified assessment target.",
|
990
|
-
"id": "preview-agents-1481067101888",
|
991
|
-
"title": "Preview agents"
|
992
|
-
}
|
993
|
-
],
|
994
|
-
"RegisterCrossAccountAccessRole": [
|
995
|
-
{
|
996
|
-
"input": {
|
997
|
-
"roleArn": "arn:aws:iam::123456789012:role/inspector"
|
998
|
-
},
|
999
|
-
"comments": {
|
1000
|
-
"input": {
|
1001
|
-
},
|
1002
|
-
"output": {
|
1003
|
-
}
|
1004
|
-
},
|
1005
|
-
"description": "Registers the IAM role that Amazon Inspector uses to list your EC2 instances at the start of the assessment run or when you call the PreviewAgents action.",
|
1006
|
-
"id": "register-cross-account-access-role-1481067178301",
|
1007
|
-
"title": "Register cross account access role"
|
1008
|
-
}
|
1009
|
-
],
|
1010
|
-
"RemoveAttributesFromFindings": [
|
1011
|
-
{
|
1012
|
-
"input": {
|
1013
|
-
"attributeKeys": [
|
1014
|
-
"key=Example,value=example"
|
1015
|
-
],
|
1016
|
-
"findingArns": [
|
1017
|
-
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-8l1VIE0D/run/0-Z02cjjug/finding/0-T8yM9mEU"
|
1018
|
-
]
|
1019
|
-
},
|
1020
|
-
"output": {
|
1021
|
-
"failedItems": {
|
1022
|
-
}
|
1023
|
-
},
|
1024
|
-
"comments": {
|
1025
|
-
"input": {
|
1026
|
-
},
|
1027
|
-
"output": {
|
1028
|
-
}
|
1029
|
-
},
|
1030
|
-
"description": "Removes entire attributes (key and value pairs) from the findings that are specified by the ARNs of the findings where an attribute with the specified key exists.",
|
1031
|
-
"id": "remove-attributes-from-findings-1481067246548",
|
1032
|
-
"title": "Remove attributes from findings"
|
1033
|
-
}
|
1034
|
-
],
|
1035
|
-
"SetTagsForResource": [
|
1036
|
-
{
|
1037
|
-
"input": {
|
1038
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
|
1039
|
-
"tags": [
|
1040
|
-
{
|
1041
|
-
"key": "Example",
|
1042
|
-
"value": "example"
|
1043
|
-
}
|
1044
|
-
]
|
1045
|
-
},
|
1046
|
-
"comments": {
|
1047
|
-
"input": {
|
1048
|
-
},
|
1049
|
-
"output": {
|
1050
|
-
}
|
1051
|
-
},
|
1052
|
-
"description": "Sets tags (key and value pairs) to the assessment template that is specified by the ARN of the assessment template.",
|
1053
|
-
"id": "set-tags-for-resource-1481067329646",
|
1054
|
-
"title": "Set tags for resource"
|
1055
|
-
}
|
1056
|
-
],
|
1057
|
-
"StartAssessmentRun": [
|
1058
|
-
{
|
1059
|
-
"input": {
|
1060
|
-
"assessmentRunName": "examplerun",
|
1061
|
-
"assessmentTemplateArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T"
|
1062
|
-
},
|
1063
|
-
"output": {
|
1064
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-jOoroxyY"
|
1065
|
-
},
|
1066
|
-
"comments": {
|
1067
|
-
"input": {
|
1068
|
-
},
|
1069
|
-
"output": {
|
1070
|
-
}
|
1071
|
-
},
|
1072
|
-
"description": "Starts the assessment run specified by the ARN of the assessment template. For this API to function properly, you must not exceed the limit of running up to 500 concurrent agents per AWS account.",
|
1073
|
-
"id": "start-assessment-run-1481067407484",
|
1074
|
-
"title": "Start assessment run"
|
1075
|
-
}
|
1076
|
-
],
|
1077
|
-
"StopAssessmentRun": [
|
1078
|
-
{
|
1079
|
-
"input": {
|
1080
|
-
"assessmentRunArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-it5r2S4T/run/0-11LMTAVe"
|
1081
|
-
},
|
1082
|
-
"comments": {
|
1083
|
-
"input": {
|
1084
|
-
},
|
1085
|
-
"output": {
|
1086
|
-
}
|
1087
|
-
},
|
1088
|
-
"description": "Stops the assessment run that is specified by the ARN of the assessment run.",
|
1089
|
-
"id": "stop-assessment-run-1481067502857",
|
1090
|
-
"title": "Stop assessment run"
|
1091
|
-
}
|
1092
|
-
],
|
1093
|
-
"SubscribeToEvent": [
|
1094
|
-
{
|
1095
|
-
"input": {
|
1096
|
-
"event": "ASSESSMENT_RUN_COMPLETED",
|
1097
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
|
1098
|
-
"topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic"
|
1099
|
-
},
|
1100
|
-
"comments": {
|
1101
|
-
"input": {
|
1102
|
-
},
|
1103
|
-
"output": {
|
1104
|
-
}
|
1105
|
-
},
|
1106
|
-
"description": "Enables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic.",
|
1107
|
-
"id": "subscribe-to-event-1481067686031",
|
1108
|
-
"title": "Subscribe to event"
|
1109
|
-
}
|
1110
|
-
],
|
1111
|
-
"UnsubscribeFromEvent": [
|
1112
|
-
{
|
1113
|
-
"input": {
|
1114
|
-
"event": "ASSESSMENT_RUN_COMPLETED",
|
1115
|
-
"resourceArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
|
1116
|
-
"topicArn": "arn:aws:sns:us-west-2:123456789012:exampletopic"
|
1117
|
-
},
|
1118
|
-
"comments": {
|
1119
|
-
"input": {
|
1120
|
-
},
|
1121
|
-
"output": {
|
1122
|
-
}
|
1123
|
-
},
|
1124
|
-
"description": "Disables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic.",
|
1125
|
-
"id": "unsubscribe-from-event-1481067781705",
|
1126
|
-
"title": "Unsubscribe from event"
|
1127
|
-
}
|
1128
|
-
],
|
1129
|
-
"UpdateAssessmentTarget": [
|
1130
|
-
{
|
1131
|
-
"input": {
|
1132
|
-
"assessmentTargetArn": "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX",
|
1133
|
-
"assessmentTargetName": "Example",
|
1134
|
-
"resourceGroupArn": "arn:aws:inspector:us-west-2:123456789012:resourcegroup/0-yNbgL5Pt"
|
1135
|
-
},
|
1136
|
-
"comments": {
|
1137
|
-
"input": {
|
1138
|
-
},
|
1139
|
-
"output": {
|
1140
|
-
}
|
1141
|
-
},
|
1142
|
-
"description": "Updates the assessment target that is specified by the ARN of the assessment target.",
|
1143
|
-
"id": "update-assessment-target-1481067866692",
|
1144
|
-
"title": "Update assessment target"
|
1145
|
-
}
|
1146
|
-
]
|
1147
|
-
}
|
1148
|
-
}
|