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,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeStream": {
|
4
|
-
"input_token": "ExclusiveStartShardId",
|
5
|
-
"limit_key": "Limit",
|
6
|
-
"more_results": "StreamDescription.HasMoreShards",
|
7
|
-
"output_token": "StreamDescription.Shards[-1].ShardId",
|
8
|
-
"result_key": "StreamDescription.Shards"
|
9
|
-
},
|
10
|
-
"ListStreams": {
|
11
|
-
"input_token": "ExclusiveStartStreamName",
|
12
|
-
"limit_key": "Limit",
|
13
|
-
"more_results": "HasMoreStreams",
|
14
|
-
"output_token": "StreamNames[-1]",
|
15
|
-
"result_key": "StreamNames"
|
16
|
-
}
|
17
|
-
}
|
18
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"StreamExists": {
|
5
|
-
"delay": 10,
|
6
|
-
"operation": "DescribeStream",
|
7
|
-
"maxAttempts": 18,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"expected": "ACTIVE",
|
11
|
-
"matcher": "path",
|
12
|
-
"state": "success",
|
13
|
-
"argument": "StreamDescription.StreamStatus"
|
14
|
-
}
|
15
|
-
]
|
16
|
-
}
|
17
|
-
}
|
18
|
-
}
|
@@ -1,1209 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2014-11-01",
|
5
|
-
"endpointPrefix":"kms",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceAbbreviation":"KMS",
|
9
|
-
"serviceFullName":"AWS Key Management Service",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"targetPrefix":"TrentService"
|
12
|
-
},
|
13
|
-
"operations":{
|
14
|
-
"CancelKeyDeletion":{
|
15
|
-
"name":"CancelKeyDeletion",
|
16
|
-
"http":{
|
17
|
-
"method":"POST",
|
18
|
-
"requestUri":"/"
|
19
|
-
},
|
20
|
-
"input":{"shape":"CancelKeyDeletionRequest"},
|
21
|
-
"output":{"shape":"CancelKeyDeletionResponse"},
|
22
|
-
"errors":[
|
23
|
-
{"shape":"NotFoundException"},
|
24
|
-
{"shape":"InvalidArnException"},
|
25
|
-
{"shape":"DependencyTimeoutException"},
|
26
|
-
{"shape":"KMSInternalException"},
|
27
|
-
{"shape":"KMSInvalidStateException"}
|
28
|
-
]
|
29
|
-
},
|
30
|
-
"CreateAlias":{
|
31
|
-
"name":"CreateAlias",
|
32
|
-
"http":{
|
33
|
-
"method":"POST",
|
34
|
-
"requestUri":"/"
|
35
|
-
},
|
36
|
-
"input":{"shape":"CreateAliasRequest"},
|
37
|
-
"errors":[
|
38
|
-
{"shape":"DependencyTimeoutException"},
|
39
|
-
{"shape":"AlreadyExistsException"},
|
40
|
-
{"shape":"NotFoundException"},
|
41
|
-
{"shape":"InvalidAliasNameException"},
|
42
|
-
{"shape":"KMSInternalException"},
|
43
|
-
{"shape":"LimitExceededException"},
|
44
|
-
{"shape":"KMSInvalidStateException"}
|
45
|
-
]
|
46
|
-
},
|
47
|
-
"CreateGrant":{
|
48
|
-
"name":"CreateGrant",
|
49
|
-
"http":{
|
50
|
-
"method":"POST",
|
51
|
-
"requestUri":"/"
|
52
|
-
},
|
53
|
-
"input":{"shape":"CreateGrantRequest"},
|
54
|
-
"output":{"shape":"CreateGrantResponse"},
|
55
|
-
"errors":[
|
56
|
-
{"shape":"NotFoundException"},
|
57
|
-
{"shape":"DisabledException"},
|
58
|
-
{"shape":"DependencyTimeoutException"},
|
59
|
-
{"shape":"InvalidArnException"},
|
60
|
-
{"shape":"KMSInternalException"},
|
61
|
-
{"shape":"InvalidGrantTokenException"},
|
62
|
-
{"shape":"LimitExceededException"},
|
63
|
-
{"shape":"KMSInvalidStateException"}
|
64
|
-
]
|
65
|
-
},
|
66
|
-
"CreateKey":{
|
67
|
-
"name":"CreateKey",
|
68
|
-
"http":{
|
69
|
-
"method":"POST",
|
70
|
-
"requestUri":"/"
|
71
|
-
},
|
72
|
-
"input":{"shape":"CreateKeyRequest"},
|
73
|
-
"output":{"shape":"CreateKeyResponse"},
|
74
|
-
"errors":[
|
75
|
-
{"shape":"MalformedPolicyDocumentException"},
|
76
|
-
{"shape":"DependencyTimeoutException"},
|
77
|
-
{"shape":"InvalidArnException"},
|
78
|
-
{"shape":"UnsupportedOperationException"},
|
79
|
-
{"shape":"KMSInternalException"},
|
80
|
-
{"shape":"LimitExceededException"}
|
81
|
-
]
|
82
|
-
},
|
83
|
-
"Decrypt":{
|
84
|
-
"name":"Decrypt",
|
85
|
-
"http":{
|
86
|
-
"method":"POST",
|
87
|
-
"requestUri":"/"
|
88
|
-
},
|
89
|
-
"input":{"shape":"DecryptRequest"},
|
90
|
-
"output":{"shape":"DecryptResponse"},
|
91
|
-
"errors":[
|
92
|
-
{"shape":"NotFoundException"},
|
93
|
-
{"shape":"DisabledException"},
|
94
|
-
{"shape":"InvalidCiphertextException"},
|
95
|
-
{"shape":"KeyUnavailableException"},
|
96
|
-
{"shape":"DependencyTimeoutException"},
|
97
|
-
{"shape":"InvalidGrantTokenException"},
|
98
|
-
{"shape":"KMSInternalException"},
|
99
|
-
{"shape":"KMSInvalidStateException"}
|
100
|
-
]
|
101
|
-
},
|
102
|
-
"DeleteAlias":{
|
103
|
-
"name":"DeleteAlias",
|
104
|
-
"http":{
|
105
|
-
"method":"POST",
|
106
|
-
"requestUri":"/"
|
107
|
-
},
|
108
|
-
"input":{"shape":"DeleteAliasRequest"},
|
109
|
-
"errors":[
|
110
|
-
{"shape":"DependencyTimeoutException"},
|
111
|
-
{"shape":"NotFoundException"},
|
112
|
-
{"shape":"KMSInternalException"},
|
113
|
-
{"shape":"KMSInvalidStateException"}
|
114
|
-
]
|
115
|
-
},
|
116
|
-
"DescribeKey":{
|
117
|
-
"name":"DescribeKey",
|
118
|
-
"http":{
|
119
|
-
"method":"POST",
|
120
|
-
"requestUri":"/"
|
121
|
-
},
|
122
|
-
"input":{"shape":"DescribeKeyRequest"},
|
123
|
-
"output":{"shape":"DescribeKeyResponse"},
|
124
|
-
"errors":[
|
125
|
-
{"shape":"NotFoundException"},
|
126
|
-
{"shape":"InvalidArnException"},
|
127
|
-
{"shape":"DependencyTimeoutException"},
|
128
|
-
{"shape":"KMSInternalException"}
|
129
|
-
]
|
130
|
-
},
|
131
|
-
"DisableKey":{
|
132
|
-
"name":"DisableKey",
|
133
|
-
"http":{
|
134
|
-
"method":"POST",
|
135
|
-
"requestUri":"/"
|
136
|
-
},
|
137
|
-
"input":{"shape":"DisableKeyRequest"},
|
138
|
-
"errors":[
|
139
|
-
{"shape":"NotFoundException"},
|
140
|
-
{"shape":"InvalidArnException"},
|
141
|
-
{"shape":"DependencyTimeoutException"},
|
142
|
-
{"shape":"KMSInternalException"},
|
143
|
-
{"shape":"KMSInvalidStateException"}
|
144
|
-
]
|
145
|
-
},
|
146
|
-
"DisableKeyRotation":{
|
147
|
-
"name":"DisableKeyRotation",
|
148
|
-
"http":{
|
149
|
-
"method":"POST",
|
150
|
-
"requestUri":"/"
|
151
|
-
},
|
152
|
-
"input":{"shape":"DisableKeyRotationRequest"},
|
153
|
-
"errors":[
|
154
|
-
{"shape":"NotFoundException"},
|
155
|
-
{"shape":"DisabledException"},
|
156
|
-
{"shape":"InvalidArnException"},
|
157
|
-
{"shape":"DependencyTimeoutException"},
|
158
|
-
{"shape":"KMSInternalException"},
|
159
|
-
{"shape":"KMSInvalidStateException"}
|
160
|
-
]
|
161
|
-
},
|
162
|
-
"EnableKey":{
|
163
|
-
"name":"EnableKey",
|
164
|
-
"http":{
|
165
|
-
"method":"POST",
|
166
|
-
"requestUri":"/"
|
167
|
-
},
|
168
|
-
"input":{"shape":"EnableKeyRequest"},
|
169
|
-
"errors":[
|
170
|
-
{"shape":"NotFoundException"},
|
171
|
-
{"shape":"InvalidArnException"},
|
172
|
-
{"shape":"DependencyTimeoutException"},
|
173
|
-
{"shape":"KMSInternalException"},
|
174
|
-
{"shape":"LimitExceededException"},
|
175
|
-
{"shape":"KMSInvalidStateException"}
|
176
|
-
]
|
177
|
-
},
|
178
|
-
"EnableKeyRotation":{
|
179
|
-
"name":"EnableKeyRotation",
|
180
|
-
"http":{
|
181
|
-
"method":"POST",
|
182
|
-
"requestUri":"/"
|
183
|
-
},
|
184
|
-
"input":{"shape":"EnableKeyRotationRequest"},
|
185
|
-
"errors":[
|
186
|
-
{"shape":"NotFoundException"},
|
187
|
-
{"shape":"DisabledException"},
|
188
|
-
{"shape":"InvalidArnException"},
|
189
|
-
{"shape":"DependencyTimeoutException"},
|
190
|
-
{"shape":"KMSInternalException"},
|
191
|
-
{"shape":"KMSInvalidStateException"}
|
192
|
-
]
|
193
|
-
},
|
194
|
-
"Encrypt":{
|
195
|
-
"name":"Encrypt",
|
196
|
-
"http":{
|
197
|
-
"method":"POST",
|
198
|
-
"requestUri":"/"
|
199
|
-
},
|
200
|
-
"input":{"shape":"EncryptRequest"},
|
201
|
-
"output":{"shape":"EncryptResponse"},
|
202
|
-
"errors":[
|
203
|
-
{"shape":"NotFoundException"},
|
204
|
-
{"shape":"DisabledException"},
|
205
|
-
{"shape":"KeyUnavailableException"},
|
206
|
-
{"shape":"DependencyTimeoutException"},
|
207
|
-
{"shape":"InvalidKeyUsageException"},
|
208
|
-
{"shape":"InvalidGrantTokenException"},
|
209
|
-
{"shape":"KMSInternalException"},
|
210
|
-
{"shape":"KMSInvalidStateException"}
|
211
|
-
]
|
212
|
-
},
|
213
|
-
"GenerateDataKey":{
|
214
|
-
"name":"GenerateDataKey",
|
215
|
-
"http":{
|
216
|
-
"method":"POST",
|
217
|
-
"requestUri":"/"
|
218
|
-
},
|
219
|
-
"input":{"shape":"GenerateDataKeyRequest"},
|
220
|
-
"output":{"shape":"GenerateDataKeyResponse"},
|
221
|
-
"errors":[
|
222
|
-
{"shape":"NotFoundException"},
|
223
|
-
{"shape":"DisabledException"},
|
224
|
-
{"shape":"KeyUnavailableException"},
|
225
|
-
{"shape":"DependencyTimeoutException"},
|
226
|
-
{"shape":"InvalidKeyUsageException"},
|
227
|
-
{"shape":"InvalidGrantTokenException"},
|
228
|
-
{"shape":"KMSInternalException"},
|
229
|
-
{"shape":"KMSInvalidStateException"}
|
230
|
-
]
|
231
|
-
},
|
232
|
-
"GenerateDataKeyWithoutPlaintext":{
|
233
|
-
"name":"GenerateDataKeyWithoutPlaintext",
|
234
|
-
"http":{
|
235
|
-
"method":"POST",
|
236
|
-
"requestUri":"/"
|
237
|
-
},
|
238
|
-
"input":{"shape":"GenerateDataKeyWithoutPlaintextRequest"},
|
239
|
-
"output":{"shape":"GenerateDataKeyWithoutPlaintextResponse"},
|
240
|
-
"errors":[
|
241
|
-
{"shape":"NotFoundException"},
|
242
|
-
{"shape":"DisabledException"},
|
243
|
-
{"shape":"KeyUnavailableException"},
|
244
|
-
{"shape":"DependencyTimeoutException"},
|
245
|
-
{"shape":"InvalidKeyUsageException"},
|
246
|
-
{"shape":"InvalidGrantTokenException"},
|
247
|
-
{"shape":"KMSInternalException"},
|
248
|
-
{"shape":"KMSInvalidStateException"}
|
249
|
-
]
|
250
|
-
},
|
251
|
-
"GenerateRandom":{
|
252
|
-
"name":"GenerateRandom",
|
253
|
-
"http":{
|
254
|
-
"method":"POST",
|
255
|
-
"requestUri":"/"
|
256
|
-
},
|
257
|
-
"input":{"shape":"GenerateRandomRequest"},
|
258
|
-
"output":{"shape":"GenerateRandomResponse"},
|
259
|
-
"errors":[
|
260
|
-
{"shape":"DependencyTimeoutException"},
|
261
|
-
{"shape":"KMSInternalException"}
|
262
|
-
]
|
263
|
-
},
|
264
|
-
"GetKeyPolicy":{
|
265
|
-
"name":"GetKeyPolicy",
|
266
|
-
"http":{
|
267
|
-
"method":"POST",
|
268
|
-
"requestUri":"/"
|
269
|
-
},
|
270
|
-
"input":{"shape":"GetKeyPolicyRequest"},
|
271
|
-
"output":{"shape":"GetKeyPolicyResponse"},
|
272
|
-
"errors":[
|
273
|
-
{"shape":"NotFoundException"},
|
274
|
-
{"shape":"InvalidArnException"},
|
275
|
-
{"shape":"DependencyTimeoutException"},
|
276
|
-
{"shape":"KMSInternalException"},
|
277
|
-
{"shape":"KMSInvalidStateException"}
|
278
|
-
]
|
279
|
-
},
|
280
|
-
"GetKeyRotationStatus":{
|
281
|
-
"name":"GetKeyRotationStatus",
|
282
|
-
"http":{
|
283
|
-
"method":"POST",
|
284
|
-
"requestUri":"/"
|
285
|
-
},
|
286
|
-
"input":{"shape":"GetKeyRotationStatusRequest"},
|
287
|
-
"output":{"shape":"GetKeyRotationStatusResponse"},
|
288
|
-
"errors":[
|
289
|
-
{"shape":"NotFoundException"},
|
290
|
-
{"shape":"InvalidArnException"},
|
291
|
-
{"shape":"DependencyTimeoutException"},
|
292
|
-
{"shape":"KMSInternalException"},
|
293
|
-
{"shape":"KMSInvalidStateException"}
|
294
|
-
]
|
295
|
-
},
|
296
|
-
"ListAliases":{
|
297
|
-
"name":"ListAliases",
|
298
|
-
"http":{
|
299
|
-
"method":"POST",
|
300
|
-
"requestUri":"/"
|
301
|
-
},
|
302
|
-
"input":{"shape":"ListAliasesRequest"},
|
303
|
-
"output":{"shape":"ListAliasesResponse"},
|
304
|
-
"errors":[
|
305
|
-
{"shape":"DependencyTimeoutException"},
|
306
|
-
{"shape":"InvalidMarkerException"},
|
307
|
-
{"shape":"KMSInternalException"}
|
308
|
-
]
|
309
|
-
},
|
310
|
-
"ListGrants":{
|
311
|
-
"name":"ListGrants",
|
312
|
-
"http":{
|
313
|
-
"method":"POST",
|
314
|
-
"requestUri":"/"
|
315
|
-
},
|
316
|
-
"input":{"shape":"ListGrantsRequest"},
|
317
|
-
"output":{"shape":"ListGrantsResponse"},
|
318
|
-
"errors":[
|
319
|
-
{"shape":"NotFoundException"},
|
320
|
-
{"shape":"DependencyTimeoutException"},
|
321
|
-
{"shape":"InvalidMarkerException"},
|
322
|
-
{"shape":"InvalidArnException"},
|
323
|
-
{"shape":"KMSInternalException"},
|
324
|
-
{"shape":"KMSInvalidStateException"}
|
325
|
-
]
|
326
|
-
},
|
327
|
-
"ListKeyPolicies":{
|
328
|
-
"name":"ListKeyPolicies",
|
329
|
-
"http":{
|
330
|
-
"method":"POST",
|
331
|
-
"requestUri":"/"
|
332
|
-
},
|
333
|
-
"input":{"shape":"ListKeyPoliciesRequest"},
|
334
|
-
"output":{"shape":"ListKeyPoliciesResponse"},
|
335
|
-
"errors":[
|
336
|
-
{"shape":"NotFoundException"},
|
337
|
-
{"shape":"InvalidArnException"},
|
338
|
-
{"shape":"DependencyTimeoutException"},
|
339
|
-
{"shape":"KMSInternalException"},
|
340
|
-
{"shape":"KMSInvalidStateException"}
|
341
|
-
]
|
342
|
-
},
|
343
|
-
"ListKeys":{
|
344
|
-
"name":"ListKeys",
|
345
|
-
"http":{
|
346
|
-
"method":"POST",
|
347
|
-
"requestUri":"/"
|
348
|
-
},
|
349
|
-
"input":{"shape":"ListKeysRequest"},
|
350
|
-
"output":{"shape":"ListKeysResponse"},
|
351
|
-
"errors":[
|
352
|
-
{"shape":"DependencyTimeoutException"},
|
353
|
-
{"shape":"KMSInternalException"}
|
354
|
-
]
|
355
|
-
},
|
356
|
-
"ListRetirableGrants":{
|
357
|
-
"name":"ListRetirableGrants",
|
358
|
-
"http":{
|
359
|
-
"method":"POST",
|
360
|
-
"requestUri":"/"
|
361
|
-
},
|
362
|
-
"input":{"shape":"ListRetirableGrantsRequest"},
|
363
|
-
"output":{"shape":"ListGrantsResponse"},
|
364
|
-
"errors":[
|
365
|
-
{"shape":"DependencyTimeoutException"},
|
366
|
-
{"shape":"InvalidMarkerException"},
|
367
|
-
{"shape":"InvalidArnException"},
|
368
|
-
{"shape":"NotFoundException"},
|
369
|
-
{"shape":"KMSInternalException"}
|
370
|
-
]
|
371
|
-
},
|
372
|
-
"PutKeyPolicy":{
|
373
|
-
"name":"PutKeyPolicy",
|
374
|
-
"http":{
|
375
|
-
"method":"POST",
|
376
|
-
"requestUri":"/"
|
377
|
-
},
|
378
|
-
"input":{"shape":"PutKeyPolicyRequest"},
|
379
|
-
"errors":[
|
380
|
-
{"shape":"NotFoundException"},
|
381
|
-
{"shape":"InvalidArnException"},
|
382
|
-
{"shape":"MalformedPolicyDocumentException"},
|
383
|
-
{"shape":"DependencyTimeoutException"},
|
384
|
-
{"shape":"UnsupportedOperationException"},
|
385
|
-
{"shape":"KMSInternalException"},
|
386
|
-
{"shape":"LimitExceededException"},
|
387
|
-
{"shape":"KMSInvalidStateException"}
|
388
|
-
]
|
389
|
-
},
|
390
|
-
"ReEncrypt":{
|
391
|
-
"name":"ReEncrypt",
|
392
|
-
"http":{
|
393
|
-
"method":"POST",
|
394
|
-
"requestUri":"/"
|
395
|
-
},
|
396
|
-
"input":{"shape":"ReEncryptRequest"},
|
397
|
-
"output":{"shape":"ReEncryptResponse"},
|
398
|
-
"errors":[
|
399
|
-
{"shape":"NotFoundException"},
|
400
|
-
{"shape":"DisabledException"},
|
401
|
-
{"shape":"InvalidCiphertextException"},
|
402
|
-
{"shape":"KeyUnavailableException"},
|
403
|
-
{"shape":"DependencyTimeoutException"},
|
404
|
-
{"shape":"InvalidKeyUsageException"},
|
405
|
-
{"shape":"InvalidGrantTokenException"},
|
406
|
-
{"shape":"KMSInternalException"},
|
407
|
-
{"shape":"KMSInvalidStateException"}
|
408
|
-
]
|
409
|
-
},
|
410
|
-
"RetireGrant":{
|
411
|
-
"name":"RetireGrant",
|
412
|
-
"http":{
|
413
|
-
"method":"POST",
|
414
|
-
"requestUri":"/"
|
415
|
-
},
|
416
|
-
"input":{"shape":"RetireGrantRequest"},
|
417
|
-
"errors":[
|
418
|
-
{"shape":"InvalidGrantTokenException"},
|
419
|
-
{"shape":"InvalidGrantIdException"},
|
420
|
-
{"shape":"NotFoundException"},
|
421
|
-
{"shape":"DependencyTimeoutException"},
|
422
|
-
{"shape":"KMSInternalException"},
|
423
|
-
{"shape":"KMSInvalidStateException"}
|
424
|
-
]
|
425
|
-
},
|
426
|
-
"RevokeGrant":{
|
427
|
-
"name":"RevokeGrant",
|
428
|
-
"http":{
|
429
|
-
"method":"POST",
|
430
|
-
"requestUri":"/"
|
431
|
-
},
|
432
|
-
"input":{"shape":"RevokeGrantRequest"},
|
433
|
-
"errors":[
|
434
|
-
{"shape":"NotFoundException"},
|
435
|
-
{"shape":"DependencyTimeoutException"},
|
436
|
-
{"shape":"InvalidArnException"},
|
437
|
-
{"shape":"InvalidGrantIdException"},
|
438
|
-
{"shape":"KMSInternalException"},
|
439
|
-
{"shape":"KMSInvalidStateException"}
|
440
|
-
]
|
441
|
-
},
|
442
|
-
"ScheduleKeyDeletion":{
|
443
|
-
"name":"ScheduleKeyDeletion",
|
444
|
-
"http":{
|
445
|
-
"method":"POST",
|
446
|
-
"requestUri":"/"
|
447
|
-
},
|
448
|
-
"input":{"shape":"ScheduleKeyDeletionRequest"},
|
449
|
-
"output":{"shape":"ScheduleKeyDeletionResponse"},
|
450
|
-
"errors":[
|
451
|
-
{"shape":"NotFoundException"},
|
452
|
-
{"shape":"InvalidArnException"},
|
453
|
-
{"shape":"DependencyTimeoutException"},
|
454
|
-
{"shape":"KMSInternalException"},
|
455
|
-
{"shape":"KMSInvalidStateException"}
|
456
|
-
]
|
457
|
-
},
|
458
|
-
"UpdateAlias":{
|
459
|
-
"name":"UpdateAlias",
|
460
|
-
"http":{
|
461
|
-
"method":"POST",
|
462
|
-
"requestUri":"/"
|
463
|
-
},
|
464
|
-
"input":{"shape":"UpdateAliasRequest"},
|
465
|
-
"errors":[
|
466
|
-
{"shape":"DependencyTimeoutException"},
|
467
|
-
{"shape":"NotFoundException"},
|
468
|
-
{"shape":"KMSInternalException"},
|
469
|
-
{"shape":"KMSInvalidStateException"}
|
470
|
-
]
|
471
|
-
},
|
472
|
-
"UpdateKeyDescription":{
|
473
|
-
"name":"UpdateKeyDescription",
|
474
|
-
"http":{
|
475
|
-
"method":"POST",
|
476
|
-
"requestUri":"/"
|
477
|
-
},
|
478
|
-
"input":{"shape":"UpdateKeyDescriptionRequest"},
|
479
|
-
"errors":[
|
480
|
-
{"shape":"NotFoundException"},
|
481
|
-
{"shape":"InvalidArnException"},
|
482
|
-
{"shape":"DependencyTimeoutException"},
|
483
|
-
{"shape":"KMSInternalException"},
|
484
|
-
{"shape":"KMSInvalidStateException"}
|
485
|
-
]
|
486
|
-
}
|
487
|
-
},
|
488
|
-
"shapes":{
|
489
|
-
"AWSAccountIdType":{"type":"string"},
|
490
|
-
"AliasList":{
|
491
|
-
"type":"list",
|
492
|
-
"member":{"shape":"AliasListEntry"}
|
493
|
-
},
|
494
|
-
"AliasListEntry":{
|
495
|
-
"type":"structure",
|
496
|
-
"members":{
|
497
|
-
"AliasName":{"shape":"AliasNameType"},
|
498
|
-
"AliasArn":{"shape":"ArnType"},
|
499
|
-
"TargetKeyId":{"shape":"KeyIdType"}
|
500
|
-
}
|
501
|
-
},
|
502
|
-
"AliasNameType":{
|
503
|
-
"type":"string",
|
504
|
-
"max":256,
|
505
|
-
"min":1,
|
506
|
-
"pattern":"^[a-zA-Z0-9:/_-]+$"
|
507
|
-
},
|
508
|
-
"AlreadyExistsException":{
|
509
|
-
"type":"structure",
|
510
|
-
"members":{
|
511
|
-
"message":{"shape":"ErrorMessageType"}
|
512
|
-
},
|
513
|
-
"exception":true
|
514
|
-
},
|
515
|
-
"ArnType":{
|
516
|
-
"type":"string",
|
517
|
-
"max":2048,
|
518
|
-
"min":20
|
519
|
-
},
|
520
|
-
"BooleanType":{"type":"boolean"},
|
521
|
-
"CancelKeyDeletionRequest":{
|
522
|
-
"type":"structure",
|
523
|
-
"required":["KeyId"],
|
524
|
-
"members":{
|
525
|
-
"KeyId":{"shape":"KeyIdType"}
|
526
|
-
}
|
527
|
-
},
|
528
|
-
"CancelKeyDeletionResponse":{
|
529
|
-
"type":"structure",
|
530
|
-
"members":{
|
531
|
-
"KeyId":{"shape":"KeyIdType"}
|
532
|
-
}
|
533
|
-
},
|
534
|
-
"CiphertextType":{
|
535
|
-
"type":"blob",
|
536
|
-
"max":6144,
|
537
|
-
"min":1
|
538
|
-
},
|
539
|
-
"CreateAliasRequest":{
|
540
|
-
"type":"structure",
|
541
|
-
"required":[
|
542
|
-
"AliasName",
|
543
|
-
"TargetKeyId"
|
544
|
-
],
|
545
|
-
"members":{
|
546
|
-
"AliasName":{"shape":"AliasNameType"},
|
547
|
-
"TargetKeyId":{"shape":"KeyIdType"}
|
548
|
-
}
|
549
|
-
},
|
550
|
-
"CreateGrantRequest":{
|
551
|
-
"type":"structure",
|
552
|
-
"required":[
|
553
|
-
"KeyId",
|
554
|
-
"GranteePrincipal"
|
555
|
-
],
|
556
|
-
"members":{
|
557
|
-
"KeyId":{"shape":"KeyIdType"},
|
558
|
-
"GranteePrincipal":{"shape":"PrincipalIdType"},
|
559
|
-
"RetiringPrincipal":{"shape":"PrincipalIdType"},
|
560
|
-
"Operations":{"shape":"GrantOperationList"},
|
561
|
-
"Constraints":{"shape":"GrantConstraints"},
|
562
|
-
"GrantTokens":{"shape":"GrantTokenList"},
|
563
|
-
"Name":{"shape":"GrantNameType"}
|
564
|
-
}
|
565
|
-
},
|
566
|
-
"CreateGrantResponse":{
|
567
|
-
"type":"structure",
|
568
|
-
"members":{
|
569
|
-
"GrantToken":{"shape":"GrantTokenType"},
|
570
|
-
"GrantId":{"shape":"GrantIdType"}
|
571
|
-
}
|
572
|
-
},
|
573
|
-
"CreateKeyRequest":{
|
574
|
-
"type":"structure",
|
575
|
-
"members":{
|
576
|
-
"Policy":{"shape":"PolicyType"},
|
577
|
-
"Description":{"shape":"DescriptionType"},
|
578
|
-
"KeyUsage":{"shape":"KeyUsageType"},
|
579
|
-
"BypassPolicyLockoutSafetyCheck":{"shape":"BooleanType"}
|
580
|
-
}
|
581
|
-
},
|
582
|
-
"CreateKeyResponse":{
|
583
|
-
"type":"structure",
|
584
|
-
"members":{
|
585
|
-
"KeyMetadata":{"shape":"KeyMetadata"}
|
586
|
-
}
|
587
|
-
},
|
588
|
-
"DataKeySpec":{
|
589
|
-
"type":"string",
|
590
|
-
"enum":[
|
591
|
-
"AES_256",
|
592
|
-
"AES_128"
|
593
|
-
]
|
594
|
-
},
|
595
|
-
"DateType":{"type":"timestamp"},
|
596
|
-
"DecryptRequest":{
|
597
|
-
"type":"structure",
|
598
|
-
"required":["CiphertextBlob"],
|
599
|
-
"members":{
|
600
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
601
|
-
"EncryptionContext":{"shape":"EncryptionContextType"},
|
602
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
603
|
-
}
|
604
|
-
},
|
605
|
-
"DecryptResponse":{
|
606
|
-
"type":"structure",
|
607
|
-
"members":{
|
608
|
-
"KeyId":{"shape":"KeyIdType"},
|
609
|
-
"Plaintext":{"shape":"PlaintextType"}
|
610
|
-
}
|
611
|
-
},
|
612
|
-
"DeleteAliasRequest":{
|
613
|
-
"type":"structure",
|
614
|
-
"required":["AliasName"],
|
615
|
-
"members":{
|
616
|
-
"AliasName":{"shape":"AliasNameType"}
|
617
|
-
}
|
618
|
-
},
|
619
|
-
"DependencyTimeoutException":{
|
620
|
-
"type":"structure",
|
621
|
-
"members":{
|
622
|
-
"message":{"shape":"ErrorMessageType"}
|
623
|
-
},
|
624
|
-
"exception":true,
|
625
|
-
"fault":true
|
626
|
-
},
|
627
|
-
"DescribeKeyRequest":{
|
628
|
-
"type":"structure",
|
629
|
-
"required":["KeyId"],
|
630
|
-
"members":{
|
631
|
-
"KeyId":{"shape":"KeyIdType"},
|
632
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
633
|
-
}
|
634
|
-
},
|
635
|
-
"DescribeKeyResponse":{
|
636
|
-
"type":"structure",
|
637
|
-
"members":{
|
638
|
-
"KeyMetadata":{"shape":"KeyMetadata"}
|
639
|
-
}
|
640
|
-
},
|
641
|
-
"DescriptionType":{
|
642
|
-
"type":"string",
|
643
|
-
"max":8192,
|
644
|
-
"min":0
|
645
|
-
},
|
646
|
-
"DisableKeyRequest":{
|
647
|
-
"type":"structure",
|
648
|
-
"required":["KeyId"],
|
649
|
-
"members":{
|
650
|
-
"KeyId":{"shape":"KeyIdType"}
|
651
|
-
}
|
652
|
-
},
|
653
|
-
"DisableKeyRotationRequest":{
|
654
|
-
"type":"structure",
|
655
|
-
"required":["KeyId"],
|
656
|
-
"members":{
|
657
|
-
"KeyId":{"shape":"KeyIdType"}
|
658
|
-
}
|
659
|
-
},
|
660
|
-
"DisabledException":{
|
661
|
-
"type":"structure",
|
662
|
-
"members":{
|
663
|
-
"message":{"shape":"ErrorMessageType"}
|
664
|
-
},
|
665
|
-
"exception":true
|
666
|
-
},
|
667
|
-
"EnableKeyRequest":{
|
668
|
-
"type":"structure",
|
669
|
-
"required":["KeyId"],
|
670
|
-
"members":{
|
671
|
-
"KeyId":{"shape":"KeyIdType"}
|
672
|
-
}
|
673
|
-
},
|
674
|
-
"EnableKeyRotationRequest":{
|
675
|
-
"type":"structure",
|
676
|
-
"required":["KeyId"],
|
677
|
-
"members":{
|
678
|
-
"KeyId":{"shape":"KeyIdType"}
|
679
|
-
}
|
680
|
-
},
|
681
|
-
"EncryptRequest":{
|
682
|
-
"type":"structure",
|
683
|
-
"required":[
|
684
|
-
"KeyId",
|
685
|
-
"Plaintext"
|
686
|
-
],
|
687
|
-
"members":{
|
688
|
-
"KeyId":{"shape":"KeyIdType"},
|
689
|
-
"Plaintext":{"shape":"PlaintextType"},
|
690
|
-
"EncryptionContext":{"shape":"EncryptionContextType"},
|
691
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
692
|
-
}
|
693
|
-
},
|
694
|
-
"EncryptResponse":{
|
695
|
-
"type":"structure",
|
696
|
-
"members":{
|
697
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
698
|
-
"KeyId":{"shape":"KeyIdType"}
|
699
|
-
}
|
700
|
-
},
|
701
|
-
"EncryptionContextKey":{"type":"string"},
|
702
|
-
"EncryptionContextType":{
|
703
|
-
"type":"map",
|
704
|
-
"key":{"shape":"EncryptionContextKey"},
|
705
|
-
"value":{"shape":"EncryptionContextValue"}
|
706
|
-
},
|
707
|
-
"EncryptionContextValue":{"type":"string"},
|
708
|
-
"ErrorMessageType":{"type":"string"},
|
709
|
-
"GenerateDataKeyRequest":{
|
710
|
-
"type":"structure",
|
711
|
-
"required":["KeyId"],
|
712
|
-
"members":{
|
713
|
-
"KeyId":{"shape":"KeyIdType"},
|
714
|
-
"EncryptionContext":{"shape":"EncryptionContextType"},
|
715
|
-
"NumberOfBytes":{"shape":"NumberOfBytesType"},
|
716
|
-
"KeySpec":{"shape":"DataKeySpec"},
|
717
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
718
|
-
}
|
719
|
-
},
|
720
|
-
"GenerateDataKeyResponse":{
|
721
|
-
"type":"structure",
|
722
|
-
"members":{
|
723
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
724
|
-
"Plaintext":{"shape":"PlaintextType"},
|
725
|
-
"KeyId":{"shape":"KeyIdType"}
|
726
|
-
}
|
727
|
-
},
|
728
|
-
"GenerateDataKeyWithoutPlaintextRequest":{
|
729
|
-
"type":"structure",
|
730
|
-
"required":["KeyId"],
|
731
|
-
"members":{
|
732
|
-
"KeyId":{"shape":"KeyIdType"},
|
733
|
-
"EncryptionContext":{"shape":"EncryptionContextType"},
|
734
|
-
"KeySpec":{"shape":"DataKeySpec"},
|
735
|
-
"NumberOfBytes":{"shape":"NumberOfBytesType"},
|
736
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
737
|
-
}
|
738
|
-
},
|
739
|
-
"GenerateDataKeyWithoutPlaintextResponse":{
|
740
|
-
"type":"structure",
|
741
|
-
"members":{
|
742
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
743
|
-
"KeyId":{"shape":"KeyIdType"}
|
744
|
-
}
|
745
|
-
},
|
746
|
-
"GenerateRandomRequest":{
|
747
|
-
"type":"structure",
|
748
|
-
"members":{
|
749
|
-
"NumberOfBytes":{"shape":"NumberOfBytesType"}
|
750
|
-
}
|
751
|
-
},
|
752
|
-
"GenerateRandomResponse":{
|
753
|
-
"type":"structure",
|
754
|
-
"members":{
|
755
|
-
"Plaintext":{"shape":"PlaintextType"}
|
756
|
-
}
|
757
|
-
},
|
758
|
-
"GetKeyPolicyRequest":{
|
759
|
-
"type":"structure",
|
760
|
-
"required":[
|
761
|
-
"KeyId",
|
762
|
-
"PolicyName"
|
763
|
-
],
|
764
|
-
"members":{
|
765
|
-
"KeyId":{"shape":"KeyIdType"},
|
766
|
-
"PolicyName":{"shape":"PolicyNameType"}
|
767
|
-
}
|
768
|
-
},
|
769
|
-
"GetKeyPolicyResponse":{
|
770
|
-
"type":"structure",
|
771
|
-
"members":{
|
772
|
-
"Policy":{"shape":"PolicyType"}
|
773
|
-
}
|
774
|
-
},
|
775
|
-
"GetKeyRotationStatusRequest":{
|
776
|
-
"type":"structure",
|
777
|
-
"required":["KeyId"],
|
778
|
-
"members":{
|
779
|
-
"KeyId":{"shape":"KeyIdType"}
|
780
|
-
}
|
781
|
-
},
|
782
|
-
"GetKeyRotationStatusResponse":{
|
783
|
-
"type":"structure",
|
784
|
-
"members":{
|
785
|
-
"KeyRotationEnabled":{"shape":"BooleanType"}
|
786
|
-
}
|
787
|
-
},
|
788
|
-
"GrantConstraints":{
|
789
|
-
"type":"structure",
|
790
|
-
"members":{
|
791
|
-
"EncryptionContextSubset":{"shape":"EncryptionContextType"},
|
792
|
-
"EncryptionContextEquals":{"shape":"EncryptionContextType"}
|
793
|
-
}
|
794
|
-
},
|
795
|
-
"GrantIdType":{
|
796
|
-
"type":"string",
|
797
|
-
"max":128,
|
798
|
-
"min":1
|
799
|
-
},
|
800
|
-
"GrantList":{
|
801
|
-
"type":"list",
|
802
|
-
"member":{"shape":"GrantListEntry"}
|
803
|
-
},
|
804
|
-
"GrantListEntry":{
|
805
|
-
"type":"structure",
|
806
|
-
"members":{
|
807
|
-
"KeyId":{"shape":"KeyIdType"},
|
808
|
-
"GrantId":{"shape":"GrantIdType"},
|
809
|
-
"Name":{"shape":"GrantNameType"},
|
810
|
-
"CreationDate":{"shape":"DateType"},
|
811
|
-
"GranteePrincipal":{"shape":"PrincipalIdType"},
|
812
|
-
"RetiringPrincipal":{"shape":"PrincipalIdType"},
|
813
|
-
"IssuingAccount":{"shape":"PrincipalIdType"},
|
814
|
-
"Operations":{"shape":"GrantOperationList"},
|
815
|
-
"Constraints":{"shape":"GrantConstraints"}
|
816
|
-
}
|
817
|
-
},
|
818
|
-
"GrantNameType":{
|
819
|
-
"type":"string",
|
820
|
-
"max":256,
|
821
|
-
"min":1,
|
822
|
-
"pattern":"^[a-zA-Z0-9:/_-]+$"
|
823
|
-
},
|
824
|
-
"GrantOperation":{
|
825
|
-
"type":"string",
|
826
|
-
"enum":[
|
827
|
-
"Decrypt",
|
828
|
-
"Encrypt",
|
829
|
-
"GenerateDataKey",
|
830
|
-
"GenerateDataKeyWithoutPlaintext",
|
831
|
-
"ReEncryptFrom",
|
832
|
-
"ReEncryptTo",
|
833
|
-
"CreateGrant",
|
834
|
-
"RetireGrant",
|
835
|
-
"DescribeKey"
|
836
|
-
]
|
837
|
-
},
|
838
|
-
"GrantOperationList":{
|
839
|
-
"type":"list",
|
840
|
-
"member":{"shape":"GrantOperation"}
|
841
|
-
},
|
842
|
-
"GrantTokenList":{
|
843
|
-
"type":"list",
|
844
|
-
"member":{"shape":"GrantTokenType"},
|
845
|
-
"max":10,
|
846
|
-
"min":0
|
847
|
-
},
|
848
|
-
"GrantTokenType":{
|
849
|
-
"type":"string",
|
850
|
-
"max":8192,
|
851
|
-
"min":1
|
852
|
-
},
|
853
|
-
"InvalidAliasNameException":{
|
854
|
-
"type":"structure",
|
855
|
-
"members":{
|
856
|
-
"message":{"shape":"ErrorMessageType"}
|
857
|
-
},
|
858
|
-
"exception":true
|
859
|
-
},
|
860
|
-
"InvalidArnException":{
|
861
|
-
"type":"structure",
|
862
|
-
"members":{
|
863
|
-
"message":{"shape":"ErrorMessageType"}
|
864
|
-
},
|
865
|
-
"exception":true
|
866
|
-
},
|
867
|
-
"InvalidCiphertextException":{
|
868
|
-
"type":"structure",
|
869
|
-
"members":{
|
870
|
-
"message":{"shape":"ErrorMessageType"}
|
871
|
-
},
|
872
|
-
"exception":true
|
873
|
-
},
|
874
|
-
"InvalidGrantIdException":{
|
875
|
-
"type":"structure",
|
876
|
-
"members":{
|
877
|
-
"message":{"shape":"ErrorMessageType"}
|
878
|
-
},
|
879
|
-
"exception":true
|
880
|
-
},
|
881
|
-
"InvalidGrantTokenException":{
|
882
|
-
"type":"structure",
|
883
|
-
"members":{
|
884
|
-
"message":{"shape":"ErrorMessageType"}
|
885
|
-
},
|
886
|
-
"exception":true
|
887
|
-
},
|
888
|
-
"InvalidKeyUsageException":{
|
889
|
-
"type":"structure",
|
890
|
-
"members":{
|
891
|
-
"message":{"shape":"ErrorMessageType"}
|
892
|
-
},
|
893
|
-
"exception":true
|
894
|
-
},
|
895
|
-
"InvalidMarkerException":{
|
896
|
-
"type":"structure",
|
897
|
-
"members":{
|
898
|
-
"message":{"shape":"ErrorMessageType"}
|
899
|
-
},
|
900
|
-
"exception":true
|
901
|
-
},
|
902
|
-
"KMSInternalException":{
|
903
|
-
"type":"structure",
|
904
|
-
"members":{
|
905
|
-
"message":{"shape":"ErrorMessageType"}
|
906
|
-
},
|
907
|
-
"exception":true
|
908
|
-
},
|
909
|
-
"KMSInvalidStateException":{
|
910
|
-
"type":"structure",
|
911
|
-
"members":{
|
912
|
-
"message":{"shape":"ErrorMessageType"}
|
913
|
-
},
|
914
|
-
"exception":true
|
915
|
-
},
|
916
|
-
"KeyIdType":{
|
917
|
-
"type":"string",
|
918
|
-
"max":256,
|
919
|
-
"min":1
|
920
|
-
},
|
921
|
-
"KeyList":{
|
922
|
-
"type":"list",
|
923
|
-
"member":{"shape":"KeyListEntry"}
|
924
|
-
},
|
925
|
-
"KeyListEntry":{
|
926
|
-
"type":"structure",
|
927
|
-
"members":{
|
928
|
-
"KeyId":{"shape":"KeyIdType"},
|
929
|
-
"KeyArn":{"shape":"ArnType"}
|
930
|
-
}
|
931
|
-
},
|
932
|
-
"KeyMetadata":{
|
933
|
-
"type":"structure",
|
934
|
-
"required":["KeyId"],
|
935
|
-
"members":{
|
936
|
-
"AWSAccountId":{"shape":"AWSAccountIdType"},
|
937
|
-
"KeyId":{"shape":"KeyIdType"},
|
938
|
-
"Arn":{"shape":"ArnType"},
|
939
|
-
"CreationDate":{"shape":"DateType"},
|
940
|
-
"Enabled":{"shape":"BooleanType"},
|
941
|
-
"Description":{"shape":"DescriptionType"},
|
942
|
-
"KeyUsage":{"shape":"KeyUsageType"},
|
943
|
-
"KeyState":{"shape":"KeyState"},
|
944
|
-
"DeletionDate":{"shape":"DateType"}
|
945
|
-
}
|
946
|
-
},
|
947
|
-
"KeyState":{
|
948
|
-
"type":"string",
|
949
|
-
"enum":[
|
950
|
-
"Enabled",
|
951
|
-
"Disabled",
|
952
|
-
"PendingDeletion"
|
953
|
-
]
|
954
|
-
},
|
955
|
-
"KeyUnavailableException":{
|
956
|
-
"type":"structure",
|
957
|
-
"members":{
|
958
|
-
"message":{"shape":"ErrorMessageType"}
|
959
|
-
},
|
960
|
-
"exception":true,
|
961
|
-
"fault":true
|
962
|
-
},
|
963
|
-
"KeyUsageType":{
|
964
|
-
"type":"string",
|
965
|
-
"enum":["ENCRYPT_DECRYPT"]
|
966
|
-
},
|
967
|
-
"LimitExceededException":{
|
968
|
-
"type":"structure",
|
969
|
-
"members":{
|
970
|
-
"message":{"shape":"ErrorMessageType"}
|
971
|
-
},
|
972
|
-
"exception":true
|
973
|
-
},
|
974
|
-
"LimitType":{
|
975
|
-
"type":"integer",
|
976
|
-
"max":1000,
|
977
|
-
"min":1
|
978
|
-
},
|
979
|
-
"ListAliasesRequest":{
|
980
|
-
"type":"structure",
|
981
|
-
"members":{
|
982
|
-
"Limit":{"shape":"LimitType"},
|
983
|
-
"Marker":{"shape":"MarkerType"}
|
984
|
-
}
|
985
|
-
},
|
986
|
-
"ListAliasesResponse":{
|
987
|
-
"type":"structure",
|
988
|
-
"members":{
|
989
|
-
"Aliases":{"shape":"AliasList"},
|
990
|
-
"NextMarker":{"shape":"MarkerType"},
|
991
|
-
"Truncated":{"shape":"BooleanType"}
|
992
|
-
}
|
993
|
-
},
|
994
|
-
"ListGrantsRequest":{
|
995
|
-
"type":"structure",
|
996
|
-
"required":["KeyId"],
|
997
|
-
"members":{
|
998
|
-
"Limit":{"shape":"LimitType"},
|
999
|
-
"Marker":{"shape":"MarkerType"},
|
1000
|
-
"KeyId":{"shape":"KeyIdType"}
|
1001
|
-
}
|
1002
|
-
},
|
1003
|
-
"ListGrantsResponse":{
|
1004
|
-
"type":"structure",
|
1005
|
-
"members":{
|
1006
|
-
"Grants":{"shape":"GrantList"},
|
1007
|
-
"NextMarker":{"shape":"MarkerType"},
|
1008
|
-
"Truncated":{"shape":"BooleanType"}
|
1009
|
-
}
|
1010
|
-
},
|
1011
|
-
"ListKeyPoliciesRequest":{
|
1012
|
-
"type":"structure",
|
1013
|
-
"required":["KeyId"],
|
1014
|
-
"members":{
|
1015
|
-
"KeyId":{"shape":"KeyIdType"},
|
1016
|
-
"Limit":{"shape":"LimitType"},
|
1017
|
-
"Marker":{"shape":"MarkerType"}
|
1018
|
-
}
|
1019
|
-
},
|
1020
|
-
"ListKeyPoliciesResponse":{
|
1021
|
-
"type":"structure",
|
1022
|
-
"members":{
|
1023
|
-
"PolicyNames":{"shape":"PolicyNameList"},
|
1024
|
-
"NextMarker":{"shape":"MarkerType"},
|
1025
|
-
"Truncated":{"shape":"BooleanType"}
|
1026
|
-
}
|
1027
|
-
},
|
1028
|
-
"ListKeysRequest":{
|
1029
|
-
"type":"structure",
|
1030
|
-
"members":{
|
1031
|
-
"Limit":{"shape":"LimitType"},
|
1032
|
-
"Marker":{"shape":"MarkerType"}
|
1033
|
-
}
|
1034
|
-
},
|
1035
|
-
"ListKeysResponse":{
|
1036
|
-
"type":"structure",
|
1037
|
-
"members":{
|
1038
|
-
"Keys":{"shape":"KeyList"},
|
1039
|
-
"NextMarker":{"shape":"MarkerType"},
|
1040
|
-
"Truncated":{"shape":"BooleanType"}
|
1041
|
-
}
|
1042
|
-
},
|
1043
|
-
"ListRetirableGrantsRequest":{
|
1044
|
-
"type":"structure",
|
1045
|
-
"required":["RetiringPrincipal"],
|
1046
|
-
"members":{
|
1047
|
-
"Limit":{"shape":"LimitType"},
|
1048
|
-
"Marker":{"shape":"MarkerType"},
|
1049
|
-
"RetiringPrincipal":{"shape":"PrincipalIdType"}
|
1050
|
-
}
|
1051
|
-
},
|
1052
|
-
"MalformedPolicyDocumentException":{
|
1053
|
-
"type":"structure",
|
1054
|
-
"members":{
|
1055
|
-
"message":{"shape":"ErrorMessageType"}
|
1056
|
-
},
|
1057
|
-
"exception":true
|
1058
|
-
},
|
1059
|
-
"MarkerType":{
|
1060
|
-
"type":"string",
|
1061
|
-
"max":320,
|
1062
|
-
"min":1,
|
1063
|
-
"pattern":"[\\u0020-\\u00FF]*"
|
1064
|
-
},
|
1065
|
-
"NotFoundException":{
|
1066
|
-
"type":"structure",
|
1067
|
-
"members":{
|
1068
|
-
"message":{"shape":"ErrorMessageType"}
|
1069
|
-
},
|
1070
|
-
"exception":true
|
1071
|
-
},
|
1072
|
-
"NumberOfBytesType":{
|
1073
|
-
"type":"integer",
|
1074
|
-
"max":1024,
|
1075
|
-
"min":1
|
1076
|
-
},
|
1077
|
-
"PendingWindowInDaysType":{
|
1078
|
-
"type":"integer",
|
1079
|
-
"max":365,
|
1080
|
-
"min":1
|
1081
|
-
},
|
1082
|
-
"PlaintextType":{
|
1083
|
-
"type":"blob",
|
1084
|
-
"max":4096,
|
1085
|
-
"min":1,
|
1086
|
-
"sensitive":true
|
1087
|
-
},
|
1088
|
-
"PolicyNameList":{
|
1089
|
-
"type":"list",
|
1090
|
-
"member":{"shape":"PolicyNameType"}
|
1091
|
-
},
|
1092
|
-
"PolicyNameType":{
|
1093
|
-
"type":"string",
|
1094
|
-
"max":128,
|
1095
|
-
"min":1,
|
1096
|
-
"pattern":"[\\w]+"
|
1097
|
-
},
|
1098
|
-
"PolicyType":{
|
1099
|
-
"type":"string",
|
1100
|
-
"max":131072,
|
1101
|
-
"min":1,
|
1102
|
-
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
|
1103
|
-
},
|
1104
|
-
"PrincipalIdType":{
|
1105
|
-
"type":"string",
|
1106
|
-
"max":256,
|
1107
|
-
"min":1
|
1108
|
-
},
|
1109
|
-
"PutKeyPolicyRequest":{
|
1110
|
-
"type":"structure",
|
1111
|
-
"required":[
|
1112
|
-
"KeyId",
|
1113
|
-
"PolicyName",
|
1114
|
-
"Policy"
|
1115
|
-
],
|
1116
|
-
"members":{
|
1117
|
-
"KeyId":{"shape":"KeyIdType"},
|
1118
|
-
"PolicyName":{"shape":"PolicyNameType"},
|
1119
|
-
"Policy":{"shape":"PolicyType"},
|
1120
|
-
"BypassPolicyLockoutSafetyCheck":{"shape":"BooleanType"}
|
1121
|
-
}
|
1122
|
-
},
|
1123
|
-
"ReEncryptRequest":{
|
1124
|
-
"type":"structure",
|
1125
|
-
"required":[
|
1126
|
-
"CiphertextBlob",
|
1127
|
-
"DestinationKeyId"
|
1128
|
-
],
|
1129
|
-
"members":{
|
1130
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
1131
|
-
"SourceEncryptionContext":{"shape":"EncryptionContextType"},
|
1132
|
-
"DestinationKeyId":{"shape":"KeyIdType"},
|
1133
|
-
"DestinationEncryptionContext":{"shape":"EncryptionContextType"},
|
1134
|
-
"GrantTokens":{"shape":"GrantTokenList"}
|
1135
|
-
}
|
1136
|
-
},
|
1137
|
-
"ReEncryptResponse":{
|
1138
|
-
"type":"structure",
|
1139
|
-
"members":{
|
1140
|
-
"CiphertextBlob":{"shape":"CiphertextType"},
|
1141
|
-
"SourceKeyId":{"shape":"KeyIdType"},
|
1142
|
-
"KeyId":{"shape":"KeyIdType"}
|
1143
|
-
}
|
1144
|
-
},
|
1145
|
-
"RetireGrantRequest":{
|
1146
|
-
"type":"structure",
|
1147
|
-
"members":{
|
1148
|
-
"GrantToken":{"shape":"GrantTokenType"},
|
1149
|
-
"KeyId":{"shape":"KeyIdType"},
|
1150
|
-
"GrantId":{"shape":"GrantIdType"}
|
1151
|
-
}
|
1152
|
-
},
|
1153
|
-
"RevokeGrantRequest":{
|
1154
|
-
"type":"structure",
|
1155
|
-
"required":[
|
1156
|
-
"KeyId",
|
1157
|
-
"GrantId"
|
1158
|
-
],
|
1159
|
-
"members":{
|
1160
|
-
"KeyId":{"shape":"KeyIdType"},
|
1161
|
-
"GrantId":{"shape":"GrantIdType"}
|
1162
|
-
}
|
1163
|
-
},
|
1164
|
-
"ScheduleKeyDeletionRequest":{
|
1165
|
-
"type":"structure",
|
1166
|
-
"required":["KeyId"],
|
1167
|
-
"members":{
|
1168
|
-
"KeyId":{"shape":"KeyIdType"},
|
1169
|
-
"PendingWindowInDays":{"shape":"PendingWindowInDaysType"}
|
1170
|
-
}
|
1171
|
-
},
|
1172
|
-
"ScheduleKeyDeletionResponse":{
|
1173
|
-
"type":"structure",
|
1174
|
-
"members":{
|
1175
|
-
"KeyId":{"shape":"KeyIdType"},
|
1176
|
-
"DeletionDate":{"shape":"DateType"}
|
1177
|
-
}
|
1178
|
-
},
|
1179
|
-
"UnsupportedOperationException":{
|
1180
|
-
"type":"structure",
|
1181
|
-
"members":{
|
1182
|
-
"message":{"shape":"ErrorMessageType"}
|
1183
|
-
},
|
1184
|
-
"exception":true
|
1185
|
-
},
|
1186
|
-
"UpdateAliasRequest":{
|
1187
|
-
"type":"structure",
|
1188
|
-
"required":[
|
1189
|
-
"AliasName",
|
1190
|
-
"TargetKeyId"
|
1191
|
-
],
|
1192
|
-
"members":{
|
1193
|
-
"AliasName":{"shape":"AliasNameType"},
|
1194
|
-
"TargetKeyId":{"shape":"KeyIdType"}
|
1195
|
-
}
|
1196
|
-
},
|
1197
|
-
"UpdateKeyDescriptionRequest":{
|
1198
|
-
"type":"structure",
|
1199
|
-
"required":[
|
1200
|
-
"KeyId",
|
1201
|
-
"Description"
|
1202
|
-
],
|
1203
|
-
"members":{
|
1204
|
-
"KeyId":{"shape":"KeyIdType"},
|
1205
|
-
"Description":{"shape":"DescriptionType"}
|
1206
|
-
}
|
1207
|
-
}
|
1208
|
-
}
|
1209
|
-
}
|