aws-sdk-core 2.4.0 → 3.53.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/ca-bundle.crt +3615 -3541
- data/lib/aws-sdk-core.rb +96 -408
- 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 +41 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +73 -10
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
- data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
- data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
- data/lib/aws-sdk-core/errors.rb +174 -10
- 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 +21 -12
- data/lib/aws-sdk-core/json.rb +4 -5
- 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 +256 -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 +160 -0
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
- 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/helpful_socket_errors.rb +41 -0
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -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 +28 -16
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
- 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 +76 -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 +11 -66
- data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +132 -18
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +21 -11
- 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 +99 -1
- 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 -7
- 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/engines/ox.rb +5 -1
- 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 +1761 -0
- data/lib/aws-sdk-sts/client_api.rb +304 -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 +1279 -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 +9 -1
- 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 +5 -1
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
- data/lib/seahorse/client/net_http/handler.rb +10 -2
- 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/plugin_list.rb +3 -1
- 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/client/response.rb +9 -20
- data/lib/seahorse/model/api.rb +37 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +20 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -21
- metadata +112 -359
- data/apis/acm/2015-12-08/api-2.json +0 -495
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/apigateway/2015-07-09/api-2.json +0 -3347
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
- 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/cloudhsm/2014-05-30/api-2.json +0 -877
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
- data/apis/codecommit/2015-04-13/api-2.json +0 -916
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
- data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
- data/apis/config/2014-11-12/api-2.json +0 -1303
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -10
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
- data/apis/directconnect/2012-10-25/api-2.json +0 -793
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/discovery/2015-11-01/api-2.json +0 -556
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/dms/2016-01-01/api-2.json +0 -1469
- data/apis/dms/2016-01-01/examples-1.json +0 -5
- data/apis/ds/2015-04-16/api-2.json +0 -1674
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
- 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/waiters-2.json +0 -35
- data/apis/ec2/2015-10-01/api-2.json +0 -13759
- 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 -13842
- data/apis/ec2/2016-04-01/examples-1.json +0 -5
- 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/ecr/2015-09-21/api-2.json +0 -849
- data/apis/ecr/2015-09-21/examples-1.json +0 -5
- data/apis/ecs/2014-11-13/api-2.json +0 -1396
- data/apis/ecs/2014-11-13/examples-1.json +0 -5
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/elasticache/2015-02-02/api-2.json +0 -2426
- data/apis/elasticache/2015-02-02/examples-1.json +0 -5
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -1791
- data/apis/email/2010-12-01/examples-1.json +0 -5
- data/apis/email/2010-12-01/paginators-1.json +0 -13
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/es/2015-01-01/api-2.json +0 -764
- data/apis/events/2015-10-07/api-2.json +0 -643
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/api-2.json +0 -719
- data/apis/gamelift/2015-10-01/api-2.json +0 -2307
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/glacier/2012-06-01/api-2.json +0 -2144
- 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/waiters-2.json +0 -39
- data/apis/iam/2010-05-08/api-2.json +0 -4514
- data/apis/iam/2010-05-08/examples-1.json +0 -5
- 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/waiters-2.json +0 -39
- data/apis/importexport/2010-06-01/api-2.json +0 -666
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -1964
- data/apis/inspector/2016-02-16/examples-1.json +0 -5
- data/apis/iot-data/2015-05-28/api-2.json +0 -263
- data/apis/iot/2015-05-28/api-2.json +0 -3800
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/api-2.json +0 -822
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
- data/apis/kms/2014-11-01/api-2.json +0 -1209
- data/apis/kms/2014-11-01/examples-1.json +0 -5
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/lambda/2014-11-11/api-2.json +0 -667
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -1342
- data/apis/lambda/2015-03-31/examples-1.json +0 -5
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/logs/2014-03-28/api-2.json +0 -1138
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/api-2.json +0 -790
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/opsworks/2013-02-18/api-2.json +0 -2606
- 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/waiters-2.json +0 -295
- data/apis/rds/2014-10-31/api-2.json +0 -4757
- data/apis/rds/2014-10-31/examples-1.json +0 -5
- data/apis/rds/2014-10-31/paginators-1.json +0 -110
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/waiters-2.json +0 -102
- data/apis/redshift/2012-12-01/api-2.json +0 -3768
- 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/waiters-2.json +0 -97
- data/apis/route53/2013-04-01/api-2.json +0 -3245
- data/apis/route53/2013-04-01/examples-1.json +0 -5
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1197
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
- data/apis/s3/2006-03-01/api-2.json +0 -4517
- data/apis/s3/2006-03-01/examples-1.json +0 -5
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1176
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/sdb/2009-04-15/api-2.json +0 -954
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/sns/2010-03-31/api-2.json +0 -1139
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sqs/2012-11-05/api-2.json +0 -950
- data/apis/sqs/2012-11-05/examples-1.json +0 -44
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/ssm/2014-11-06/api-2.json +0 -1796
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -34
- data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
- data/apis/sts/2011-06-15/api-2.json +0 -521
- data/apis/sts/2011-06-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/api-2.json +0 -869
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2838
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/waf/2015-08-24/api-2.json +0 -1959
- data/apis/waf/2015-08-24/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/api-2.json +0 -632
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -1460
- data/lib/aws-sdk-core/acm.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -106
- data/lib/aws-sdk-core/api/customizations.rb +0 -217
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
- 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 -142
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/client.rb +0 -57
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -15
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
- data/lib/aws-sdk-core/cloudhsm.rb +0 -5
- 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 -5
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -6
- data/lib/aws-sdk-core/codepipeline.rb +0 -5
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- 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 -5
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ecr.rb +0 -5
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -5
- 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 -6
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
- 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 -95
- data/lib/aws-sdk-core/firehose.rb +0 -4
- data/lib/aws-sdk-core/gamelift.rb +0 -5
- data/lib/aws-sdk-core/glacier.rb +0 -7
- 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 -5
- data/lib/aws-sdk-core/iot.rb +0 -5
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -6
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/machinelearning.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- 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 -78
- data/lib/aws-sdk-core/partitions/service.rb +0 -84
- 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/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 -209
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
- 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/request_signer.rb +0 -138
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
- 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_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_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 -92
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
- 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/rds.rb +0 -8
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -5
- 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 -113
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -5
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -184
- 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 -233
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sns.rb +0 -6
- data/lib/aws-sdk-core/sqs.rb +0 -6
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -5
- data/lib/aws-sdk-core/support.rb +0 -5
- data/lib/aws-sdk-core/swf.rb +0 -5
- 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 -5
- 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/workspaces.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
- data/service-models.json +0 -285
@@ -1,20 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeAnalysisSchemes": {
|
4
|
-
"result_key": "AnalysisSchemes"
|
5
|
-
},
|
6
|
-
"DescribeDomains": {
|
7
|
-
"result_key": "DomainStatusList"
|
8
|
-
},
|
9
|
-
"DescribeExpressions": {
|
10
|
-
"result_key": "Expressions"
|
11
|
-
},
|
12
|
-
"DescribeIndexFields": {
|
13
|
-
"result_key": "IndexFields"
|
14
|
-
},
|
15
|
-
"DescribeSuggesters": {
|
16
|
-
"result_key": "Suggesters"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|
20
|
-
|
@@ -1,373 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2013-01-01",
|
5
|
-
"endpointPrefix":"cloudsearchdomain",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceFullName":"Amazon CloudSearch Domain",
|
9
|
-
"signatureVersion":"v4",
|
10
|
-
"signingName":"cloudsearch"
|
11
|
-
},
|
12
|
-
"operations":{
|
13
|
-
"Search":{
|
14
|
-
"name":"Search",
|
15
|
-
"http":{
|
16
|
-
"method":"GET",
|
17
|
-
"requestUri":"/2013-01-01/search?format=sdk&pretty=true"
|
18
|
-
},
|
19
|
-
"input":{"shape":"SearchRequest"},
|
20
|
-
"output":{"shape":"SearchResponse"},
|
21
|
-
"errors":[
|
22
|
-
{"shape":"SearchException"}
|
23
|
-
]
|
24
|
-
},
|
25
|
-
"Suggest":{
|
26
|
-
"name":"Suggest",
|
27
|
-
"http":{
|
28
|
-
"method":"GET",
|
29
|
-
"requestUri":"/2013-01-01/suggest?format=sdk&pretty=true"
|
30
|
-
},
|
31
|
-
"input":{"shape":"SuggestRequest"},
|
32
|
-
"output":{"shape":"SuggestResponse"},
|
33
|
-
"errors":[
|
34
|
-
{"shape":"SearchException"}
|
35
|
-
]
|
36
|
-
},
|
37
|
-
"UploadDocuments":{
|
38
|
-
"name":"UploadDocuments",
|
39
|
-
"http":{
|
40
|
-
"method":"POST",
|
41
|
-
"requestUri":"/2013-01-01/documents/batch?format=sdk"
|
42
|
-
},
|
43
|
-
"input":{"shape":"UploadDocumentsRequest"},
|
44
|
-
"output":{"shape":"UploadDocumentsResponse"},
|
45
|
-
"errors":[
|
46
|
-
{"shape":"DocumentServiceException"}
|
47
|
-
]
|
48
|
-
}
|
49
|
-
},
|
50
|
-
"shapes":{
|
51
|
-
"Adds":{"type":"long"},
|
52
|
-
"Blob":{
|
53
|
-
"type":"blob",
|
54
|
-
"streaming":true
|
55
|
-
},
|
56
|
-
"Bucket":{
|
57
|
-
"type":"structure",
|
58
|
-
"members":{
|
59
|
-
"value":{"shape":"String"},
|
60
|
-
"count":{"shape":"Long"}
|
61
|
-
}
|
62
|
-
},
|
63
|
-
"BucketInfo":{
|
64
|
-
"type":"structure",
|
65
|
-
"members":{
|
66
|
-
"buckets":{"shape":"BucketList"}
|
67
|
-
}
|
68
|
-
},
|
69
|
-
"BucketList":{
|
70
|
-
"type":"list",
|
71
|
-
"member":{"shape":"Bucket"}
|
72
|
-
},
|
73
|
-
"ContentType":{
|
74
|
-
"type":"string",
|
75
|
-
"enum":[
|
76
|
-
"application/json",
|
77
|
-
"application/xml"
|
78
|
-
]
|
79
|
-
},
|
80
|
-
"Cursor":{"type":"string"},
|
81
|
-
"Deletes":{"type":"long"},
|
82
|
-
"DocumentServiceException":{
|
83
|
-
"type":"structure",
|
84
|
-
"members":{
|
85
|
-
"status":{"shape":"String"},
|
86
|
-
"message":{"shape":"String"}
|
87
|
-
},
|
88
|
-
"exception":true
|
89
|
-
},
|
90
|
-
"DocumentServiceWarning":{
|
91
|
-
"type":"structure",
|
92
|
-
"members":{
|
93
|
-
"message":{"shape":"String"}
|
94
|
-
}
|
95
|
-
},
|
96
|
-
"DocumentServiceWarnings":{
|
97
|
-
"type":"list",
|
98
|
-
"member":{"shape":"DocumentServiceWarning"}
|
99
|
-
},
|
100
|
-
"Double":{"type":"double"},
|
101
|
-
"Expr":{"type":"string"},
|
102
|
-
"Exprs":{
|
103
|
-
"type":"map",
|
104
|
-
"key":{"shape":"String"},
|
105
|
-
"value":{"shape":"String"}
|
106
|
-
},
|
107
|
-
"Facet":{"type":"string"},
|
108
|
-
"Facets":{
|
109
|
-
"type":"map",
|
110
|
-
"key":{"shape":"String"},
|
111
|
-
"value":{"shape":"BucketInfo"}
|
112
|
-
},
|
113
|
-
"FieldStats":{
|
114
|
-
"type":"structure",
|
115
|
-
"members":{
|
116
|
-
"min":{"shape":"String"},
|
117
|
-
"max":{"shape":"String"},
|
118
|
-
"count":{"shape":"Long"},
|
119
|
-
"missing":{"shape":"Long"},
|
120
|
-
"sum":{"shape":"Double"},
|
121
|
-
"sumOfSquares":{"shape":"Double"},
|
122
|
-
"mean":{"shape":"String"},
|
123
|
-
"stddev":{"shape":"Double"}
|
124
|
-
}
|
125
|
-
},
|
126
|
-
"FieldValue":{
|
127
|
-
"type":"list",
|
128
|
-
"member":{"shape":"String"}
|
129
|
-
},
|
130
|
-
"Fields":{
|
131
|
-
"type":"map",
|
132
|
-
"key":{"shape":"String"},
|
133
|
-
"value":{"shape":"FieldValue"}
|
134
|
-
},
|
135
|
-
"FilterQuery":{"type":"string"},
|
136
|
-
"Highlight":{"type":"string"},
|
137
|
-
"Highlights":{
|
138
|
-
"type":"map",
|
139
|
-
"key":{"shape":"String"},
|
140
|
-
"value":{"shape":"String"}
|
141
|
-
},
|
142
|
-
"Hit":{
|
143
|
-
"type":"structure",
|
144
|
-
"members":{
|
145
|
-
"id":{"shape":"String"},
|
146
|
-
"fields":{"shape":"Fields"},
|
147
|
-
"exprs":{"shape":"Exprs"},
|
148
|
-
"highlights":{"shape":"Highlights"}
|
149
|
-
}
|
150
|
-
},
|
151
|
-
"HitList":{
|
152
|
-
"type":"list",
|
153
|
-
"member":{"shape":"Hit"}
|
154
|
-
},
|
155
|
-
"Hits":{
|
156
|
-
"type":"structure",
|
157
|
-
"members":{
|
158
|
-
"found":{"shape":"Long"},
|
159
|
-
"start":{"shape":"Long"},
|
160
|
-
"cursor":{"shape":"String"},
|
161
|
-
"hit":{"shape":"HitList"}
|
162
|
-
}
|
163
|
-
},
|
164
|
-
"Long":{"type":"long"},
|
165
|
-
"Partial":{"type":"boolean"},
|
166
|
-
"Query":{"type":"string"},
|
167
|
-
"QueryOptions":{"type":"string"},
|
168
|
-
"QueryParser":{
|
169
|
-
"type":"string",
|
170
|
-
"enum":[
|
171
|
-
"simple",
|
172
|
-
"structured",
|
173
|
-
"lucene",
|
174
|
-
"dismax"
|
175
|
-
]
|
176
|
-
},
|
177
|
-
"Return":{"type":"string"},
|
178
|
-
"SearchException":{
|
179
|
-
"type":"structure",
|
180
|
-
"members":{
|
181
|
-
"message":{"shape":"String"}
|
182
|
-
},
|
183
|
-
"exception":true
|
184
|
-
},
|
185
|
-
"SearchRequest":{
|
186
|
-
"type":"structure",
|
187
|
-
"required":["query"],
|
188
|
-
"members":{
|
189
|
-
"cursor":{
|
190
|
-
"shape":"Cursor",
|
191
|
-
"location":"querystring",
|
192
|
-
"locationName":"cursor"
|
193
|
-
},
|
194
|
-
"expr":{
|
195
|
-
"shape":"Expr",
|
196
|
-
"location":"querystring",
|
197
|
-
"locationName":"expr"
|
198
|
-
},
|
199
|
-
"facet":{
|
200
|
-
"shape":"Facet",
|
201
|
-
"location":"querystring",
|
202
|
-
"locationName":"facet"
|
203
|
-
},
|
204
|
-
"filterQuery":{
|
205
|
-
"shape":"FilterQuery",
|
206
|
-
"location":"querystring",
|
207
|
-
"locationName":"fq"
|
208
|
-
},
|
209
|
-
"highlight":{
|
210
|
-
"shape":"Highlight",
|
211
|
-
"location":"querystring",
|
212
|
-
"locationName":"highlight"
|
213
|
-
},
|
214
|
-
"partial":{
|
215
|
-
"shape":"Partial",
|
216
|
-
"location":"querystring",
|
217
|
-
"locationName":"partial"
|
218
|
-
},
|
219
|
-
"query":{
|
220
|
-
"shape":"Query",
|
221
|
-
"location":"querystring",
|
222
|
-
"locationName":"q"
|
223
|
-
},
|
224
|
-
"queryOptions":{
|
225
|
-
"shape":"QueryOptions",
|
226
|
-
"location":"querystring",
|
227
|
-
"locationName":"q.options"
|
228
|
-
},
|
229
|
-
"queryParser":{
|
230
|
-
"shape":"QueryParser",
|
231
|
-
"location":"querystring",
|
232
|
-
"locationName":"q.parser"
|
233
|
-
},
|
234
|
-
"return":{
|
235
|
-
"shape":"Return",
|
236
|
-
"location":"querystring",
|
237
|
-
"locationName":"return"
|
238
|
-
},
|
239
|
-
"size":{
|
240
|
-
"shape":"Size",
|
241
|
-
"location":"querystring",
|
242
|
-
"locationName":"size"
|
243
|
-
},
|
244
|
-
"sort":{
|
245
|
-
"shape":"Sort",
|
246
|
-
"location":"querystring",
|
247
|
-
"locationName":"sort"
|
248
|
-
},
|
249
|
-
"start":{
|
250
|
-
"shape":"Start",
|
251
|
-
"location":"querystring",
|
252
|
-
"locationName":"start"
|
253
|
-
},
|
254
|
-
"stats":{
|
255
|
-
"shape":"Stat",
|
256
|
-
"location":"querystring",
|
257
|
-
"locationName":"stats"
|
258
|
-
}
|
259
|
-
}
|
260
|
-
},
|
261
|
-
"SearchResponse":{
|
262
|
-
"type":"structure",
|
263
|
-
"members":{
|
264
|
-
"status":{"shape":"SearchStatus"},
|
265
|
-
"hits":{"shape":"Hits"},
|
266
|
-
"facets":{"shape":"Facets"},
|
267
|
-
"stats":{"shape":"Stats"}
|
268
|
-
}
|
269
|
-
},
|
270
|
-
"SearchStatus":{
|
271
|
-
"type":"structure",
|
272
|
-
"members":{
|
273
|
-
"timems":{"shape":"Long"},
|
274
|
-
"rid":{"shape":"String"}
|
275
|
-
}
|
276
|
-
},
|
277
|
-
"Size":{"type":"long"},
|
278
|
-
"Sort":{"type":"string"},
|
279
|
-
"Start":{"type":"long"},
|
280
|
-
"Stat":{"type":"string"},
|
281
|
-
"Stats":{
|
282
|
-
"type":"map",
|
283
|
-
"key":{"shape":"String"},
|
284
|
-
"value":{"shape":"FieldStats"}
|
285
|
-
},
|
286
|
-
"String":{"type":"string"},
|
287
|
-
"SuggestModel":{
|
288
|
-
"type":"structure",
|
289
|
-
"members":{
|
290
|
-
"query":{"shape":"String"},
|
291
|
-
"found":{"shape":"Long"},
|
292
|
-
"suggestions":{"shape":"Suggestions"}
|
293
|
-
}
|
294
|
-
},
|
295
|
-
"SuggestRequest":{
|
296
|
-
"type":"structure",
|
297
|
-
"required":[
|
298
|
-
"query",
|
299
|
-
"suggester"
|
300
|
-
],
|
301
|
-
"members":{
|
302
|
-
"query":{
|
303
|
-
"shape":"Query",
|
304
|
-
"location":"querystring",
|
305
|
-
"locationName":"q"
|
306
|
-
},
|
307
|
-
"suggester":{
|
308
|
-
"shape":"Suggester",
|
309
|
-
"location":"querystring",
|
310
|
-
"locationName":"suggester"
|
311
|
-
},
|
312
|
-
"size":{
|
313
|
-
"shape":"SuggestionsSize",
|
314
|
-
"location":"querystring",
|
315
|
-
"locationName":"size"
|
316
|
-
}
|
317
|
-
}
|
318
|
-
},
|
319
|
-
"SuggestResponse":{
|
320
|
-
"type":"structure",
|
321
|
-
"members":{
|
322
|
-
"status":{"shape":"SuggestStatus"},
|
323
|
-
"suggest":{"shape":"SuggestModel"}
|
324
|
-
}
|
325
|
-
},
|
326
|
-
"SuggestStatus":{
|
327
|
-
"type":"structure",
|
328
|
-
"members":{
|
329
|
-
"timems":{"shape":"Long"},
|
330
|
-
"rid":{"shape":"String"}
|
331
|
-
}
|
332
|
-
},
|
333
|
-
"Suggester":{"type":"string"},
|
334
|
-
"SuggestionMatch":{
|
335
|
-
"type":"structure",
|
336
|
-
"members":{
|
337
|
-
"suggestion":{"shape":"String"},
|
338
|
-
"score":{"shape":"Long"},
|
339
|
-
"id":{"shape":"String"}
|
340
|
-
}
|
341
|
-
},
|
342
|
-
"Suggestions":{
|
343
|
-
"type":"list",
|
344
|
-
"member":{"shape":"SuggestionMatch"}
|
345
|
-
},
|
346
|
-
"SuggestionsSize":{"type":"long"},
|
347
|
-
"UploadDocumentsRequest":{
|
348
|
-
"type":"structure",
|
349
|
-
"required":[
|
350
|
-
"documents",
|
351
|
-
"contentType"
|
352
|
-
],
|
353
|
-
"members":{
|
354
|
-
"documents":{"shape":"Blob"},
|
355
|
-
"contentType":{
|
356
|
-
"shape":"ContentType",
|
357
|
-
"location":"header",
|
358
|
-
"locationName":"Content-Type"
|
359
|
-
}
|
360
|
-
},
|
361
|
-
"payload":"documents"
|
362
|
-
},
|
363
|
-
"UploadDocumentsResponse":{
|
364
|
-
"type":"structure",
|
365
|
-
"members":{
|
366
|
-
"status":{"shape":"String"},
|
367
|
-
"adds":{"shape":"Adds"},
|
368
|
-
"deletes":{"shape":"Deletes"},
|
369
|
-
"warnings":{"shape":"DocumentServiceWarnings"}
|
370
|
-
}
|
371
|
-
}
|
372
|
-
}
|
373
|
-
}
|
@@ -1,801 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2013-11-01",
|
5
|
-
"endpointPrefix":"cloudtrail",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceAbbreviation":"CloudTrail",
|
9
|
-
"serviceFullName":"AWS CloudTrail",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"targetPrefix":"com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101"
|
12
|
-
},
|
13
|
-
"operations":{
|
14
|
-
"AddTags":{
|
15
|
-
"name":"AddTags",
|
16
|
-
"http":{
|
17
|
-
"method":"POST",
|
18
|
-
"requestUri":"/"
|
19
|
-
},
|
20
|
-
"input":{"shape":"AddTagsRequest"},
|
21
|
-
"output":{"shape":"AddTagsResponse"},
|
22
|
-
"errors":[
|
23
|
-
{"shape":"ResourceNotFoundException"},
|
24
|
-
{"shape":"CloudTrailARNInvalidException"},
|
25
|
-
{"shape":"ResourceTypeNotSupportedException"},
|
26
|
-
{"shape":"TagsLimitExceededException"},
|
27
|
-
{"shape":"InvalidTrailNameException"},
|
28
|
-
{"shape":"InvalidTagParameterException"},
|
29
|
-
{"shape":"UnsupportedOperationException"},
|
30
|
-
{"shape":"OperationNotPermittedException"}
|
31
|
-
],
|
32
|
-
"idempotent":true
|
33
|
-
},
|
34
|
-
"CreateTrail":{
|
35
|
-
"name":"CreateTrail",
|
36
|
-
"http":{
|
37
|
-
"method":"POST",
|
38
|
-
"requestUri":"/"
|
39
|
-
},
|
40
|
-
"input":{"shape":"CreateTrailRequest"},
|
41
|
-
"output":{"shape":"CreateTrailResponse"},
|
42
|
-
"errors":[
|
43
|
-
{"shape":"MaximumNumberOfTrailsExceededException"},
|
44
|
-
{"shape":"TrailAlreadyExistsException"},
|
45
|
-
{"shape":"S3BucketDoesNotExistException"},
|
46
|
-
{"shape":"InsufficientS3BucketPolicyException"},
|
47
|
-
{"shape":"InsufficientSnsTopicPolicyException"},
|
48
|
-
{"shape":"InsufficientEncryptionPolicyException"},
|
49
|
-
{"shape":"InvalidS3BucketNameException"},
|
50
|
-
{"shape":"InvalidS3PrefixException"},
|
51
|
-
{"shape":"InvalidSnsTopicNameException"},
|
52
|
-
{"shape":"InvalidKmsKeyIdException"},
|
53
|
-
{"shape":"InvalidTrailNameException"},
|
54
|
-
{"shape":"TrailNotProvidedException"},
|
55
|
-
{"shape":"InvalidParameterCombinationException"},
|
56
|
-
{"shape":"KmsKeyNotFoundException"},
|
57
|
-
{"shape":"KmsKeyDisabledException"},
|
58
|
-
{"shape":"KmsException"},
|
59
|
-
{"shape":"InvalidCloudWatchLogsLogGroupArnException"},
|
60
|
-
{"shape":"InvalidCloudWatchLogsRoleArnException"},
|
61
|
-
{"shape":"CloudWatchLogsDeliveryUnavailableException"},
|
62
|
-
{"shape":"UnsupportedOperationException"},
|
63
|
-
{"shape":"OperationNotPermittedException"}
|
64
|
-
],
|
65
|
-
"idempotent":true
|
66
|
-
},
|
67
|
-
"DeleteTrail":{
|
68
|
-
"name":"DeleteTrail",
|
69
|
-
"http":{
|
70
|
-
"method":"POST",
|
71
|
-
"requestUri":"/"
|
72
|
-
},
|
73
|
-
"input":{"shape":"DeleteTrailRequest"},
|
74
|
-
"output":{"shape":"DeleteTrailResponse"},
|
75
|
-
"errors":[
|
76
|
-
{"shape":"TrailNotFoundException"},
|
77
|
-
{"shape":"InvalidTrailNameException"},
|
78
|
-
{"shape":"InvalidHomeRegionException"}
|
79
|
-
],
|
80
|
-
"idempotent":true
|
81
|
-
},
|
82
|
-
"DescribeTrails":{
|
83
|
-
"name":"DescribeTrails",
|
84
|
-
"http":{
|
85
|
-
"method":"POST",
|
86
|
-
"requestUri":"/"
|
87
|
-
},
|
88
|
-
"input":{"shape":"DescribeTrailsRequest"},
|
89
|
-
"output":{"shape":"DescribeTrailsResponse"},
|
90
|
-
"errors":[
|
91
|
-
{"shape":"UnsupportedOperationException"},
|
92
|
-
{"shape":"OperationNotPermittedException"}
|
93
|
-
],
|
94
|
-
"idempotent":true
|
95
|
-
},
|
96
|
-
"GetTrailStatus":{
|
97
|
-
"name":"GetTrailStatus",
|
98
|
-
"http":{
|
99
|
-
"method":"POST",
|
100
|
-
"requestUri":"/"
|
101
|
-
},
|
102
|
-
"input":{"shape":"GetTrailStatusRequest"},
|
103
|
-
"output":{"shape":"GetTrailStatusResponse"},
|
104
|
-
"errors":[
|
105
|
-
{"shape":"TrailNotFoundException"},
|
106
|
-
{"shape":"InvalidTrailNameException"}
|
107
|
-
],
|
108
|
-
"idempotent":true
|
109
|
-
},
|
110
|
-
"ListPublicKeys":{
|
111
|
-
"name":"ListPublicKeys",
|
112
|
-
"http":{
|
113
|
-
"method":"POST",
|
114
|
-
"requestUri":"/"
|
115
|
-
},
|
116
|
-
"input":{"shape":"ListPublicKeysRequest"},
|
117
|
-
"output":{"shape":"ListPublicKeysResponse"},
|
118
|
-
"errors":[
|
119
|
-
{"shape":"InvalidTimeRangeException"},
|
120
|
-
{"shape":"UnsupportedOperationException"},
|
121
|
-
{"shape":"OperationNotPermittedException"},
|
122
|
-
{"shape":"InvalidTokenException"}
|
123
|
-
],
|
124
|
-
"idempotent":true
|
125
|
-
},
|
126
|
-
"ListTags":{
|
127
|
-
"name":"ListTags",
|
128
|
-
"http":{
|
129
|
-
"method":"POST",
|
130
|
-
"requestUri":"/"
|
131
|
-
},
|
132
|
-
"input":{"shape":"ListTagsRequest"},
|
133
|
-
"output":{"shape":"ListTagsResponse"},
|
134
|
-
"errors":[
|
135
|
-
{"shape":"ResourceNotFoundException"},
|
136
|
-
{"shape":"CloudTrailARNInvalidException"},
|
137
|
-
{"shape":"ResourceTypeNotSupportedException"},
|
138
|
-
{"shape":"InvalidTrailNameException"},
|
139
|
-
{"shape":"UnsupportedOperationException"},
|
140
|
-
{"shape":"OperationNotPermittedException"},
|
141
|
-
{"shape":"InvalidTokenException"}
|
142
|
-
],
|
143
|
-
"idempotent":true
|
144
|
-
},
|
145
|
-
"LookupEvents":{
|
146
|
-
"name":"LookupEvents",
|
147
|
-
"http":{
|
148
|
-
"method":"POST",
|
149
|
-
"requestUri":"/"
|
150
|
-
},
|
151
|
-
"input":{"shape":"LookupEventsRequest"},
|
152
|
-
"output":{"shape":"LookupEventsResponse"},
|
153
|
-
"errors":[
|
154
|
-
{"shape":"InvalidLookupAttributesException"},
|
155
|
-
{"shape":"InvalidTimeRangeException"},
|
156
|
-
{"shape":"InvalidMaxResultsException"},
|
157
|
-
{"shape":"InvalidNextTokenException"}
|
158
|
-
],
|
159
|
-
"idempotent":true
|
160
|
-
},
|
161
|
-
"RemoveTags":{
|
162
|
-
"name":"RemoveTags",
|
163
|
-
"http":{
|
164
|
-
"method":"POST",
|
165
|
-
"requestUri":"/"
|
166
|
-
},
|
167
|
-
"input":{"shape":"RemoveTagsRequest"},
|
168
|
-
"output":{"shape":"RemoveTagsResponse"},
|
169
|
-
"errors":[
|
170
|
-
{"shape":"ResourceNotFoundException"},
|
171
|
-
{"shape":"CloudTrailARNInvalidException"},
|
172
|
-
{"shape":"ResourceTypeNotSupportedException"},
|
173
|
-
{"shape":"InvalidTrailNameException"},
|
174
|
-
{"shape":"InvalidTagParameterException"},
|
175
|
-
{"shape":"UnsupportedOperationException"},
|
176
|
-
{"shape":"OperationNotPermittedException"}
|
177
|
-
],
|
178
|
-
"idempotent":true
|
179
|
-
},
|
180
|
-
"StartLogging":{
|
181
|
-
"name":"StartLogging",
|
182
|
-
"http":{
|
183
|
-
"method":"POST",
|
184
|
-
"requestUri":"/"
|
185
|
-
},
|
186
|
-
"input":{"shape":"StartLoggingRequest"},
|
187
|
-
"output":{"shape":"StartLoggingResponse"},
|
188
|
-
"errors":[
|
189
|
-
{"shape":"TrailNotFoundException"},
|
190
|
-
{"shape":"InvalidTrailNameException"},
|
191
|
-
{"shape":"InvalidHomeRegionException"}
|
192
|
-
],
|
193
|
-
"idempotent":true
|
194
|
-
},
|
195
|
-
"StopLogging":{
|
196
|
-
"name":"StopLogging",
|
197
|
-
"http":{
|
198
|
-
"method":"POST",
|
199
|
-
"requestUri":"/"
|
200
|
-
},
|
201
|
-
"input":{"shape":"StopLoggingRequest"},
|
202
|
-
"output":{"shape":"StopLoggingResponse"},
|
203
|
-
"errors":[
|
204
|
-
{"shape":"TrailNotFoundException"},
|
205
|
-
{"shape":"InvalidTrailNameException"},
|
206
|
-
{"shape":"InvalidHomeRegionException"}
|
207
|
-
],
|
208
|
-
"idempotent":true
|
209
|
-
},
|
210
|
-
"UpdateTrail":{
|
211
|
-
"name":"UpdateTrail",
|
212
|
-
"http":{
|
213
|
-
"method":"POST",
|
214
|
-
"requestUri":"/"
|
215
|
-
},
|
216
|
-
"input":{"shape":"UpdateTrailRequest"},
|
217
|
-
"output":{"shape":"UpdateTrailResponse"},
|
218
|
-
"errors":[
|
219
|
-
{"shape":"S3BucketDoesNotExistException"},
|
220
|
-
{"shape":"InsufficientS3BucketPolicyException"},
|
221
|
-
{"shape":"InsufficientSnsTopicPolicyException"},
|
222
|
-
{"shape":"InsufficientEncryptionPolicyException"},
|
223
|
-
{"shape":"TrailNotFoundException"},
|
224
|
-
{"shape":"InvalidS3BucketNameException"},
|
225
|
-
{"shape":"InvalidS3PrefixException"},
|
226
|
-
{"shape":"InvalidSnsTopicNameException"},
|
227
|
-
{"shape":"InvalidKmsKeyIdException"},
|
228
|
-
{"shape":"InvalidTrailNameException"},
|
229
|
-
{"shape":"TrailNotProvidedException"},
|
230
|
-
{"shape":"InvalidParameterCombinationException"},
|
231
|
-
{"shape":"InvalidHomeRegionException"},
|
232
|
-
{"shape":"KmsKeyNotFoundException"},
|
233
|
-
{"shape":"KmsKeyDisabledException"},
|
234
|
-
{"shape":"KmsException"},
|
235
|
-
{"shape":"InvalidCloudWatchLogsLogGroupArnException"},
|
236
|
-
{"shape":"InvalidCloudWatchLogsRoleArnException"},
|
237
|
-
{"shape":"CloudWatchLogsDeliveryUnavailableException"},
|
238
|
-
{"shape":"UnsupportedOperationException"},
|
239
|
-
{"shape":"OperationNotPermittedException"}
|
240
|
-
],
|
241
|
-
"idempotent":true
|
242
|
-
}
|
243
|
-
},
|
244
|
-
"shapes":{
|
245
|
-
"AddTagsRequest":{
|
246
|
-
"type":"structure",
|
247
|
-
"required":["ResourceId"],
|
248
|
-
"members":{
|
249
|
-
"ResourceId":{"shape":"String"},
|
250
|
-
"TagsList":{"shape":"TagsList"}
|
251
|
-
}
|
252
|
-
},
|
253
|
-
"AddTagsResponse":{
|
254
|
-
"type":"structure",
|
255
|
-
"members":{
|
256
|
-
}
|
257
|
-
},
|
258
|
-
"Boolean":{"type":"boolean"},
|
259
|
-
"ByteBuffer":{"type":"blob"},
|
260
|
-
"CloudTrailARNInvalidException":{
|
261
|
-
"type":"structure",
|
262
|
-
"members":{
|
263
|
-
},
|
264
|
-
"exception":true
|
265
|
-
},
|
266
|
-
"CloudWatchLogsDeliveryUnavailableException":{
|
267
|
-
"type":"structure",
|
268
|
-
"members":{
|
269
|
-
},
|
270
|
-
"exception":true
|
271
|
-
},
|
272
|
-
"CreateTrailRequest":{
|
273
|
-
"type":"structure",
|
274
|
-
"required":[
|
275
|
-
"Name",
|
276
|
-
"S3BucketName"
|
277
|
-
],
|
278
|
-
"members":{
|
279
|
-
"Name":{"shape":"String"},
|
280
|
-
"S3BucketName":{"shape":"String"},
|
281
|
-
"S3KeyPrefix":{"shape":"String"},
|
282
|
-
"SnsTopicName":{"shape":"String"},
|
283
|
-
"IncludeGlobalServiceEvents":{"shape":"Boolean"},
|
284
|
-
"IsMultiRegionTrail":{"shape":"Boolean"},
|
285
|
-
"EnableLogFileValidation":{"shape":"Boolean"},
|
286
|
-
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
287
|
-
"CloudWatchLogsRoleArn":{"shape":"String"},
|
288
|
-
"KmsKeyId":{"shape":"String"}
|
289
|
-
}
|
290
|
-
},
|
291
|
-
"CreateTrailResponse":{
|
292
|
-
"type":"structure",
|
293
|
-
"members":{
|
294
|
-
"Name":{"shape":"String"},
|
295
|
-
"S3BucketName":{"shape":"String"},
|
296
|
-
"S3KeyPrefix":{"shape":"String"},
|
297
|
-
"SnsTopicName":{
|
298
|
-
"shape":"String",
|
299
|
-
"deprecated":true
|
300
|
-
},
|
301
|
-
"SnsTopicARN":{"shape":"String"},
|
302
|
-
"IncludeGlobalServiceEvents":{"shape":"Boolean"},
|
303
|
-
"IsMultiRegionTrail":{"shape":"Boolean"},
|
304
|
-
"TrailARN":{"shape":"String"},
|
305
|
-
"LogFileValidationEnabled":{"shape":"Boolean"},
|
306
|
-
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
307
|
-
"CloudWatchLogsRoleArn":{"shape":"String"},
|
308
|
-
"KmsKeyId":{"shape":"String"}
|
309
|
-
}
|
310
|
-
},
|
311
|
-
"Date":{"type":"timestamp"},
|
312
|
-
"DeleteTrailRequest":{
|
313
|
-
"type":"structure",
|
314
|
-
"required":["Name"],
|
315
|
-
"members":{
|
316
|
-
"Name":{"shape":"String"}
|
317
|
-
}
|
318
|
-
},
|
319
|
-
"DeleteTrailResponse":{
|
320
|
-
"type":"structure",
|
321
|
-
"members":{
|
322
|
-
}
|
323
|
-
},
|
324
|
-
"DescribeTrailsRequest":{
|
325
|
-
"type":"structure",
|
326
|
-
"members":{
|
327
|
-
"trailNameList":{"shape":"TrailNameList"},
|
328
|
-
"includeShadowTrails":{"shape":"Boolean"}
|
329
|
-
}
|
330
|
-
},
|
331
|
-
"DescribeTrailsResponse":{
|
332
|
-
"type":"structure",
|
333
|
-
"members":{
|
334
|
-
"trailList":{"shape":"TrailList"}
|
335
|
-
}
|
336
|
-
},
|
337
|
-
"Event":{
|
338
|
-
"type":"structure",
|
339
|
-
"members":{
|
340
|
-
"EventId":{"shape":"String"},
|
341
|
-
"EventName":{"shape":"String"},
|
342
|
-
"EventTime":{"shape":"Date"},
|
343
|
-
"Username":{"shape":"String"},
|
344
|
-
"Resources":{"shape":"ResourceList"},
|
345
|
-
"CloudTrailEvent":{"shape":"String"}
|
346
|
-
}
|
347
|
-
},
|
348
|
-
"EventsList":{
|
349
|
-
"type":"list",
|
350
|
-
"member":{"shape":"Event"}
|
351
|
-
},
|
352
|
-
"GetTrailStatusRequest":{
|
353
|
-
"type":"structure",
|
354
|
-
"required":["Name"],
|
355
|
-
"members":{
|
356
|
-
"Name":{"shape":"String"}
|
357
|
-
}
|
358
|
-
},
|
359
|
-
"GetTrailStatusResponse":{
|
360
|
-
"type":"structure",
|
361
|
-
"members":{
|
362
|
-
"IsLogging":{"shape":"Boolean"},
|
363
|
-
"LatestDeliveryError":{"shape":"String"},
|
364
|
-
"LatestNotificationError":{"shape":"String"},
|
365
|
-
"LatestDeliveryTime":{"shape":"Date"},
|
366
|
-
"LatestNotificationTime":{"shape":"Date"},
|
367
|
-
"StartLoggingTime":{"shape":"Date"},
|
368
|
-
"StopLoggingTime":{"shape":"Date"},
|
369
|
-
"LatestCloudWatchLogsDeliveryError":{"shape":"String"},
|
370
|
-
"LatestCloudWatchLogsDeliveryTime":{"shape":"Date"},
|
371
|
-
"LatestDigestDeliveryTime":{"shape":"Date"},
|
372
|
-
"LatestDigestDeliveryError":{"shape":"String"},
|
373
|
-
"LatestDeliveryAttemptTime":{"shape":"String"},
|
374
|
-
"LatestNotificationAttemptTime":{"shape":"String"},
|
375
|
-
"LatestNotificationAttemptSucceeded":{"shape":"String"},
|
376
|
-
"LatestDeliveryAttemptSucceeded":{"shape":"String"},
|
377
|
-
"TimeLoggingStarted":{"shape":"String"},
|
378
|
-
"TimeLoggingStopped":{"shape":"String"}
|
379
|
-
}
|
380
|
-
},
|
381
|
-
"InsufficientEncryptionPolicyException":{
|
382
|
-
"type":"structure",
|
383
|
-
"members":{
|
384
|
-
},
|
385
|
-
"exception":true
|
386
|
-
},
|
387
|
-
"InsufficientS3BucketPolicyException":{
|
388
|
-
"type":"structure",
|
389
|
-
"members":{
|
390
|
-
},
|
391
|
-
"exception":true
|
392
|
-
},
|
393
|
-
"InsufficientSnsTopicPolicyException":{
|
394
|
-
"type":"structure",
|
395
|
-
"members":{
|
396
|
-
},
|
397
|
-
"exception":true
|
398
|
-
},
|
399
|
-
"InvalidCloudWatchLogsLogGroupArnException":{
|
400
|
-
"type":"structure",
|
401
|
-
"members":{
|
402
|
-
},
|
403
|
-
"exception":true
|
404
|
-
},
|
405
|
-
"InvalidCloudWatchLogsRoleArnException":{
|
406
|
-
"type":"structure",
|
407
|
-
"members":{
|
408
|
-
},
|
409
|
-
"exception":true
|
410
|
-
},
|
411
|
-
"InvalidHomeRegionException":{
|
412
|
-
"type":"structure",
|
413
|
-
"members":{
|
414
|
-
},
|
415
|
-
"exception":true
|
416
|
-
},
|
417
|
-
"InvalidKmsKeyIdException":{
|
418
|
-
"type":"structure",
|
419
|
-
"members":{
|
420
|
-
},
|
421
|
-
"exception":true
|
422
|
-
},
|
423
|
-
"InvalidLookupAttributesException":{
|
424
|
-
"type":"structure",
|
425
|
-
"members":{
|
426
|
-
},
|
427
|
-
"exception":true
|
428
|
-
},
|
429
|
-
"InvalidMaxResultsException":{
|
430
|
-
"type":"structure",
|
431
|
-
"members":{
|
432
|
-
},
|
433
|
-
"exception":true
|
434
|
-
},
|
435
|
-
"InvalidNextTokenException":{
|
436
|
-
"type":"structure",
|
437
|
-
"members":{
|
438
|
-
},
|
439
|
-
"exception":true
|
440
|
-
},
|
441
|
-
"InvalidParameterCombinationException":{
|
442
|
-
"type":"structure",
|
443
|
-
"members":{
|
444
|
-
},
|
445
|
-
"exception":true
|
446
|
-
},
|
447
|
-
"InvalidS3BucketNameException":{
|
448
|
-
"type":"structure",
|
449
|
-
"members":{
|
450
|
-
},
|
451
|
-
"exception":true
|
452
|
-
},
|
453
|
-
"InvalidS3PrefixException":{
|
454
|
-
"type":"structure",
|
455
|
-
"members":{
|
456
|
-
},
|
457
|
-
"exception":true
|
458
|
-
},
|
459
|
-
"InvalidSnsTopicNameException":{
|
460
|
-
"type":"structure",
|
461
|
-
"members":{
|
462
|
-
},
|
463
|
-
"exception":true
|
464
|
-
},
|
465
|
-
"InvalidTagParameterException":{
|
466
|
-
"type":"structure",
|
467
|
-
"members":{
|
468
|
-
},
|
469
|
-
"exception":true
|
470
|
-
},
|
471
|
-
"InvalidTimeRangeException":{
|
472
|
-
"type":"structure",
|
473
|
-
"members":{
|
474
|
-
},
|
475
|
-
"exception":true
|
476
|
-
},
|
477
|
-
"InvalidTokenException":{
|
478
|
-
"type":"structure",
|
479
|
-
"members":{
|
480
|
-
},
|
481
|
-
"exception":true
|
482
|
-
},
|
483
|
-
"InvalidTrailNameException":{
|
484
|
-
"type":"structure",
|
485
|
-
"members":{
|
486
|
-
},
|
487
|
-
"exception":true
|
488
|
-
},
|
489
|
-
"KmsException":{
|
490
|
-
"type":"structure",
|
491
|
-
"members":{
|
492
|
-
},
|
493
|
-
"exception":true
|
494
|
-
},
|
495
|
-
"KmsKeyDisabledException":{
|
496
|
-
"type":"structure",
|
497
|
-
"members":{
|
498
|
-
},
|
499
|
-
"deprecated":true,
|
500
|
-
"exception":true
|
501
|
-
},
|
502
|
-
"KmsKeyNotFoundException":{
|
503
|
-
"type":"structure",
|
504
|
-
"members":{
|
505
|
-
},
|
506
|
-
"exception":true
|
507
|
-
},
|
508
|
-
"ListPublicKeysRequest":{
|
509
|
-
"type":"structure",
|
510
|
-
"members":{
|
511
|
-
"StartTime":{"shape":"Date"},
|
512
|
-
"EndTime":{"shape":"Date"},
|
513
|
-
"NextToken":{"shape":"String"}
|
514
|
-
}
|
515
|
-
},
|
516
|
-
"ListPublicKeysResponse":{
|
517
|
-
"type":"structure",
|
518
|
-
"members":{
|
519
|
-
"PublicKeyList":{"shape":"PublicKeyList"},
|
520
|
-
"NextToken":{"shape":"String"}
|
521
|
-
}
|
522
|
-
},
|
523
|
-
"ListTagsRequest":{
|
524
|
-
"type":"structure",
|
525
|
-
"required":["ResourceIdList"],
|
526
|
-
"members":{
|
527
|
-
"ResourceIdList":{"shape":"ResourceIdList"},
|
528
|
-
"NextToken":{"shape":"String"}
|
529
|
-
}
|
530
|
-
},
|
531
|
-
"ListTagsResponse":{
|
532
|
-
"type":"structure",
|
533
|
-
"members":{
|
534
|
-
"ResourceTagList":{"shape":"ResourceTagList"},
|
535
|
-
"NextToken":{"shape":"String"}
|
536
|
-
}
|
537
|
-
},
|
538
|
-
"LookupAttribute":{
|
539
|
-
"type":"structure",
|
540
|
-
"required":[
|
541
|
-
"AttributeKey",
|
542
|
-
"AttributeValue"
|
543
|
-
],
|
544
|
-
"members":{
|
545
|
-
"AttributeKey":{"shape":"LookupAttributeKey"},
|
546
|
-
"AttributeValue":{"shape":"String"}
|
547
|
-
}
|
548
|
-
},
|
549
|
-
"LookupAttributeKey":{
|
550
|
-
"type":"string",
|
551
|
-
"enum":[
|
552
|
-
"EventId",
|
553
|
-
"EventName",
|
554
|
-
"Username",
|
555
|
-
"ResourceType",
|
556
|
-
"ResourceName"
|
557
|
-
]
|
558
|
-
},
|
559
|
-
"LookupAttributesList":{
|
560
|
-
"type":"list",
|
561
|
-
"member":{"shape":"LookupAttribute"}
|
562
|
-
},
|
563
|
-
"LookupEventsRequest":{
|
564
|
-
"type":"structure",
|
565
|
-
"members":{
|
566
|
-
"LookupAttributes":{"shape":"LookupAttributesList"},
|
567
|
-
"StartTime":{"shape":"Date"},
|
568
|
-
"EndTime":{"shape":"Date"},
|
569
|
-
"MaxResults":{"shape":"MaxResults"},
|
570
|
-
"NextToken":{"shape":"NextToken"}
|
571
|
-
}
|
572
|
-
},
|
573
|
-
"LookupEventsResponse":{
|
574
|
-
"type":"structure",
|
575
|
-
"members":{
|
576
|
-
"Events":{"shape":"EventsList"},
|
577
|
-
"NextToken":{"shape":"NextToken"}
|
578
|
-
}
|
579
|
-
},
|
580
|
-
"MaxResults":{
|
581
|
-
"type":"integer",
|
582
|
-
"max":50,
|
583
|
-
"min":1
|
584
|
-
},
|
585
|
-
"MaximumNumberOfTrailsExceededException":{
|
586
|
-
"type":"structure",
|
587
|
-
"members":{
|
588
|
-
},
|
589
|
-
"exception":true
|
590
|
-
},
|
591
|
-
"NextToken":{"type":"string"},
|
592
|
-
"OperationNotPermittedException":{
|
593
|
-
"type":"structure",
|
594
|
-
"members":{
|
595
|
-
},
|
596
|
-
"exception":true
|
597
|
-
},
|
598
|
-
"PublicKey":{
|
599
|
-
"type":"structure",
|
600
|
-
"members":{
|
601
|
-
"Value":{"shape":"ByteBuffer"},
|
602
|
-
"ValidityStartTime":{"shape":"Date"},
|
603
|
-
"ValidityEndTime":{"shape":"Date"},
|
604
|
-
"Fingerprint":{"shape":"String"}
|
605
|
-
}
|
606
|
-
},
|
607
|
-
"PublicKeyList":{
|
608
|
-
"type":"list",
|
609
|
-
"member":{"shape":"PublicKey"}
|
610
|
-
},
|
611
|
-
"RemoveTagsRequest":{
|
612
|
-
"type":"structure",
|
613
|
-
"required":["ResourceId"],
|
614
|
-
"members":{
|
615
|
-
"ResourceId":{"shape":"String"},
|
616
|
-
"TagsList":{"shape":"TagsList"}
|
617
|
-
}
|
618
|
-
},
|
619
|
-
"RemoveTagsResponse":{
|
620
|
-
"type":"structure",
|
621
|
-
"members":{
|
622
|
-
}
|
623
|
-
},
|
624
|
-
"Resource":{
|
625
|
-
"type":"structure",
|
626
|
-
"members":{
|
627
|
-
"ResourceType":{"shape":"String"},
|
628
|
-
"ResourceName":{"shape":"String"}
|
629
|
-
}
|
630
|
-
},
|
631
|
-
"ResourceIdList":{
|
632
|
-
"type":"list",
|
633
|
-
"member":{"shape":"String"}
|
634
|
-
},
|
635
|
-
"ResourceList":{
|
636
|
-
"type":"list",
|
637
|
-
"member":{"shape":"Resource"}
|
638
|
-
},
|
639
|
-
"ResourceNotFoundException":{
|
640
|
-
"type":"structure",
|
641
|
-
"members":{
|
642
|
-
},
|
643
|
-
"exception":true
|
644
|
-
},
|
645
|
-
"ResourceTag":{
|
646
|
-
"type":"structure",
|
647
|
-
"members":{
|
648
|
-
"ResourceId":{"shape":"String"},
|
649
|
-
"TagsList":{"shape":"TagsList"}
|
650
|
-
}
|
651
|
-
},
|
652
|
-
"ResourceTagList":{
|
653
|
-
"type":"list",
|
654
|
-
"member":{"shape":"ResourceTag"}
|
655
|
-
},
|
656
|
-
"ResourceTypeNotSupportedException":{
|
657
|
-
"type":"structure",
|
658
|
-
"members":{
|
659
|
-
},
|
660
|
-
"exception":true
|
661
|
-
},
|
662
|
-
"S3BucketDoesNotExistException":{
|
663
|
-
"type":"structure",
|
664
|
-
"members":{
|
665
|
-
},
|
666
|
-
"exception":true
|
667
|
-
},
|
668
|
-
"StartLoggingRequest":{
|
669
|
-
"type":"structure",
|
670
|
-
"required":["Name"],
|
671
|
-
"members":{
|
672
|
-
"Name":{"shape":"String"}
|
673
|
-
}
|
674
|
-
},
|
675
|
-
"StartLoggingResponse":{
|
676
|
-
"type":"structure",
|
677
|
-
"members":{
|
678
|
-
}
|
679
|
-
},
|
680
|
-
"StopLoggingRequest":{
|
681
|
-
"type":"structure",
|
682
|
-
"required":["Name"],
|
683
|
-
"members":{
|
684
|
-
"Name":{"shape":"String"}
|
685
|
-
}
|
686
|
-
},
|
687
|
-
"StopLoggingResponse":{
|
688
|
-
"type":"structure",
|
689
|
-
"members":{
|
690
|
-
}
|
691
|
-
},
|
692
|
-
"String":{"type":"string"},
|
693
|
-
"Tag":{
|
694
|
-
"type":"structure",
|
695
|
-
"required":["Key"],
|
696
|
-
"members":{
|
697
|
-
"Key":{"shape":"String"},
|
698
|
-
"Value":{"shape":"String"}
|
699
|
-
}
|
700
|
-
},
|
701
|
-
"TagsLimitExceededException":{
|
702
|
-
"type":"structure",
|
703
|
-
"members":{
|
704
|
-
},
|
705
|
-
"exception":true
|
706
|
-
},
|
707
|
-
"TagsList":{
|
708
|
-
"type":"list",
|
709
|
-
"member":{"shape":"Tag"}
|
710
|
-
},
|
711
|
-
"Trail":{
|
712
|
-
"type":"structure",
|
713
|
-
"members":{
|
714
|
-
"Name":{"shape":"String"},
|
715
|
-
"S3BucketName":{"shape":"String"},
|
716
|
-
"S3KeyPrefix":{"shape":"String"},
|
717
|
-
"SnsTopicName":{
|
718
|
-
"shape":"String",
|
719
|
-
"deprecated":true
|
720
|
-
},
|
721
|
-
"SnsTopicARN":{"shape":"String"},
|
722
|
-
"IncludeGlobalServiceEvents":{"shape":"Boolean"},
|
723
|
-
"IsMultiRegionTrail":{"shape":"Boolean"},
|
724
|
-
"HomeRegion":{"shape":"String"},
|
725
|
-
"TrailARN":{"shape":"String"},
|
726
|
-
"LogFileValidationEnabled":{"shape":"Boolean"},
|
727
|
-
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
728
|
-
"CloudWatchLogsRoleArn":{"shape":"String"},
|
729
|
-
"KmsKeyId":{"shape":"String"}
|
730
|
-
}
|
731
|
-
},
|
732
|
-
"TrailAlreadyExistsException":{
|
733
|
-
"type":"structure",
|
734
|
-
"members":{
|
735
|
-
},
|
736
|
-
"exception":true
|
737
|
-
},
|
738
|
-
"TrailList":{
|
739
|
-
"type":"list",
|
740
|
-
"member":{"shape":"Trail"}
|
741
|
-
},
|
742
|
-
"TrailNameList":{
|
743
|
-
"type":"list",
|
744
|
-
"member":{"shape":"String"}
|
745
|
-
},
|
746
|
-
"TrailNotFoundException":{
|
747
|
-
"type":"structure",
|
748
|
-
"members":{
|
749
|
-
},
|
750
|
-
"exception":true
|
751
|
-
},
|
752
|
-
"TrailNotProvidedException":{
|
753
|
-
"type":"structure",
|
754
|
-
"members":{
|
755
|
-
},
|
756
|
-
"exception":true
|
757
|
-
},
|
758
|
-
"UnsupportedOperationException":{
|
759
|
-
"type":"structure",
|
760
|
-
"members":{
|
761
|
-
},
|
762
|
-
"exception":true
|
763
|
-
},
|
764
|
-
"UpdateTrailRequest":{
|
765
|
-
"type":"structure",
|
766
|
-
"required":["Name"],
|
767
|
-
"members":{
|
768
|
-
"Name":{"shape":"String"},
|
769
|
-
"S3BucketName":{"shape":"String"},
|
770
|
-
"S3KeyPrefix":{"shape":"String"},
|
771
|
-
"SnsTopicName":{"shape":"String"},
|
772
|
-
"IncludeGlobalServiceEvents":{"shape":"Boolean"},
|
773
|
-
"IsMultiRegionTrail":{"shape":"Boolean"},
|
774
|
-
"EnableLogFileValidation":{"shape":"Boolean"},
|
775
|
-
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
776
|
-
"CloudWatchLogsRoleArn":{"shape":"String"},
|
777
|
-
"KmsKeyId":{"shape":"String"}
|
778
|
-
}
|
779
|
-
},
|
780
|
-
"UpdateTrailResponse":{
|
781
|
-
"type":"structure",
|
782
|
-
"members":{
|
783
|
-
"Name":{"shape":"String"},
|
784
|
-
"S3BucketName":{"shape":"String"},
|
785
|
-
"S3KeyPrefix":{"shape":"String"},
|
786
|
-
"SnsTopicName":{
|
787
|
-
"shape":"String",
|
788
|
-
"deprecated":true
|
789
|
-
},
|
790
|
-
"SnsTopicARN":{"shape":"String"},
|
791
|
-
"IncludeGlobalServiceEvents":{"shape":"Boolean"},
|
792
|
-
"IsMultiRegionTrail":{"shape":"Boolean"},
|
793
|
-
"TrailARN":{"shape":"String"},
|
794
|
-
"LogFileValidationEnabled":{"shape":"Boolean"},
|
795
|
-
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
796
|
-
"CloudWatchLogsRoleArn":{"shape":"String"},
|
797
|
-
"KmsKeyId":{"shape":"String"}
|
798
|
-
}
|
799
|
-
}
|
800
|
-
}
|
801
|
-
}
|