aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,441 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "DeleteIdentity": "<p>Deletes the specified identity (email address or domain) from the list of verified identities.</p> <p>This action is throttled at one request per second.</p>",
5
- "DeleteVerifiedEmailAddress": "<p>Deletes the specified email address from the list of verified addresses.</p> <important>The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012 release of Domain Verification. The DeleteIdentity action is now preferred.</important> <p>This action is throttled at one request per second.</p>",
6
- "GetIdentityDkimAttributes": "<p>Returns the current status of Easy DKIM signing for an entity. For domain name identities, this action also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published.</p> <p>This action takes a list of identities as input and returns the following information for each:</p> <ul> <li>Whether Easy DKIM signing is enabled or disabled.</li> <li>A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.</li> <li>Whether Amazon SES has successfully verified the DKIM tokens published in the domain's DNS. This information is only returned for domain name identities, not for email addresses.</li> </ul> <p>This action is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time.</p> <p>For more information about creating DNS records using DKIM tokens, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html\">Amazon SES Developer Guide</a>.</p>",
7
- "GetIdentityNotificationAttributes": "<p>Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.</p> <p>This action is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.</p> <p>For more information about using notifications with Amazon SES, see the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html\">Amazon SES Developer Guide</a>.</p>",
8
- "GetIdentityVerificationAttributes": "<p>Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.</p> <p>This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.</p>",
9
- "GetSendQuota": "<p>Returns the user's current sending limits.</p> <p>This action is throttled at one request per second.</p>",
10
- "GetSendStatistics": "<p>Returns the user's sending statistics. The result is a list of data points, representing the last two weeks of sending activity. </p> <p>Each data point in the list contains statistics for a 15-minute interval.</p> <p>This action is throttled at one request per second.</p>",
11
- "ListIdentities": "<p>Returns a list containing all of the identities (email addresses and domains) for a specific AWS Account, regardless of verification status.</p> <p>This action is throttled at one request per second.</p>",
12
- "ListVerifiedEmailAddresses": "<p>Returns a list containing all of the email addresses that have been verified.</p> <important>The ListVerifiedEmailAddresses action is deprecated as of the May 15, 2012 release of Domain Verification. The ListIdentities action is now preferred.</important> <p>This action is throttled at one request per second.</p>",
13
- "SendEmail": "<p>Composes an email message based on input data, and then immediately queues the message for sending. </p> <important> You can only send email from verified email addresses and domains. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html\">Amazon SES Developer Guide</a>. </important> <p>The total size of the message cannot exceed 10 MB.</p> <p>Amazon SES has a limit on the total number of recipients per message: The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. </p> <p>For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your <i>sending quota</i> - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html\">Amazon SES Developer Guide</a>. </p>",
14
- "SendRawEmail": "<p>Sends an email message, with header and content specified by the client. The <code>SendRawEmail</code> action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent. </p> <important> You can only send email from verified email addresses and domains. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html\">Amazon SES Developer Guide</a>. </important> <p>The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message.</p> <p>Amazon SES has a limit on the total number of recipients per message: The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group. </p> <p>The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit. </p> <p>For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your <i>sending quota</i> - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html\">Amazon SES Developer Guide</a>. </p>",
15
- "SetIdentityDkimEnabled": "<p>Enables or disables Easy DKIM signing of email sent from an identity:</p> <ul> <li>If Easy DKIM signing is enabled for a domain name identity (e.g., <code>example.com</code>), then Amazon SES will DKIM-sign all email sent by addresses under that domain name (e.g., <code>user@example.com</code>).</li> <li>If Easy DKIM signing is enabled for an email address, then Amazon SES will DKIM-sign all email sent by that email address.</li> </ul> <p>For email addresses (e.g., <code>user@example.com</code>), you can only enable Easy DKIM signing if the corresponding domain (e.g., <code>example.com</code>) has been set up for Easy DKIM using the AWS Console or the <code>VerifyDomainDkim</code> action.</p> <p>This action is throttled at one request per second.</p> <p>For more information about Easy DKIM signing, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html\">Amazon SES Developer Guide</a>.</p>",
16
- "SetIdentityFeedbackForwardingEnabled": "<p>Given an identity (email address or domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints.</p> <note>Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.</note> <p>This action is throttled at one request per second.</p> <p>For more information about using notifications with Amazon SES, see the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html\">Amazon SES Developer Guide</a>.</p>",
17
- "SetIdentityNotificationTopic": "<p>Given an identity (email address or domain), sets the Amazon Simple Notification Service (Amazon SNS) topic to which Amazon SES will publish bounce, complaint, and/or delivery notifications for emails sent with that identity as the <code>Source</code>.</p> <note>Unless feedback forwarding is enabled, you must specify Amazon SNS topics for bounce and complaint notifications. For more information, see <code>SetIdentityFeedbackForwardingEnabled</code>. </note> <p>This action is throttled at one request per second.</p> <p>For more information about feedback notification, see the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html\">Amazon SES Developer Guide</a>.</p>",
18
- "VerifyDomainDkim": "<p>Returns a set of DKIM tokens for a domain. DKIM <i>tokens</i> are character strings that represent your domain's identity. Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain.</p> <p>This action is throttled at one request per second.</p> <p>To enable or disable Easy DKIM signing for a domain, use the <code>SetIdentityDkimEnabled</code> action.</p> <p>For more information about creating DNS records using DKIM tokens, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html\">Amazon SES Developer Guide</a>.</p>",
19
- "VerifyDomainIdentity": "<p>Verifies a domain.</p> <p>This action is throttled at one request per second.</p>",
20
- "VerifyEmailAddress": "<p>Verifies an email address. This action causes a confirmation email message to be sent to the specified address.</p> <important>The VerifyEmailAddress action is deprecated as of the May 15, 2012 release of Domain Verification. The VerifyEmailIdentity action is now preferred.</important> <p>This action is throttled at one request per second.</p>",
21
- "VerifyEmailIdentity": "<p>Verifies an email address. This action causes a confirmation email message to be sent to the specified address.</p> <p>This action is throttled at one request per second.</p>"
22
- },
23
- "service": "<fullname>Amazon Simple Email Service</fullname> <p> This is the API Reference for Amazon Simple Email Service (Amazon SES). This documentation is intended to be used in conjunction with the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html\">Amazon SES Developer Guide</a>. </p> <note>For a list of Amazon SES endpoints to use in service requests, see <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html\">Regions and Amazon SES</a> in the Amazon SES Developer Guide. </note>",
24
- "shapes": {
25
- "Address": {
26
- "base": null,
27
- "refs": {
28
- "AddressList$member": null,
29
- "DeleteVerifiedEmailAddressRequest$EmailAddress": "<p>An email address to be removed from the list of verified addresses.</p>",
30
- "SendEmailRequest$Source": "<p>The identity's email address.</p> <p> By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: <code>=?charset?encoding?encoded-text?=</code>. For more information, see <a href=\"http://tools.ietf.org/html/rfc2047\">RFC 2047</a>. </p>",
31
- "SendEmailRequest$ReturnPath": "<p>The email address to which bounces and complaints are to be forwarded when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient's ISP; this message will then be forwarded to the email address specified by the <code>ReturnPath</code> parameter. The <code>ReturnPath</code> parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. </p>",
32
- "SendRawEmailRequest$Source": "<p>The identity's email address. If you do not provide a value for this parameter, you must specify a \"From\" address in the raw text of the message. (You can also specify both.)</p> <p> By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: <code>=?charset?encoding?encoded-text?=</code>. For more information, see <a href=\"http://tools.ietf.org/html/rfc2047\">RFC 2047</a>. </p> <note>If you specify the <code>Source</code> parameter and have feedback forwarding enabled, then bounces and complaints will be sent to this email address. This takes precedence over any <i>Return-Path</i> header that you might include in the raw text of the message. </note>",
33
- "VerifyEmailAddressRequest$EmailAddress": "<p>The email address to be verified.</p>",
34
- "VerifyEmailIdentityRequest$EmailAddress": "<p>The email address to be verified.</p>"
35
- }
36
- },
37
- "AddressList": {
38
- "base": null,
39
- "refs": {
40
- "Destination$ToAddresses": "<p>The To: field(s) of the message.</p>",
41
- "Destination$CcAddresses": "<p>The CC: field(s) of the message.</p>",
42
- "Destination$BccAddresses": "<p>The BCC: field(s) of the message.</p>",
43
- "ListVerifiedEmailAddressesResponse$VerifiedEmailAddresses": "<p>A list of email addresses that have been verified.</p>",
44
- "SendEmailRequest$ReplyToAddresses": "<p>The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply. </p>",
45
- "SendRawEmailRequest$Destinations": "<p>A list of destinations for the message, consisting of To:, CC:, and BCC: addresses.</p>"
46
- }
47
- },
48
- "Body": {
49
- "base": "<p>Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients. </p>",
50
- "refs": {
51
- "Message$Body": "<p>The message body.</p>"
52
- }
53
- },
54
- "Charset": {
55
- "base": null,
56
- "refs": {
57
- "Content$Charset": "<p>The character set of the content.</p>"
58
- }
59
- },
60
- "Content": {
61
- "base": "<p>Represents textual data, plus an optional character set specification.</p> <p>By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS. </p>",
62
- "refs": {
63
- "Body$Text": "<p>The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices). </p>",
64
- "Body$Html": "<p>The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message. </p>",
65
- "Message$Subject": "<p>The subject of the message: A short summary of the content, which will appear in the recipient's inbox.</p>"
66
- }
67
- },
68
- "Counter": {
69
- "base": null,
70
- "refs": {
71
- "SendDataPoint$DeliveryAttempts": "<p>Number of emails that have been enqueued for sending.</p>",
72
- "SendDataPoint$Bounces": "<p>Number of emails that have bounced.</p>",
73
- "SendDataPoint$Complaints": "<p>Number of unwanted emails that were rejected by recipients.</p>",
74
- "SendDataPoint$Rejects": "<p>Number of emails rejected by Amazon SES.</p>"
75
- }
76
- },
77
- "DeleteIdentityRequest": {
78
- "base": "<p>Represents a request instructing the service to delete an identity from the list of identities for the AWS Account.</p>",
79
- "refs": {
80
- }
81
- },
82
- "DeleteIdentityResponse": {
83
- "base": "<p>An empty element. Receiving this element indicates that the request completed successfully.</p>",
84
- "refs": {
85
- }
86
- },
87
- "DeleteVerifiedEmailAddressRequest": {
88
- "base": "<p>Represents a request instructing the service to delete an address from the list of verified email addresses.</p>",
89
- "refs": {
90
- }
91
- },
92
- "Destination": {
93
- "base": "<p>Represents the destination of the message, consisting of To:, CC:, and BCC: fields.</p> <p> By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: <code>=?charset?encoding?encoded-text?=</code>. For more information, see <a href=\"http://tools.ietf.org/html/rfc2047\">RFC 2047</a>. </p>",
94
- "refs": {
95
- "SendEmailRequest$Destination": "<p>The destination for this email, composed of To:, CC:, and BCC: fields.</p>"
96
- }
97
- },
98
- "DkimAttributes": {
99
- "base": null,
100
- "refs": {
101
- "GetIdentityDkimAttributesResponse$DkimAttributes": "<p>The DKIM attributes for an email address or a domain. </p>"
102
- }
103
- },
104
- "Domain": {
105
- "base": null,
106
- "refs": {
107
- "VerifyDomainDkimRequest$Domain": "<p>The name of the domain to be verified for Easy DKIM signing.</p>",
108
- "VerifyDomainIdentityRequest$Domain": "<p>The domain to be verified.</p>"
109
- }
110
- },
111
- "Enabled": {
112
- "base": null,
113
- "refs": {
114
- "IdentityDkimAttributes$DkimEnabled": "<p>True if DKIM signing is enabled for email sent from the identity; false otherwise.</p>",
115
- "IdentityNotificationAttributes$ForwardingEnabled": "<p>Describes whether Amazon SES will forward bounce and complaint notifications as email. <code>true</code> indicates that Amazon SES will forward bounce and complaint notifications as email, while <code>false</code> indicates that bounce and complaint notifications will be published only to the specified bounce and complaint Amazon SNS topics.</p>",
116
- "SetIdentityDkimEnabledRequest$DkimEnabled": "<p>Sets whether DKIM signing is enabled for an identity. Set to <code>true</code> to enable DKIM signing for this identity; <code>false</code> to disable it. </p>",
117
- "SetIdentityFeedbackForwardingEnabledRequest$ForwardingEnabled": "<p>Sets whether Amazon SES will forward bounce and complaint notifications as email. <code>true</code> specifies that Amazon SES will forward bounce and complaint notifications as email, in addition to any Amazon SNS topic publishing otherwise specified. <code>false</code> specifies that Amazon SES will publish bounce and complaint notifications only through Amazon SNS. This value can only be set to <code>false</code> when Amazon SNS topics are set for both <code>Bounce</code> and <code>Complaint</code> notification types.</p>"
118
- }
119
- },
120
- "GetIdentityDkimAttributesRequest": {
121
- "base": "<p>Given a list of verified identities, describes their DKIM attributes. The DKIM attributes of an email address identity includes whether DKIM signing is individually enabled or disabled for that address. The DKIM attributes of a domain name identity includes whether DKIM signing is enabled, as well as the DNS records (tokens) that must remain published in the domain name's DNS.</p>",
122
- "refs": {
123
- }
124
- },
125
- "GetIdentityDkimAttributesResponse": {
126
- "base": "<p>Represents a list of all the DKIM attributes for the specified identity.</p>",
127
- "refs": {
128
- }
129
- },
130
- "GetIdentityNotificationAttributesRequest": {
131
- "base": null,
132
- "refs": {
133
- }
134
- },
135
- "GetIdentityNotificationAttributesResponse": {
136
- "base": "<p>Describes whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and/or delivery notifications, and specifies whether feedback forwarding is enabled for bounce and complaint notifications.</p>",
137
- "refs": {
138
- }
139
- },
140
- "GetIdentityVerificationAttributesRequest": {
141
- "base": "<p>Represents a request instructing the service to provide the verification attributes for a list of identities.</p>",
142
- "refs": {
143
- }
144
- },
145
- "GetIdentityVerificationAttributesResponse": {
146
- "base": "<p>Represents the verification attributes for a list of identities.</p>",
147
- "refs": {
148
- }
149
- },
150
- "GetSendQuotaResponse": {
151
- "base": "<p>Represents the user's current activity limits returned from a successful <code>GetSendQuota</code> request. </p>",
152
- "refs": {
153
- }
154
- },
155
- "GetSendStatisticsResponse": {
156
- "base": "<p>Represents a list of <code>SendDataPoint</code> items returned from a successful <code>GetSendStatistics</code> request. This list contains aggregated data from the previous two weeks of sending activity. </p>",
157
- "refs": {
158
- }
159
- },
160
- "Identity": {
161
- "base": null,
162
- "refs": {
163
- "DeleteIdentityRequest$Identity": "<p>The identity to be removed from the list of identities for the AWS Account.</p>",
164
- "DkimAttributes$key": null,
165
- "IdentityList$member": null,
166
- "NotificationAttributes$key": null,
167
- "SetIdentityDkimEnabledRequest$Identity": "<p>The identity for which DKIM signing should be enabled or disabled.</p>",
168
- "SetIdentityFeedbackForwardingEnabledRequest$Identity": "<p>The identity for which to set bounce and complaint notification forwarding. Examples: <code>user@example.com</code>, <code>example.com</code>.</p>",
169
- "SetIdentityNotificationTopicRequest$Identity": "<p>The identity for which the Amazon SNS topic will be set. Examples: <code>user@example.com</code>, <code>example.com</code>.</p>",
170
- "VerificationAttributes$key": null
171
- }
172
- },
173
- "IdentityDkimAttributes": {
174
- "base": "<p>Represents the DKIM attributes of a verified email address or a domain.</p>",
175
- "refs": {
176
- "DkimAttributes$value": null
177
- }
178
- },
179
- "IdentityList": {
180
- "base": null,
181
- "refs": {
182
- "GetIdentityDkimAttributesRequest$Identities": "<p>A list of one or more verified identities - email addresses, domains, or both.</p>",
183
- "GetIdentityNotificationAttributesRequest$Identities": "<p>A list of one or more identities.</p>",
184
- "GetIdentityVerificationAttributesRequest$Identities": "<p>A list of identities.</p>",
185
- "ListIdentitiesResponse$Identities": "<p>A list of identities.</p>"
186
- }
187
- },
188
- "IdentityNotificationAttributes": {
189
- "base": "<p>Represents the notification attributes of an identity, including whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and/or delivery notifications, and whether feedback forwarding is enabled for bounce and complaint notifications.</p>",
190
- "refs": {
191
- "NotificationAttributes$value": null
192
- }
193
- },
194
- "IdentityType": {
195
- "base": null,
196
- "refs": {
197
- "ListIdentitiesRequest$IdentityType": "<p>The type of the identities to list. Possible values are \"EmailAddress\" and \"Domain\". If this parameter is omitted, then all identities will be listed.</p>"
198
- }
199
- },
200
- "IdentityVerificationAttributes": {
201
- "base": "<p>Represents the verification attributes of a single identity.</p>",
202
- "refs": {
203
- "VerificationAttributes$value": null
204
- }
205
- },
206
- "ListIdentitiesRequest": {
207
- "base": "<p>Represents a request instructing the service to list all identities for the AWS Account.</p>",
208
- "refs": {
209
- }
210
- },
211
- "ListIdentitiesResponse": {
212
- "base": "<p>Represents a list of all verified identities for the AWS Account.</p>",
213
- "refs": {
214
- }
215
- },
216
- "ListVerifiedEmailAddressesResponse": {
217
- "base": "<p>Represents a list of all the email addresses verified for the current user.</p>",
218
- "refs": {
219
- }
220
- },
221
- "Max24HourSend": {
222
- "base": null,
223
- "refs": {
224
- "GetSendQuotaResponse$Max24HourSend": "<p>The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.</p>"
225
- }
226
- },
227
- "MaxItems": {
228
- "base": null,
229
- "refs": {
230
- "ListIdentitiesRequest$MaxItems": "<p>The maximum number of identities per page. Possible values are 1-1000 inclusive.</p>"
231
- }
232
- },
233
- "MaxSendRate": {
234
- "base": null,
235
- "refs": {
236
- "GetSendQuotaResponse$MaxSendRate": "<p>The maximum number of emails that Amazon SES can accept from the user's account per second.</p> <note>The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.</note>"
237
- }
238
- },
239
- "Message": {
240
- "base": "<p>Represents the message to be sent, composed of a subject and a body.</p>",
241
- "refs": {
242
- "SendEmailRequest$Message": "<p>The message to be sent.</p>"
243
- }
244
- },
245
- "MessageData": {
246
- "base": null,
247
- "refs": {
248
- "Content$Data": "<p>The textual data of the content.</p>"
249
- }
250
- },
251
- "MessageId": {
252
- "base": null,
253
- "refs": {
254
- "SendEmailResponse$MessageId": "<p>The unique message identifier returned from the <code>SendEmail</code> action. </p>",
255
- "SendRawEmailResponse$MessageId": "<p>The unique message identifier returned from the <code>SendRawEmail</code> action. </p>"
256
- }
257
- },
258
- "MessageRejected": {
259
- "base": "Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error.",
260
- "refs": {
261
- }
262
- },
263
- "NextToken": {
264
- "base": null,
265
- "refs": {
266
- "ListIdentitiesRequest$NextToken": "<p>The token to use for pagination.</p>",
267
- "ListIdentitiesResponse$NextToken": "<p>The token used for pagination.</p>"
268
- }
269
- },
270
- "NotificationAttributes": {
271
- "base": null,
272
- "refs": {
273
- "GetIdentityNotificationAttributesResponse$NotificationAttributes": "<p>A map of Identity to IdentityNotificationAttributes.</p>"
274
- }
275
- },
276
- "NotificationTopic": {
277
- "base": null,
278
- "refs": {
279
- "IdentityNotificationAttributes$BounceTopic": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish bounce notifications.</p>",
280
- "IdentityNotificationAttributes$ComplaintTopic": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish complaint notifications.</p>",
281
- "IdentityNotificationAttributes$DeliveryTopic": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish delivery notifications.</p>",
282
- "SetIdentityNotificationTopicRequest$SnsTopic": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is omitted from the request or a null value is passed, <code>SnsTopic</code> is cleared and publishing is disabled.</p>"
283
- }
284
- },
285
- "NotificationType": {
286
- "base": null,
287
- "refs": {
288
- "SetIdentityNotificationTopicRequest$NotificationType": "<p>The type of notifications that will be published to the specified Amazon SNS topic.</p>"
289
- }
290
- },
291
- "RawMessage": {
292
- "base": "<p>Represents the raw data of the message.</p>",
293
- "refs": {
294
- "SendRawEmailRequest$RawMessage": "<p>The raw text of the message. The client is responsible for ensuring the following:</p> <p> <ul> <li>Message must contain a header and a body, separated by a blank line.</li> <li>All required header fields must be present.</li> <li>Each part of a multipart MIME message must be formatted properly.</li> <li>MIME content types must be among those supported by Amazon SES. For more information, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html\">Amazon SES Developer Guide</a>. </li> <li>Content must be base64-encoded, if MIME requires it.</li> </ul> </p>"
295
- }
296
- },
297
- "RawMessageData": {
298
- "base": null,
299
- "refs": {
300
- "RawMessage$Data": "<p>The raw data of the message. The client must ensure that the message format complies with Internet email standards regarding email header fields, MIME types, MIME encoding, and base64 encoding (if necessary). </p> <p>The To:, CC:, and BCC: headers in the raw message can contain a group list. </p> <p>For more information, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html\">Amazon SES Developer Guide</a>. </p>"
301
- }
302
- },
303
- "SendDataPoint": {
304
- "base": "<p>Represents sending statistics data. Each <code>SendDataPoint</code> contains statistics for a 15-minute period of sending activity. </p>",
305
- "refs": {
306
- "SendDataPointList$member": null
307
- }
308
- },
309
- "SendDataPointList": {
310
- "base": null,
311
- "refs": {
312
- "GetSendStatisticsResponse$SendDataPoints": "<p>A list of data points, each of which represents 15 minutes of activity.</p>"
313
- }
314
- },
315
- "SendEmailRequest": {
316
- "base": "<p>Represents a request instructing the service to send a single email message.</p> <p>This datatype can be used in application code to compose a message consisting of source, destination, message, reply-to, and return-path parts. This object can then be sent using the <code>SendEmail</code> action. </p>",
317
- "refs": {
318
- }
319
- },
320
- "SendEmailResponse": {
321
- "base": "<p>Represents a unique message ID returned from a successful <code>SendEmail</code> request. </p>",
322
- "refs": {
323
- }
324
- },
325
- "SendRawEmailRequest": {
326
- "base": "<p>Represents a request instructing the service to send a raw email message.</p> <p>This datatype can be used in application code to compose a message consisting of source, destination, and raw message text. This object can then be sent using the <code>SendRawEmail</code> action. </p>",
327
- "refs": {
328
- }
329
- },
330
- "SendRawEmailResponse": {
331
- "base": "<p>Represents a unique message ID returned from a successful <code>SendRawEmail</code> request. </p>",
332
- "refs": {
333
- }
334
- },
335
- "SentLast24Hours": {
336
- "base": null,
337
- "refs": {
338
- "GetSendQuotaResponse$SentLast24Hours": "<p>The number of emails sent during the previous 24 hours.</p>"
339
- }
340
- },
341
- "SetIdentityDkimEnabledRequest": {
342
- "base": "<p>Represents a request instructing the service to enable or disable DKIM signing for an identity.</p>",
343
- "refs": {
344
- }
345
- },
346
- "SetIdentityDkimEnabledResponse": {
347
- "base": "<p>An empty element. Receiving this element indicates that the request completed successfully.</p>",
348
- "refs": {
349
- }
350
- },
351
- "SetIdentityFeedbackForwardingEnabledRequest": {
352
- "base": null,
353
- "refs": {
354
- }
355
- },
356
- "SetIdentityFeedbackForwardingEnabledResponse": {
357
- "base": "<p>An empty element. Receiving this element indicates that the request completed successfully.</p>",
358
- "refs": {
359
- }
360
- },
361
- "SetIdentityNotificationTopicRequest": {
362
- "base": "<p>Represents a request to set or clear an identity's notification topic.</p>",
363
- "refs": {
364
- }
365
- },
366
- "SetIdentityNotificationTopicResponse": {
367
- "base": "<p>An empty element. Receiving this element indicates that the request completed successfully.</p>",
368
- "refs": {
369
- }
370
- },
371
- "Timestamp": {
372
- "base": null,
373
- "refs": {
374
- "SendDataPoint$Timestamp": "<p>Time of the data point.</p>"
375
- }
376
- },
377
- "VerificationAttributes": {
378
- "base": null,
379
- "refs": {
380
- "GetIdentityVerificationAttributesResponse$VerificationAttributes": "<p>A map of Identities to IdentityVerificationAttributes objects.</p>"
381
- }
382
- },
383
- "VerificationStatus": {
384
- "base": null,
385
- "refs": {
386
- "IdentityDkimAttributes$DkimVerificationStatus": "<p>Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name's DNS. (This only applies to domain identities, not email address identities.)</p>",
387
- "IdentityVerificationAttributes$VerificationStatus": "<p>The verification status of the identity: \"Pending\", \"Success\", \"Failed\", or \"TemporaryFailure\".</p>"
388
- }
389
- },
390
- "VerificationToken": {
391
- "base": null,
392
- "refs": {
393
- "IdentityVerificationAttributes$VerificationToken": "<p>The verification token for a domain identity. Null for email address identities.</p>",
394
- "VerificationTokenList$member": null,
395
- "VerifyDomainIdentityResponse$VerificationToken": "<p>A TXT record that must be placed in the DNS settings for the domain, in order to complete domain verification.</p>"
396
- }
397
- },
398
- "VerificationTokenList": {
399
- "base": null,
400
- "refs": {
401
- "IdentityDkimAttributes$DkimTokens": "<p>A set of character strings that represent the domain's identity. Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)</p> <p>For more information about creating DNS records using DKIM tokens, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html\">Amazon SES Developer Guide</a>.</p>",
402
- "VerifyDomainDkimResponse$DkimTokens": "<p>A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.</p> <p>Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain.</p> <p>For more information about creating DNS records using DKIM tokens, go to the <a href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html\">Amazon SES Developer Guide</a>.</p>"
403
- }
404
- },
405
- "VerifyDomainDkimRequest": {
406
- "base": "<p>Represents a request instructing the service to begin DKIM verification for a domain.</p>",
407
- "refs": {
408
- }
409
- },
410
- "VerifyDomainDkimResponse": {
411
- "base": "<p>Represents the DNS records that must be published in the domain name's DNS to complete DKIM setup.</p>",
412
- "refs": {
413
- }
414
- },
415
- "VerifyDomainIdentityRequest": {
416
- "base": "<p>Represents a request instructing the service to begin domain verification.</p>",
417
- "refs": {
418
- }
419
- },
420
- "VerifyDomainIdentityResponse": {
421
- "base": "<p>Represents a token used for domain ownership verification.</p>",
422
- "refs": {
423
- }
424
- },
425
- "VerifyEmailAddressRequest": {
426
- "base": "<p>Represents a request instructing the service to begin email address verification.</p>",
427
- "refs": {
428
- }
429
- },
430
- "VerifyEmailIdentityRequest": {
431
- "base": "<p>Represents a request instructing the service to begin email address verification.</p>",
432
- "refs": {
433
- }
434
- },
435
- "VerifyEmailIdentityResponse": {
436
- "base": "<p>An empty element. Receiving this element indicates that the request completed successfully.</p>",
437
- "refs": {
438
- }
439
- }
440
- }
441
- }
@@ -1,575 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AbortMultipartUpload": "<p>This operation aborts a multipart upload identified by the upload ID.</p> <p>After the Abort Multipart Upload request succeeds, you cannot upload any more parts to the multipart upload or complete the multipart upload. Aborting a completed upload fails. However, aborting an already-aborted upload will succeed, for a short time. For more information about uploading a part and completing a multipart upload, see <a>UploadMultipartPart</a> and <a>CompleteMultipartUpload</a>.</p> <p>This operation is idempotent.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html\">Working with Archives in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-abort-upload.html\">Abort Multipart Upload</a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
5
- "CompleteMultipartUpload": "<p>You call this operation to inform Amazon Glacier that all the archive parts have been uploaded and that Amazon Glacier can now assemble the archive from the uploaded parts. After assembling and saving the archive to the vault, Amazon Glacier returns the URI path of the newly created archive resource. Using the URI path, you can then access the archive. After you upload an archive, you should save the archive ID returned to retrieve the archive at a later point. You can also get the vault inventory to obtain a list of archive IDs in a vault. For more information, see <a>InitiateJob</a>.</p> <p>In the request, you must include the computed SHA256 tree hash of the entire archive you have uploaded. For information about computing a SHA256 tree hash, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/checksum-calculations.html\">Computing Checksums</a>. On the server side, Amazon Glacier also constructs the SHA256 tree hash of the assembled archive. If the values match, Amazon Glacier saves the archive to the vault; otherwise, it returns an error, and the operation fails. The <a>ListParts</a> operation returns a list of parts uploaded for a specific multipart upload. It includes checksum information for each uploaded part that can be used to debug a bad checksum issue.</p> <p>Additionally, Amazon Glacier also checks for any missing content ranges when assembling the archive, if missing content ranges are found, Amazon Glacier returns an error and the operation fails. </p> <p>Complete Multipart Upload is an idempotent operation. After your first successful complete multipart upload, if you call the operation again within a short period, the operation will succeed and return the same archive ID. This is useful in the event you experience a network issue that causes an aborted connection or receive a 500 server error, in which case you can repeat your Complete Multipart Upload request and get the same archive ID without creating duplicate archives. Note, however, that after the multipart upload completes, you cannot call the List Parts operation and the multipart upload will not appear in List Multipart Uploads response, even if idempotent complete is possible.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/uploading-archive-mpu.html\">Uploading Large Archives in Parts (Multipart Upload)</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-complete-upload.html\">Complete Multipart Upload</a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
6
- "CreateVault": "<p>This operation creates a new vault with the specified name. The name of the vault must be unique within a region for an AWS account. You can create up to 1,000 vaults per account. If you need to create more vaults, contact Amazon Glacier.</p> <p>You must use the following guidelines when naming a vault. </p> <p> <ul> <li> <p> Names can be between 1 and 255 characters long. </p> </li> <li> <p>Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).</p> </li> </ul> </p> <p>This operation is idempotent.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/creating-vaults.html\">Creating a Vault in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-put.html\">Create Vault </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
7
- "DeleteArchive": "<p>This operation deletes an archive from a vault. Subsequent requests to initiate a retrieval of this archive will fail. Archive retrievals that are in progress for this archive ID may or may not succeed according to the following scenarios:</p> <ul> <li>If the archive retrieval job is actively preparing the data for download when Amazon Glacier receives the delete archive request, the archival retrieval operation might fail. </li> <li>If the archive retrieval job has successfully prepared the archive for download when Amazon Glacier receives the delete archive request, you will be able to download the output. </li> </ul> <p>This operation is idempotent. Attempting to delete an already-deleted archive does not result in an error. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/deleting-an-archive.html\">Deleting an Archive in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-delete.html\">Delete Archive</a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
8
- "DeleteVault": "<p>This operation deletes a vault. Amazon Glacier will delete a vault only if there are no archives in the vault as of the last inventory and there have been no writes to the vault since the last inventory. If either of these conditions is not satisfied, the vault deletion fails (that is, the vault is not removed) and Amazon Glacier returns an error. You can use <a>DescribeVault</a> to return the number of archives in a vault, and you can use <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html\">Initiate a Job (POST jobs)</a> to initiate a new inventory retrieval for a vault. The inventory contains the archive IDs you use to delete archives using <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-delete.html\">Delete Archive (DELETE archive)</a>.</p> <p>This operation is idempotent.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/deleting-vaults.html\">Deleting a Vault in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-delete.html\">Delete Vault </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
9
- "DeleteVaultAccessPolicy": "<p>This operation deletes the access policy associated with the specified vault. The operation is eventually consistent—that is, it might take some time for Amazon Glacier to completely remove the access policy, and you might still see the effect of the policy for a short time after you send the delete request.</p> <p>This operation is idempotent. You can invoke delete multiple times, even if there is no policy associated with the vault. For more information about vault access policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-access-policy.html\">Amazon Glacier Access Control with Vault Access Policies</a>. </p>",
10
- "DeleteVaultNotifications": "<p>This operation deletes the notification configuration set for a vault. The operation is eventually consistent;that is, it might take some time for Amazon Glacier to completely disable the notifications and you might still receive some notifications for a short time after you send the delete request. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/configuring-notifications.html\">Configuring Vault Notifications in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-notifications-delete.html\">Delete Vault Notification Configuration </a> in the Amazon Glacier Developer Guide. </p>",
11
- "DescribeJob": "<p>This operation returns information about a job you previously initiated, including the job initiation date, the user who initiated the job, the job status code/message and the Amazon SNS topic to notify after Amazon Glacier completes the job. For more information about initiating a job, see <a>InitiateJob</a>. </p> <note><p>This operation enables you to check the status of your job. However, it is strongly recommended that you set up an Amazon SNS topic and specify it in your initiate job request so that Amazon Glacier can notify the topic after it completes the job. </p></note> <p>A job ID will not expire for at least 24 hours after Amazon Glacier completes the job. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For information about the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-describe-job-get.html\">Working with Archives in Amazon Glacier</a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
12
- "DescribeVault": "<p>This operation returns information about a vault, including the vault's Amazon Resource Name (ARN), the date the vault was created, the number of archives it contains, and the total size of all the archives in the vault. The number of archives and their total size are as of the last inventory generation. This means that if you add or remove an archive from a vault, and then immediately use Describe Vault, the change in contents will not be immediately reflected. If you want to retrieve the latest inventory of the vault, use <a>InitiateJob</a>. Amazon Glacier generates vault inventories approximately daily. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-inventory.html\">Downloading a Vault Inventory in Amazon Glacier</a>. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/retrieving-vault-info.html\">Retrieving Vault Metadata in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-get.html\">Describe Vault </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
13
- "GetDataRetrievalPolicy": "<p>This operation returns the current data retrieval policy for the account and region specified in the GET request. For more information about data retrieval policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/data-retrieval-policy.html\">Amazon Glacier Data Retrieval Policies</a>.</p>",
14
- "GetJobOutput": "<p>This operation downloads the output of the job you initiated using <a>InitiateJob</a>. Depending on the job type you specified when you initiated the job, the output will be either the content of an archive or a vault inventory.</p> <p>A job ID will not expire for at least 24 hours after Amazon Glacier completes the job. That is, you can download the job output within the 24 hours period after Amazon Glacier completes the job.</p> <p>If the job output is large, then you can use the <code>Range</code> request header to retrieve a portion of the output. This allows you to download the entire output in smaller chunks of bytes. For example, suppose you have 1 GB of job output you want to download and you decide to download 128 MB chunks of data at a time, which is a total of eight Get Job Output requests. You use the following process to download the job output:</p> <ol> <li> <p>Download a 128 MB chunk of output by specifying the appropriate byte range using the <code>Range</code> header.</p> </li> <li> <p>Along with the data, the response includes a SHA256 tree hash of the payload. You compute the checksum of the payload on the client and compare it with the checksum you received in the response to ensure you received all the expected data.</p> </li> <li> <p>Repeat steps 1 and 2 for all the eight 128 MB chunks of output data, each time specifying the appropriate byte range.</p> </li> <li> <p>After downloading all the parts of the job output, you have a list of eight checksum values. Compute the tree hash of these values to find the checksum of the entire output. Using the <a>DescribeJob</a> API, obtain job information of the job that provided you the output. The response includes the checksum of the entire archive stored in Amazon Glacier. You compare this value with the checksum you computed to ensure you have downloaded the entire archive content with no errors.</p> </li> </ol> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-inventory.html\">Downloading a Vault Inventory</a>, <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/downloading-an-archive.html\">Downloading an Archive</a>, and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-job-output-get.html\">Get Job Output </a> </p>",
15
- "GetVaultAccessPolicy": "<p>This operation retrieves the <code>access-policy</code> subresource set on the vault—for more information on setting this subresource, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-SetVaultAccessPolicy.html\">Set Vault Access Policy (PUT access-policy)</a>. If there is no access policy set on the vault, the operation returns a <code>404 Not found</code> error. For more information about vault access policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-access-policy.html\">Amazon Glacier Access Control with Vault Access Policies</a>.</p>",
16
- "GetVaultNotifications": "<p>This operation retrieves the <code class=\"code\">notification-configuration</code> subresource of the specified vault.</p> <p>For information about setting a notification configuration on a vault, see <a>SetVaultNotifications</a>. If a notification configuration for a vault is not set, the operation returns a <code class=\"code\">404 Not Found</code> error. For more information about vault notifications, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/configuring-notifications.html\">Configuring Vault Notifications in Amazon Glacier</a>. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/configuring-notifications.html\">Configuring Vault Notifications in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-notifications-get.html\">Get Vault Notification Configuration </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
17
- "InitiateJob": "<p>This operation initiates a job of the specified type. In this release, you can initiate a job to retrieve either an archive or a vault inventory (a list of archives in a vault). </p> <p>Retrieving data from Amazon Glacier is a two-step process: </p> <ol> <li> <p>Initiate a retrieval job.</p> <note><p>A data retrieval policy can cause your initiate retrieval job request to fail with a PolicyEnforcedException exception. For more information about data retrieval policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/data-retrieval-policy.html\">Amazon Glacier Data Retrieval Policies</a>. For more information about the PolicyEnforcedException exception, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-error-responses.html\">Error Responses</a>.</p> </note> </li> <li><p>After the job completes, download the bytes.</p></li> </ol> <p>The retrieval request is executed asynchronously. When you initiate a retrieval job, Amazon Glacier creates a job and returns a job ID in the response. When Amazon Glacier completes the job, you can get the job output (archive or inventory data). For information about getting job output, see <a>GetJobOutput</a> operation. </p> <p>The job must complete before you can get its output. To determine when a job is complete, you have the following options:</p> <ul> <li> <p><b>Use Amazon SNS Notification</b> You can specify an Amazon Simple Notification Service (Amazon SNS) topic to which Amazon Glacier can post a notification after the job is completed. You can specify an SNS topic per job request. The notification is sent only after Amazon Glacier completes the job. In addition to specifying an SNS topic per job request, you can configure vault notifications for a vault so that job notifications are always sent. For more information, see <a>SetVaultNotifications</a>.</p> </li> <li> <p><b>Get job details</b> You can make a <a>DescribeJob</a> request to obtain job status information while a job is in progress. However, it is more efficient to use an Amazon SNS notification to determine when a job is complete.</p> </li> </ul> <note><p>The information you get via notification is same that you get by calling <a>DescribeJob</a>.</p></note> <p>If for a specific event, you add both the notification configuration on the vault and also specify an SNS topic in your initiate job request, Amazon Glacier sends both notifications. For more information, see <a>SetVaultNotifications</a>.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p><b>About the Vault Inventory</b></p> <p>Amazon Glacier prepares an inventory for each vault periodically, every 24 hours. When you initiate a job for a vault inventory, Amazon Glacier returns the last inventory for the vault. The inventory data you get might be up to a day or two days old. Also, the initiate inventory job might take some time to complete before you can download the vault inventory. So you do not want to retrieve a vault inventory for each vault operation. However, in some scenarios, you might find the vault inventory useful. For example, when you upload an archive, you can provide an archive description but not an archive name. Amazon Glacier provides you a unique archive ID, an opaque string of characters. So, you might maintain your own database that maps archive names to their corresponding Amazon Glacier assigned archive IDs. You might find the vault inventory useful in the event you need to reconcile information in your database with the actual vault inventory. </p> <p><b>Range Inventory Retrieval</b></p> <p>You can limit the number of inventory items retrieved by filtering on the archive creation date or by setting a limit.</p> <p><i>Filtering by Archive Creation Date</i></p> <p>You can retrieve inventory items for archives created between <code>StartDate</code> and <code>EndDate</code> by specifying values for these parameters in the <b>InitiateJob</b> request. Archives created on or after the <code>StartDate</code> and before the <code>EndDate</code> will be returned. If you only provide the <code>StartDate</code> without the <code>EndDate</code>, you will retrieve the inventory for all archives created on or after the <code>StartDate</code>. If you only provide the <code>EndDate</code> without the <code>StartDate</code>, you will get back the inventory for all archives created before the <code>EndDate</code>.</p> <p><i>Limiting Inventory Items per Retrieval</i></p> <p>You can limit the number of inventory items returned by setting the <code>Limit</code> parameter in the <b>InitiateJob</b> request. The inventory job output will contain inventory items up to the specified <code>Limit</code>. If there are more inventory items available, the result is paginated. After a job is complete you can use the <a>DescribeJob</a> operation to get a marker that you use in a subsequent <b>InitiateJob</b> request. The marker will indicate the starting point to retrieve the next set of inventory items. You can page through your entire inventory by repeatedly making <b>InitiateJob</b> requests with the marker from the previous <b>DescribeJob</b> output, until you get a marker from <b>DescribeJob</b> that returns null, indicating that there are no more inventory items available.</p> <p>You can use the <code>Limit</code> parameter together with the date range parameters.</p> <p><b>About Ranged Archive Retrieval</b></p> <p> You can initiate an archive retrieval for the whole archive or a range of the archive. In the case of ranged archive retrieval, you specify a byte range to return or the whole archive. The range specified must be megabyte (MB) aligned, that is the range start value must be divisible by 1 MB and range end value plus 1 must be divisible by 1 MB or equal the end of the archive. If the ranged archive retrieval is not megabyte aligned, this operation returns a 400 response. Furthermore, to ensure you get checksum values for data you download using Get Job Output API, the range must be tree hash aligned. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html\">Initiate a Job</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-inventory.html\">Downloading a Vault Inventory</a> </p>",
18
- "InitiateMultipartUpload": "<p>This operation initiates a multipart upload. Amazon Glacier creates a multipart upload resource and returns its ID in the response. The multipart upload ID is used in subsequent requests to upload parts of an archive (see <a>UploadMultipartPart</a>).</p> <p>When you initiate a multipart upload, you specify the part size in number of bytes. The part size must be a megabyte (1024 KB) multiplied by a power of 2-for example, 1048576 (1 MB), 2097152 (2 MB), 4194304 (4 MB), 8388608 (8 MB), and so on. The minimum allowable part size is 1 MB, and the maximum is 4 GB.</p> <p>Every part you upload to this resource (see <a>UploadMultipartPart</a>), except the last one, must have the same size. The last one can be the same size or smaller. For example, suppose you want to upload a 16.2 MB file. If you initiate the multipart upload with a part size of 4 MB, you will upload four parts of 4 MB each and one part of 0.2 MB. </p> <note><p>You don't need to know the size of the archive when you start a multipart upload because Amazon Glacier does not require you to specify the overall archive size.</p></note> <p>After you complete the multipart upload, Amazon Glacier removes the multipart upload resource referenced by the ID. Amazon Glacier also removes the multipart upload resource if you cancel the multipart upload or it may be removed if there is no activity for a period of 24 hours.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/uploading-archive-mpu.html\">Uploading Large Archives in Parts (Multipart Upload)</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-initiate-upload.html\">Initiate Multipart Upload</a> in the <i>Amazon Glacier Developer Guide</i>.</p>",
19
- "ListJobs": "<p>This operation lists jobs for a vault, including jobs that are in-progress and jobs that have recently finished. </p> <note><p>Amazon Glacier retains recently completed jobs for a period before deleting them; however, it eventually removes completed jobs. The output of completed jobs can be retrieved. Retaining completed jobs for a period of time after they have completed enables you to get a job output in the event you miss the job completion notification or your first attempt to download it fails. For example, suppose you start an archive retrieval job to download an archive. After the job completes, you start to download the archive but encounter a network error. In this scenario, you can retry and download the archive while the job exists. </p></note> <p>To retrieve an archive or retrieve a vault inventory from Amazon Glacier, you first initiate a job, and after the job completes, you download the data. For an archive retrieval, the output is the archive data, and for an inventory retrieval, it is the inventory list. The List Job operation returns a list of these jobs sorted by job initiation time.</p> <p>This List Jobs operation supports pagination. By default, this operation returns up to 1,000 jobs in the response. You should always check the response for a <code>marker</code> at which to continue the list; if there are no more items the <code>marker</code> is <code>null</code>. To return a list of jobs that begins at a specific job, set the <code>marker</code> request parameter to the value you obtained from a previous List Jobs request. You can also limit the number of jobs returned in the response by specifying the <code>limit</code> parameter in the request.</p> <p>Additionally, you can filter the jobs list returned by specifying an optional <code>statuscode</code> (InProgress, Succeeded, or Failed) and <code>completed</code> (true, false) parameter. The <code>statuscode</code> allows you to specify that only jobs that match a specified status are returned. The <code>completed</code> parameter allows you to specify that only jobs in a specific completion state are returned.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-jobs-get.html\">List Jobs </a> </p>",
20
- "ListMultipartUploads": "<p>This operation lists in-progress multipart uploads for the specified vault. An in-progress multipart upload is a multipart upload that has been initiated by an <a>InitiateMultipartUpload</a> request, but has not yet been completed or aborted. The list returned in the List Multipart Upload response has no guaranteed order. </p> <p>The List Multipart Uploads operation supports pagination. By default, this operation returns up to 1,000 multipart uploads in the response. You should always check the response for a <code>marker</code> at which to continue the list; if there are no more items the <code>marker</code> is <code>null</code>. To return a list of multipart uploads that begins at a specific upload, set the <code>marker</code> request parameter to the value you obtained from a previous List Multipart Upload request. You can also limit the number of uploads returned in the response by specifying the <code>limit</code> parameter in the request.</p> <p>Note the difference between this operation and listing parts (<a>ListParts</a>). The List Multipart Uploads operation lists all multipart uploads for a vault and does not require a multipart upload ID. The List Parts operation requires a multipart upload ID since parts are associated with a single upload.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html\">Working with Archives in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-list-uploads.html\">List Multipart Uploads </a> in the <i>Amazon Glacier Developer Guide</i>.</p>",
21
- "ListParts": "<p>This operation lists the parts of an archive that have been uploaded in a specific multipart upload. You can make this request at any time during an in-progress multipart upload before you complete the upload (see <a>CompleteMultipartUpload</a>. List Parts returns an error for completed uploads. The list returned in the List Parts response is sorted by part range. </p> <p>The List Parts operation supports pagination. By default, this operation returns up to 1,000 uploaded parts in the response. You should always check the response for a <code class=\"code\">marker</code> at which to continue the list; if there are no more items the <code class=\"code\">marker</code> is <code class=\"code\">null</code>. To return a list of parts that begins at a specific part, set the <code>marker</code> request parameter to the value you obtained from a previous List Parts request. You can also limit the number of parts returned in the response by specifying the <code>limit</code> parameter in the request. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html\">Working with Archives in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-list-parts.html\">List Parts</a> in the <i>Amazon Glacier Developer Guide</i>.</p>",
22
- "ListVaults": "<p>This operation lists all vaults owned by the calling user's account. The list returned in the response is ASCII-sorted by vault name. </p> <p>By default, this operation returns up to 1,000 items. If there are more vaults to list, the response <code class=\"code\">marker</code> field contains the vault Amazon Resource Name (ARN) at which to continue the list with a new List Vaults request; otherwise, the <code class=\"code\">marker</code> field is <code class=\"code\">null</code>. To return a list of vaults that begins at a specific vault, set the <code class=\"code\">marker</code> request parameter to the vault ARN you obtained from a previous List Vaults request. You can also limit the number of vaults returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/retrieving-vault-info.html\">Retrieving Vault Metadata in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vaults-get.html\">List Vaults </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
23
- "SetDataRetrievalPolicy": "<p>This operation sets and then enacts a data retrieval policy in the region specified in the PUT request. You can set one policy per region for an AWS account. The policy is enacted within a few minutes of a successful PUT operation. </p> <p>The set policy operation does not affect retrieval jobs that were in progress before the policy was enacted. For more information about data retrieval policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/data-retrieval-policy.html\">Amazon Glacier Data Retrieval Policies</a>. </p>",
24
- "SetVaultAccessPolicy": "<p>This operation configures an access policy for a vault and will overwrite an existing policy. To configure a vault access policy, send a PUT request to the <code>access-policy</code> subresource of the vault. An access policy is specific to a vault and is also called a vault subresource. You can set one access policy per vault and the policy can be up to 20 KB in size. For more information about vault access policies, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/vault-access-policy.html\">Amazon Glacier Access Control with Vault Access Policies</a>. </p>",
25
- "SetVaultNotifications": "<p>This operation configures notifications that will be sent when specific events happen to a vault. By default, you don't get any notifications. </p> <p>To configure vault notifications, send a PUT request to the <code class=\"code\">notification-configuration</code> subresource of the vault. The request should include a JSON document that provides an Amazon SNS topic and specific events for which you want Amazon Glacier to send notifications to the topic.</p> <p>Amazon SNS topics must grant permission to the vault to be allowed to publish notifications to the topic. You can configure a vault to publish a notification for the following vault events:</p> <ul> <li> <b>ArchiveRetrievalCompleted</b> This event occurs when a job that was initiated for an archive retrieval is completed (<a>InitiateJob</a>). The status of the completed job can be \"Succeeded\" or \"Failed\". The notification sent to the SNS topic is the same output as returned from <a>DescribeJob</a>. </li> <li> <b>InventoryRetrievalCompleted</b> This event occurs when a job that was initiated for an inventory retrieval is completed (<a>InitiateJob</a>). The status of the completed job can be \"Succeeded\" or \"Failed\". The notification sent to the SNS topic is the same output as returned from <a>DescribeJob</a>. </li> </ul> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p>For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/configuring-notifications.html\">Configuring Vault Notifications in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-vault-notifications-put.html\">Set Vault Notification Configuration </a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
26
- "UploadArchive": "<p>This operation adds an archive to a vault. This is a synchronous operation, and for a successful upload, your data is durably persisted. Amazon Glacier returns the archive ID in the <code class=\"code\">x-amz-archive-id</code> header of the response. </p> <p>You must use the archive ID to access your data in Amazon Glacier. After you upload an archive, you should save the archive ID returned so that you can retrieve or delete the archive later. Besides saving the archive ID, you can also index it and give it a friendly name to allow for better searching. You can also use the optional archive description field to specify how the archive is referred to in an external index of archives, such as you might create in Amazon DynamoDB. You can also get the vault inventory to obtain a list of archive IDs in a vault. For more information, see <a>InitiateJob</a>. </p> <p>You must provide a SHA256 tree hash of the data you are uploading. For information about computing a SHA256 tree hash, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/checksum-calculations.html\">Computing Checksums</a>. </p> <p>You can optionally specify an archive description of up to 1,024 printable ASCII characters. You can get the archive description when you either retrieve the archive or get the vault inventory. For more information, see <a>InitiateJob</a>. Amazon Glacier does not interpret the description in any way. An archive description does not need to be unique. You cannot use the description to retrieve or sort the archive list. </p> <p>Archives are immutable. After you upload an archive, you cannot edit the archive or its description. </p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/uploading-an-archive.html\">Uploading an Archive in Amazon Glacier</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-post.html\">Upload Archive</a> in the <i>Amazon Glacier Developer Guide</i>. </p>",
27
- "UploadMultipartPart": "<p>This operation uploads a part of an archive. You can upload archive parts in any order. You can also upload them in parallel. You can upload up to 10,000 parts for a multipart upload.</p> <p>Amazon Glacier rejects your upload part request if any of the following conditions is true:</p> <ul> <li> <p><b>SHA256 tree hash does not match</b>To ensure that part data is not corrupted in transmission, you compute a SHA256 tree hash of the part and include it in your request. Upon receiving the part data, Amazon Glacier also computes a SHA256 tree hash. If these hash values don't match, the operation fails. For information about computing a SHA256 tree hash, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/checksum-calculations.html\">Computing Checksums</a>.</p> </li> <li> <p><b>Part size does not match</b>The size of each part except the last must match the size specified in the corresponding <a>InitiateMultipartUpload</a> request. The size of the last part must be the same size as, or smaller than, the specified size.</p> <note><p>If you upload a part whose size is smaller than the part size you specified in your initiate multipart upload request and that part is not the last part, then the upload part request will succeed. However, the subsequent Complete Multipart Upload request will fail.</p></note> </li> <li> <b>Range does not align</b>The byte range value in the request does not align with the part size specified in the corresponding initiate request. For example, if you specify a part size of 4194304 bytes (4 MB), then 0 to 4194303 bytes (4 MB - 1) and 4194304 (4 MB) to 8388607 (8 MB - 1) are valid part ranges. However, if you set a range value of 2 MB to 6 MB, the range does not align with the part size and the upload will fail. </li> </ul> <p>This operation is idempotent. If you upload the same part multiple times, the data included in the most recent request overwrites the previously uploaded data.</p> <p>An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/using-iam-with-amazon-glacier.html\">Access Control Using AWS Identity and Access Management (IAM)</a>.</p> <p> For conceptual information and underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/uploading-archive-mpu.html\">Uploading Large Archives in Parts (Multipart Upload)</a> and <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-upload-part.html\">Upload Part </a> in the <i>Amazon Glacier Developer Guide</i>.</p>"
28
- },
29
- "service": "<p>Amazon Glacier is a storage solution for \"cold data.\"</p> <p>Amazon Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Amazon Glacier, customers can store their data cost effectively for months, years, or decades. Amazon Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Amazon Glacier is a great storage choice when low storage cost is paramount, your data is rarely retrieved, and retrieval latency of several hours is acceptable. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, go to <a href=\"http://aws.amazon.com/s3/\">Amazon Simple Storage Service (Amazon S3)</a>.</p> <p>You can store any kind of data in any format. There is no maximum limit on the total amount of data you can store in Amazon Glacier. </p> <p>If you are a first-time user of Amazon Glacier, we recommend that you begin by reading the following sections in the <i>Amazon Glacier Developer Guide</i>:</p> <ul> <li><p><a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/introduction.html\">What is Amazon Glacier</a> - This section of the Developer Guide describes the underlying data model, the operations it supports, and the AWS SDKs that you can use to interact with the service.</p></li> <li><p><a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/amazon-glacier-getting-started.html\">Getting Started with Amazon Glacier</a> - The Getting Started section walks you through the process of creating a vault, uploading archives, creating jobs to download archives, retrieving the job output, and deleting archives.</p></li> </ul>",
30
- "shapes": {
31
- "AbortMultipartUploadInput": {
32
- "base": "<p>Provides options to abort a multipart upload identified by the upload ID. </p> <p>For information about the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-multipart-abort-upload.html\">Abort Multipart Upload</a>. For conceptual information, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html\">Working with Archives in Amazon Glacier</a>.</p>",
33
- "refs": {
34
- }
35
- },
36
- "ActionCode": {
37
- "base": null,
38
- "refs": {
39
- "GlacierJobDescription$Action": "<p>The job type. It is either ArchiveRetrieval or InventoryRetrieval.</p>"
40
- }
41
- },
42
- "ArchiveCreationOutput": {
43
- "base": "<p>Contains the Amazon Glacier response to your request.</p> <p>For information about the underlying REST API, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-post.html\">Upload Archive</a>. For conceptual information, go to <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html\">Working with Archives in Amazon Glacier</a>.</p>",
44
- "refs": {
45
- }
46
- },
47
- "CompleteMultipartUploadInput": {
48
- "base": "<p>Provides options to complete a multipart upload operation. This informs Amazon Glacier that all the archive parts have been uploaded and Amazon Glacier can now assemble the archive from the uploaded parts. After assembling and saving the archive to the vault, Amazon Glacier returns the URI path of the newly created archive resource.</p>",
49
- "refs": {
50
- }
51
- },
52
- "CreateVaultInput": {
53
- "base": "<p>Provides options to create a vault.</p>",
54
- "refs": {
55
- }
56
- },
57
- "CreateVaultOutput": {
58
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
59
- "refs": {
60
- }
61
- },
62
- "DataRetrievalPolicy": {
63
- "base": "<p>Data retrieval policy.</p>",
64
- "refs": {
65
- "GetDataRetrievalPolicyOutput$Policy": "<p>Contains the returned data retrieval policy in JSON format.</p>",
66
- "SetDataRetrievalPolicyInput$Policy": "<p>The data retrieval policy in JSON format.</p>"
67
- }
68
- },
69
- "DataRetrievalRule": {
70
- "base": "<p>Data retrieval policy rule.</p>",
71
- "refs": {
72
- "DataRetrievalRulesList$member": null
73
- }
74
- },
75
- "DataRetrievalRulesList": {
76
- "base": null,
77
- "refs": {
78
- "DataRetrievalPolicy$Rules": "<p>The policy rule. Although this is a list type, currently there must be only one rule, which contains a Strategy field and optionally a BytesPerHour field.</p>"
79
- }
80
- },
81
- "DateTime": {
82
- "base": null,
83
- "refs": {
84
- "InventoryRetrievalJobDescription$StartDate": "<p>The start of the date range in UTC for vault inventory retrieval that includes archives created on or after this date. A string representation of ISO 8601 date format, for example, 2013-03-20T17:03:43Z.</p>",
85
- "InventoryRetrievalJobDescription$EndDate": "<p>The end of the date range in UTC for vault inventory retrieval that includes archives created before this date. A string representation of ISO 8601 date format, for example, 2013-03-20T17:03:43Z.</p>"
86
- }
87
- },
88
- "DeleteArchiveInput": {
89
- "base": "<p>Provides options for deleting an archive from an Amazon Glacier vault.</p>",
90
- "refs": {
91
- }
92
- },
93
- "DeleteVaultAccessPolicyInput": {
94
- "base": "<p>DeleteVaultAccessPolicy input.</p>",
95
- "refs": {
96
- }
97
- },
98
- "DeleteVaultInput": {
99
- "base": "<p>Provides options for deleting a vault from Amazon Glacier.</p>",
100
- "refs": {
101
- }
102
- },
103
- "DeleteVaultNotificationsInput": {
104
- "base": "<p>Provides options for deleting a vault notification configuration from an Amazon Glacier vault.</p>",
105
- "refs": {
106
- }
107
- },
108
- "DescribeJobInput": {
109
- "base": "<p>Provides options for retrieving a job description.</p>",
110
- "refs": {
111
- }
112
- },
113
- "DescribeVaultInput": {
114
- "base": "<p>Provides options for retrieving metadata for a specific vault in Amazon Glacier.</p>",
115
- "refs": {
116
- }
117
- },
118
- "DescribeVaultOutput": {
119
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
120
- "refs": {
121
- "VaultList$member": null
122
- }
123
- },
124
- "GetDataRetrievalPolicyInput": {
125
- "base": "<p>Input for GetDataRetrievalPolicy.</p>",
126
- "refs": {
127
- }
128
- },
129
- "GetDataRetrievalPolicyOutput": {
130
- "base": "<p>Contains the Amazon Glacier response to the <code>GetDataRetrievalPolicy</code> request.</p>",
131
- "refs": {
132
- }
133
- },
134
- "GetJobOutputInput": {
135
- "base": "<p>Provides options for downloading output of an Amazon Glacier job.</p>",
136
- "refs": {
137
- }
138
- },
139
- "GetJobOutputOutput": {
140
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
141
- "refs": {
142
- }
143
- },
144
- "GetVaultAccessPolicyInput": {
145
- "base": "<p>Input for GetVaultAccessPolicy.</p>",
146
- "refs": {
147
- }
148
- },
149
- "GetVaultAccessPolicyOutput": {
150
- "base": "<p>Output for GetVaultAccessPolicy.</p>",
151
- "refs": {
152
- }
153
- },
154
- "GetVaultNotificationsInput": {
155
- "base": "<p>Provides options for retrieving the notification configuration set on an Amazon Glacier vault.</p>",
156
- "refs": {
157
- }
158
- },
159
- "GetVaultNotificationsOutput": {
160
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
161
- "refs": {
162
- }
163
- },
164
- "GlacierJobDescription": {
165
- "base": "<p>Describes an Amazon Glacier job.</p>",
166
- "refs": {
167
- "JobList$member": null
168
- }
169
- },
170
- "InitiateJobInput": {
171
- "base": "<p>Provides options for initiating an Amazon Glacier job.</p>",
172
- "refs": {
173
- }
174
- },
175
- "InitiateJobOutput": {
176
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
177
- "refs": {
178
- }
179
- },
180
- "InitiateMultipartUploadInput": {
181
- "base": "<p>Provides options for initiating a multipart upload to an Amazon Glacier vault.</p>",
182
- "refs": {
183
- }
184
- },
185
- "InitiateMultipartUploadOutput": {
186
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
187
- "refs": {
188
- }
189
- },
190
- "InvalidParameterValueException": {
191
- "base": "<p>Returned if a parameter of the request is incorrectly specified. </p>",
192
- "refs": {
193
- }
194
- },
195
- "InventoryRetrievalJobDescription": {
196
- "base": "<p>Describes the options for a range inventory retrieval job.</p>",
197
- "refs": {
198
- "GlacierJobDescription$InventoryRetrievalParameters": "<p>Parameters used for range inventory retrieval.</p>"
199
- }
200
- },
201
- "InventoryRetrievalJobInput": {
202
- "base": "<p>Provides options for specifying a range inventory retrieval job.</p>",
203
- "refs": {
204
- "JobParameters$InventoryRetrievalParameters": "<p>Input parameters used for range inventory retrieval.</p>"
205
- }
206
- },
207
- "JobList": {
208
- "base": null,
209
- "refs": {
210
- "ListJobsOutput$JobList": "<p>A list of job objects. Each job object contains metadata describing the job. </p>"
211
- }
212
- },
213
- "JobParameters": {
214
- "base": "<p>Provides options for defining a job.</p>",
215
- "refs": {
216
- "InitiateJobInput$jobParameters": "<p>Provides options for specifying job information.</p>"
217
- }
218
- },
219
- "LimitExceededException": {
220
- "base": "<p>Returned if the request results in a vault or account limit being exceeded.</p>",
221
- "refs": {
222
- }
223
- },
224
- "ListJobsInput": {
225
- "base": "<p>Provides options for retrieving a job list for an Amazon Glacier vault.</p>",
226
- "refs": {
227
- }
228
- },
229
- "ListJobsOutput": {
230
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
231
- "refs": {
232
- }
233
- },
234
- "ListMultipartUploadsInput": {
235
- "base": "<p>Provides options for retrieving list of in-progress multipart uploads for an Amazon Glacier vault.</p>",
236
- "refs": {
237
- }
238
- },
239
- "ListMultipartUploadsOutput": {
240
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
241
- "refs": {
242
- }
243
- },
244
- "ListPartsInput": {
245
- "base": "<p>Provides options for retrieving a list of parts of an archive that have been uploaded in a specific multipart upload.</p>",
246
- "refs": {
247
- }
248
- },
249
- "ListPartsOutput": {
250
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
251
- "refs": {
252
- }
253
- },
254
- "ListVaultsInput": {
255
- "base": "<p>Provides options to retrieve the vault list owned by the calling user's account. The list provides metadata information for each vault.</p>",
256
- "refs": {
257
- }
258
- },
259
- "ListVaultsOutput": {
260
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
261
- "refs": {
262
- }
263
- },
264
- "MissingParameterValueException": {
265
- "base": "<p>Returned if a required header or parameter is missing from the request.</p>",
266
- "refs": {
267
- }
268
- },
269
- "NotificationEventList": {
270
- "base": null,
271
- "refs": {
272
- "VaultNotificationConfig$Events": "<p>A list of one or more events for which Amazon Glacier will send a notification to the specified Amazon SNS topic.</p>"
273
- }
274
- },
275
- "NullableLong": {
276
- "base": null,
277
- "refs": {
278
- "DataRetrievalRule$BytesPerHour": "<p>The maximum number of bytes that can be retrieved in an hour.</p> <p>This field is required only if the value of the Strategy field is <code>BytesPerHour</code>. Your PUT operation will be rejected if the Strategy field is not set to <code>BytesPerHour</code> and you set this field.</p>"
279
- }
280
- },
281
- "PartList": {
282
- "base": null,
283
- "refs": {
284
- "ListPartsOutput$Parts": "<p>A list of the part sizes of the multipart upload.</p>"
285
- }
286
- },
287
- "PartListElement": {
288
- "base": "<p>A list of the part sizes of the multipart upload.</p>",
289
- "refs": {
290
- "PartList$member": null
291
- }
292
- },
293
- "PolicyEnforcedException": {
294
- "base": "<p>Returned if a retrieval job would exceed the current data policy's retrieval rate limit. For more information about data retrieval policies,</p>",
295
- "refs": {
296
- }
297
- },
298
- "RequestTimeoutException": {
299
- "base": "<p>Returned if, when uploading an archive, Amazon Glacier times out while receiving the upload.</p>",
300
- "refs": {
301
- }
302
- },
303
- "ResourceNotFoundException": {
304
- "base": "<p>Returned if the specified resource, such as a vault, upload ID, or job ID, does not exist.</p>",
305
- "refs": {
306
- }
307
- },
308
- "ServiceUnavailableException": {
309
- "base": "<p>Returned if the service cannot complete the request.</p>",
310
- "refs": {
311
- }
312
- },
313
- "SetDataRetrievalPolicyInput": {
314
- "base": "<p>SetDataRetrievalPolicy input.</p>",
315
- "refs": {
316
- }
317
- },
318
- "SetVaultAccessPolicyInput": {
319
- "base": "<p>SetVaultAccessPolicy input.</p>",
320
- "refs": {
321
- }
322
- },
323
- "SetVaultNotificationsInput": {
324
- "base": "<p>Provides options to configure notifications that will be sent when specific events happen to a vault.</p>",
325
- "refs": {
326
- }
327
- },
328
- "Size": {
329
- "base": null,
330
- "refs": {
331
- "GlacierJobDescription$ArchiveSizeInBytes": "<p>For an ArchiveRetrieval job, this is the size in bytes of the archive being requested for download. For the InventoryRetrieval job, the value is null.</p>",
332
- "GlacierJobDescription$InventorySizeInBytes": "<p>For an InventoryRetrieval job, this is the size in bytes of the inventory requested for download. For the ArchiveRetrieval job, the value is null.</p>"
333
- }
334
- },
335
- "StatusCode": {
336
- "base": null,
337
- "refs": {
338
- "GlacierJobDescription$StatusCode": "<p>The status code can be InProgress, Succeeded, or Failed, and indicates the status of the job.</p>"
339
- }
340
- },
341
- "Stream": {
342
- "base": null,
343
- "refs": {
344
- "GetJobOutputOutput$body": "<p>The job data, either archive data or inventory data.</p>",
345
- "UploadArchiveInput$body": "<p>The data to upload.</p>",
346
- "UploadMultipartPartInput$body": "<p>The data to upload.</p>"
347
- }
348
- },
349
- "UploadArchiveInput": {
350
- "base": "<p>Provides options to add an archive to a vault.</p>",
351
- "refs": {
352
- }
353
- },
354
- "UploadListElement": {
355
- "base": "<p>A list of in-progress multipart uploads for a vault.</p>",
356
- "refs": {
357
- "UploadsList$member": null
358
- }
359
- },
360
- "UploadMultipartPartInput": {
361
- "base": "<p>Provides options to upload a part of an archive in a multipart upload operation.</p>",
362
- "refs": {
363
- }
364
- },
365
- "UploadMultipartPartOutput": {
366
- "base": "<p>Contains the Amazon Glacier response to your request.</p>",
367
- "refs": {
368
- }
369
- },
370
- "UploadsList": {
371
- "base": null,
372
- "refs": {
373
- "ListMultipartUploadsOutput$UploadsList": "<p>A list of in-progress multipart uploads.</p>"
374
- }
375
- },
376
- "VaultAccessPolicy": {
377
- "base": "<p>Contains the vault access policy. </p>",
378
- "refs": {
379
- "GetVaultAccessPolicyOutput$policy": "<p>Contains the returned vault access policy as a JSON string.</p>",
380
- "SetVaultAccessPolicyInput$policy": "<p>The vault access policy as a JSON string.</p>"
381
- }
382
- },
383
- "VaultList": {
384
- "base": null,
385
- "refs": {
386
- "ListVaultsOutput$VaultList": "<p>List of vaults.</p>"
387
- }
388
- },
389
- "VaultNotificationConfig": {
390
- "base": "<p>Represents a vault's notification configuration.</p>",
391
- "refs": {
392
- "GetVaultNotificationsOutput$vaultNotificationConfig": "<p>Returns the notification configuration set on the vault.</p>",
393
- "SetVaultNotificationsInput$vaultNotificationConfig": "<p>Provides options for specifying notification configuration.</p>"
394
- }
395
- },
396
- "boolean": {
397
- "base": null,
398
- "refs": {
399
- "GlacierJobDescription$Completed": "<p>The job status. When a job is completed, you get the job's output.</p>"
400
- }
401
- },
402
- "httpstatus": {
403
- "base": null,
404
- "refs": {
405
- "GetJobOutputOutput$status": "<p>The HTTP response code for a job output request. The value depends on whether a range was specified in the request.</p>"
406
- }
407
- },
408
- "long": {
409
- "base": null,
410
- "refs": {
411
- "DescribeVaultOutput$NumberOfArchives": "<p>The number of archives in the vault as of the last inventory date. This field will return <code>null</code> if an inventory has not yet run on the vault, for example, if you just created the vault.</p>",
412
- "DescribeVaultOutput$SizeInBytes": "<p>Total size, in bytes, of the archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example, if you just created the vault.</p>",
413
- "ListPartsOutput$PartSizeInBytes": "<p>The part size in bytes.</p>",
414
- "UploadListElement$PartSizeInBytes": "<p>The part size, in bytes, specified in the Initiate Multipart Upload request. This is the size of all the parts in the upload except the last part, which may be smaller than this size.</p>"
415
- }
416
- },
417
- "string": {
418
- "base": null,
419
- "refs": {
420
- "AbortMultipartUploadInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
421
- "AbortMultipartUploadInput$vaultName": "<p>The name of the vault.</p>",
422
- "AbortMultipartUploadInput$uploadId": "<p>The upload ID of the multipart upload to delete.</p>",
423
- "ArchiveCreationOutput$location": "<p>The relative URI path of the newly added archive resource.</p>",
424
- "ArchiveCreationOutput$checksum": "<p>The checksum of the archive computed by Amazon Glacier.</p>",
425
- "ArchiveCreationOutput$archiveId": "<p>The ID of the archive. This value is also included as part of the location.</p>",
426
- "CompleteMultipartUploadInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
427
- "CompleteMultipartUploadInput$vaultName": "<p>The name of the vault.</p>",
428
- "CompleteMultipartUploadInput$uploadId": "<p>The upload ID of the multipart upload.</p>",
429
- "CompleteMultipartUploadInput$archiveSize": "<p>The total size, in bytes, of the entire archive. This value should be the sum of all the sizes of the individual parts that you uploaded.</p>",
430
- "CompleteMultipartUploadInput$checksum": "<p>The SHA256 tree hash of the entire archive. It is the tree hash of SHA256 tree hash of the individual parts. If the value you specify in the request does not match the SHA256 tree hash of the final assembled archive as computed by Amazon Glacier, Amazon Glacier returns an error and the request fails.</p>",
431
- "CreateVaultInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you specify your Account ID, do not include any hyphens (apos-apos) in the ID.</p>",
432
- "CreateVaultInput$vaultName": "<p>The name of the vault.</p>",
433
- "CreateVaultOutput$location": "<p>The URI of the vault that was created.</p>",
434
- "DataRetrievalRule$Strategy": "<p>The type of data retrieval policy to set.</p> <p>Valid values: BytesPerHour|FreeTier|None</p>",
435
- "DeleteArchiveInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
436
- "DeleteArchiveInput$vaultName": "<p>The name of the vault.</p>",
437
- "DeleteArchiveInput$archiveId": "<p>The ID of the archive to delete.</p>",
438
- "DeleteVaultAccessPolicyInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
439
- "DeleteVaultAccessPolicyInput$vaultName": "<p>The name of the vault.</p>",
440
- "DeleteVaultInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
441
- "DeleteVaultInput$vaultName": "<p>The name of the vault.</p>",
442
- "DeleteVaultNotificationsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
443
- "DeleteVaultNotificationsInput$vaultName": "<p>The name of the vault.</p>",
444
- "DescribeJobInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
445
- "DescribeJobInput$vaultName": "<p>The name of the vault.</p>",
446
- "DescribeJobInput$jobId": "<p>The ID of the job to describe.</p>",
447
- "DescribeVaultInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
448
- "DescribeVaultInput$vaultName": "<p>The name of the vault.</p>",
449
- "DescribeVaultOutput$VaultARN": "<p>The Amazon Resource Name (ARN) of the vault.</p>",
450
- "DescribeVaultOutput$VaultName": "<p>The name of the vault.</p>",
451
- "DescribeVaultOutput$CreationDate": "<p>The UTC date when the vault was created. A string representation of ISO 8601 date format, for example, \"2012-03-20T17:03:43.221Z\".</p>",
452
- "DescribeVaultOutput$LastInventoryDate": "<p>The UTC date when Amazon Glacier completed the last vault inventory. A string representation of ISO 8601 date format, for example, \"2012-03-20T17:03:43.221Z\".</p>",
453
- "GetDataRetrievalPolicyInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you specify your Account ID, do not include any hyphens (apos-apos) in the ID. </p>",
454
- "GetJobOutputInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
455
- "GetJobOutputInput$vaultName": "<p>The name of the vault.</p>",
456
- "GetJobOutputInput$jobId": "<p>The job ID whose data is downloaded.</p>",
457
- "GetJobOutputInput$range": "<p>The range of bytes to retrieve from the output. For example, if you want to download the first 1,048,576 bytes, specify \"Range: bytes=0-1048575\". By default, this operation downloads the entire output. </p>",
458
- "GetJobOutputOutput$checksum": "<p> The checksum of the data in the response. This header is returned only when retrieving the output for an archive retrieval job. Furthermore, this header appears only under the following conditions: <ul> <li>You get the entire range of the archive.</li> <li>You request a range to return of the archive that starts and ends on a multiple of 1 MB. For example, if you have an 3.1 MB archive and you specify a range to return that starts at 1 MB and ends at 2 MB, then the x-amz-sha256-tree-hash is returned as a response header.</li> <li>You request a range of the archive to return that starts on a multiple of 1 MB and goes to the end of the archive. For example, if you have a 3.1 MB archive and you specify a range that starts at 2 MB and ends at 3.1 MB (the end of the archive), then the x-amz-sha256-tree-hash is returned as a response header.</li> </ul> </p>",
459
- "GetJobOutputOutput$contentRange": "<p>The range of bytes returned by Amazon Glacier. If only partial output is downloaded, the response provides the range of bytes Amazon Glacier returned. For example, bytes 0-1048575/8388608 returns the first 1 MB from 8 MB.</p>",
460
- "GetJobOutputOutput$acceptRanges": "<p>Indicates the range units accepted. For more information, go to <a href=\"http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html\">RFC2616</a>. </p>",
461
- "GetJobOutputOutput$contentType": "<p>The Content-Type depends on whether the job output is an archive or a vault inventory. For archive data, the Content-Type is application/octet-stream. For vault inventory, if you requested CSV format when you initiated the job, the Content-Type is text/csv. Otherwise, by default, vault inventory is returned as JSON, and the Content-Type is application/json. </p>",
462
- "GetJobOutputOutput$archiveDescription": "<p>The description of an archive.</p>",
463
- "GetVaultAccessPolicyInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
464
- "GetVaultAccessPolicyInput$vaultName": "<p>The name of the vault.</p>",
465
- "GetVaultNotificationsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
466
- "GetVaultNotificationsInput$vaultName": "<p>The name of the vault.</p>",
467
- "GlacierJobDescription$JobId": "<p>An opaque string that identifies an Amazon Glacier job.</p>",
468
- "GlacierJobDescription$JobDescription": "<p>The job description you provided when you initiated the job.</p>",
469
- "GlacierJobDescription$ArchiveId": "<p>For an ArchiveRetrieval job, this is the archive ID requested for download. Otherwise, this field is null.</p>",
470
- "GlacierJobDescription$VaultARN": "<p>The Amazon Resource Name (ARN) of the vault from which the archive retrieval was requested.</p>",
471
- "GlacierJobDescription$CreationDate": "<p>The UTC date when the job was created. A string representation of ISO 8601 date format, for example, \"2012-03-20T17:03:43.221Z\".</p>",
472
- "GlacierJobDescription$StatusMessage": "<p>A friendly message that describes the job status.</p>",
473
- "GlacierJobDescription$SNSTopic": "<p>An Amazon Simple Notification Service (Amazon SNS) topic that receives notification.</p>",
474
- "GlacierJobDescription$CompletionDate": "<p>The UTC time that the archive retrieval request completed. While the job is in progress, the value will be null.</p>",
475
- "GlacierJobDescription$SHA256TreeHash": "<p>For an ArchiveRetrieval job, it is the checksum of the archive. Otherwise, the value is null.</p> <p> The SHA256 tree hash value for the requested range of an archive. If the Initiate a Job request for an archive specified a tree-hash aligned range, then this field returns a value. </p> <p> For the specific case when the whole archive is retrieved, this value is the same as the ArchiveSHA256TreeHash value. </p> <p> This field is null in the following situations: <ul> <li><p>Archive retrieval jobs that specify a range that is not tree-hash aligned.</p></li> </ul> <ul> <li><p>Archival jobs that specify a range that is equal to the whole archive and the job status is InProgress.</p></li> </ul> <ul> <li><p>Inventory jobs.</p></li> </ul> </p>",
476
- "GlacierJobDescription$ArchiveSHA256TreeHash": "<p>The SHA256 tree hash of the entire archive for an archive retrieval. For inventory retrieval jobs, this field is null. </p>",
477
- "GlacierJobDescription$RetrievalByteRange": "<p>The retrieved byte range for archive retrieval jobs in the form \"<i>StartByteValue</i>-<i>EndByteValue</i>\" If no range was specified in the archive retrieval, then the whole archive is retrieved and <i>StartByteValue</i> equals 0 and <i>EndByteValue</i> equals the size of the archive minus 1. For inventory retrieval jobs this field is null. </p>",
478
- "InitiateJobInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
479
- "InitiateJobInput$vaultName": "<p>The name of the vault.</p>",
480
- "InitiateJobOutput$location": "<p>The relative URI path of the job.</p>",
481
- "InitiateJobOutput$jobId": "<p>The ID of the job.</p>",
482
- "InitiateMultipartUploadInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
483
- "InitiateMultipartUploadInput$vaultName": "<p>The name of the vault.</p>",
484
- "InitiateMultipartUploadInput$archiveDescription": "<p>The archive description that you are uploading in parts.</p> <p>The part size must be a megabyte (1024 KB) multiplied by a power of 2—for example, 1048576 (1 MB), 2097152 (2 MB), 4194304 (4 MB), 8388608 (8 MB), and so on. The minimum allowable part size is 1 MB, and the maximum is 4 GB (4096 MB).</p>",
485
- "InitiateMultipartUploadInput$partSize": "<p>The size of each part except the last, in bytes. The last part can be smaller than this part size.</p>",
486
- "InitiateMultipartUploadOutput$location": "<p>The relative URI path of the multipart upload ID Amazon Glacier created. </p>",
487
- "InitiateMultipartUploadOutput$uploadId": "<p>The ID of the multipart upload. This value is also included as part of the location. </p>",
488
- "InvalidParameterValueException$type": "<p>Client</p>",
489
- "InvalidParameterValueException$code": "<p>400 Bad Request</p>",
490
- "InvalidParameterValueException$message": null,
491
- "InventoryRetrievalJobDescription$Format": "<p>The output format for the vault inventory list, which is set by the <b>InitiateJob</b> request when initiating a job to retrieve a vault inventory. Valid values are \"CSV\" and \"JSON\".</p>",
492
- "InventoryRetrievalJobDescription$Limit": "<p>Specifies the maximum number of inventory items returned per vault inventory retrieval request. This limit is set when initiating the job with the a <b>InitiateJob</b> request. </p>",
493
- "InventoryRetrievalJobDescription$Marker": "<p>An opaque string that represents where to continue pagination of the vault inventory retrieval results. You use the marker in a new <b>InitiateJob</b> request to obtain additional inventory items. If there are no more inventory items, this value is <code>null</code>. For more information, see <a href=\"http://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html#api-initiate-job-post-vault-inventory-list-filtering\"> Range Inventory Retrieval</a>.</p>",
494
- "InventoryRetrievalJobInput$StartDate": "<p>The start of the date range in UTC for vault inventory retrieval that includes archives created on or after this date. A string representation of ISO 8601 date format, for example, 2013-03-20T17:03:43Z.</p>",
495
- "InventoryRetrievalJobInput$EndDate": "<p>The end of the date range in UTC for vault inventory retrieval that includes archives created before this date. A string representation of ISO 8601 date format, for example, 2013-03-20T17:03:43Z.</p>",
496
- "InventoryRetrievalJobInput$Limit": "<p>Specifies the maximum number of inventory items returned per vault inventory retrieval request. Valid values are greater than or equal to 1.</p>",
497
- "InventoryRetrievalJobInput$Marker": "<p>An opaque string that represents where to continue pagination of the vault inventory retrieval results. You use the marker in a new <b>InitiateJob</b> request to obtain additional inventory items. If there are no more inventory items, this value is <code>null</code>.</p>",
498
- "JobParameters$Format": "<p>When initiating a job to retrieve a vault inventory, you can optionally add this parameter to your request to specify the output format. If you are initiating an inventory job and do not specify a Format field, JSON is the default format. Valid values are \"CSV\" and \"JSON\". </p>",
499
- "JobParameters$Type": "<p>The job type. You can initiate a job to retrieve an archive or get an inventory of a vault. Valid values are \"archive-retrieval\" and \"inventory-retrieval\".</p>",
500
- "JobParameters$ArchiveId": "<p>The ID of the archive that you want to retrieve. This field is required only if <code>Type</code> is set to archive-retrieval. An error occurs if you specify this request parameter for an inventory retrieval job request. </p>",
501
- "JobParameters$Description": "<p>The optional description for the job. The description must be less than or equal to 1,024 bytes. The allowable characters are 7-bit ASCII without control codes-specifically, ASCII values 32-126 decimal or 0x20-0x7E hexadecimal.</p>",
502
- "JobParameters$SNSTopic": "<p>The Amazon SNS topic ARN to which Amazon Glacier sends a notification when the job is completed and the output is ready for you to download. The specified topic publishes the notification to its subscribers. The SNS topic must exist.</p>",
503
- "JobParameters$RetrievalByteRange": "<p>The byte range to retrieve for an archive retrieval. in the form \"<i>StartByteValue</i>-<i>EndByteValue</i>\" If not specified, the whole archive is retrieved. If specified, the byte range must be megabyte (1024*1024) aligned which means that <i>StartByteValue</i> must be divisible by 1 MB and <i>EndByteValue</i> plus 1 must be divisible by 1 MB or be the end of the archive specified as the archive byte size value minus 1. If RetrievalByteRange is not megabyte aligned, this operation returns a 400 response. </p> <p>An error occurs if you specify this field for an inventory retrieval job request. </p>",
504
- "LimitExceededException$type": "<p>Client</p>",
505
- "LimitExceededException$code": "<p>400 Bad Request</p>",
506
- "LimitExceededException$message": null,
507
- "ListJobsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
508
- "ListJobsInput$vaultName": "<p>The name of the vault.</p>",
509
- "ListJobsInput$limit": "<p>Specifies that the response be limited to the specified number of items or fewer. If not specified, the List Jobs operation returns up to 1,000 jobs.</p>",
510
- "ListJobsInput$marker": "<p>An opaque string used for pagination. This value specifies the job at which the listing of jobs should begin. Get the marker value from a previous List Jobs response. You need only include the marker if you are continuing the pagination of results started in a previous List Jobs request.</p>",
511
- "ListJobsInput$statuscode": "<p>Specifies the type of job status to return. You can specify the following values: \"InProgress\", \"Succeeded\", or \"Failed\".</p>",
512
- "ListJobsInput$completed": "<p>Specifies the state of the jobs to return. You can specify <code>true</code> or <code>false</code>.</p>",
513
- "ListJobsOutput$Marker": "<p>An opaque string that represents where to continue pagination of the results. You use this value in a new List Jobs request to obtain more jobs in the list. If there are no more jobs, this value is <code>null</code>. </p>",
514
- "ListMultipartUploadsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
515
- "ListMultipartUploadsInput$vaultName": "<p>The name of the vault.</p>",
516
- "ListMultipartUploadsInput$marker": "<p>An opaque string used for pagination. This value specifies the upload at which the listing of uploads should begin. Get the marker value from a previous List Uploads response. You need only include the marker if you are continuing the pagination of results started in a previous List Uploads request.</p>",
517
- "ListMultipartUploadsInput$limit": "<p>Specifies the maximum number of uploads returned in the response body. If this value is not specified, the List Uploads operation returns up to 1,000 uploads.</p>",
518
- "ListMultipartUploadsOutput$Marker": "<p>An opaque string that represents where to continue pagination of the results. You use the marker in a new List Multipart Uploads request to obtain more uploads in the list. If there are no more uploads, this value is <code>null</code>.</p>",
519
- "ListPartsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
520
- "ListPartsInput$vaultName": "<p>The name of the vault.</p>",
521
- "ListPartsInput$uploadId": "<p>The upload ID of the multipart upload.</p>",
522
- "ListPartsInput$marker": "<p>An opaque string used for pagination. This value specifies the part at which the listing of parts should begin. Get the marker value from the response of a previous List Parts response. You need only include the marker if you are continuing the pagination of results started in a previous List Parts request.</p>",
523
- "ListPartsInput$limit": "<p>Specifies the maximum number of parts returned in the response body. If this value is not specified, the List Parts operation returns up to 1,000 uploads.</p>",
524
- "ListPartsOutput$MultipartUploadId": "<p>The ID of the upload to which the parts are associated.</p>",
525
- "ListPartsOutput$VaultARN": "<p>The Amazon Resource Name (ARN) of the vault to which the multipart upload was initiated.</p>",
526
- "ListPartsOutput$ArchiveDescription": "<p>The description of the archive that was specified in the Initiate Multipart Upload request.</p>",
527
- "ListPartsOutput$CreationDate": "<p>The UTC time at which the multipart upload was initiated.</p>",
528
- "ListPartsOutput$Marker": "<p>An opaque string that represents where to continue pagination of the results. You use the marker in a new List Parts request to obtain more jobs in the list. If there are no more parts, this value is <code>null</code>.</p>",
529
- "ListVaultsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you specify your Account ID, do not include any hyphens (apos-apos) in the ID.</p>",
530
- "ListVaultsInput$marker": "<p>A string used for pagination. The marker specifies the vault ARN after which the listing of vaults should begin.</p>",
531
- "ListVaultsInput$limit": "<p>The maximum number of items returned in the response. If you don't specify a value, the List Vaults operation returns up to 1,000 items.</p>",
532
- "ListVaultsOutput$Marker": "<p>The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.</p>",
533
- "MissingParameterValueException$type": "<p>Client.</p>",
534
- "MissingParameterValueException$code": "<p>400 Bad Request</p>",
535
- "MissingParameterValueException$message": null,
536
- "NotificationEventList$member": null,
537
- "PartListElement$RangeInBytes": "<p>The byte range of a part, inclusive of the upper value of the range.</p>",
538
- "PartListElement$SHA256TreeHash": "<p>The SHA256 tree hash value that Amazon Glacier calculated for the part. This field is never <code>null</code>.</p>",
539
- "PolicyEnforcedException$type": "<p>Client</p>",
540
- "PolicyEnforcedException$code": "<p>PolicyEnforcedException</p>",
541
- "PolicyEnforcedException$message": "<p>InitiateJob request denied by current data retrieval policy.</p>",
542
- "RequestTimeoutException$type": "<p>Client</p>",
543
- "RequestTimeoutException$code": "<p>408 Request Timeout</p>",
544
- "RequestTimeoutException$message": null,
545
- "ResourceNotFoundException$type": "<p>Client</p>",
546
- "ResourceNotFoundException$code": "<p>404 Not Found</p>",
547
- "ResourceNotFoundException$message": null,
548
- "ServiceUnavailableException$type": "<p>Server</p>",
549
- "ServiceUnavailableException$code": "<p>500 Internal Server Error</p>",
550
- "ServiceUnavailableException$message": null,
551
- "SetDataRetrievalPolicyInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you specify your Account ID, do not include any hyphens (apos-apos) in the ID.</p>",
552
- "SetVaultAccessPolicyInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
553
- "SetVaultAccessPolicyInput$vaultName": "<p>The name of the vault.</p>",
554
- "SetVaultNotificationsInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID.</p>",
555
- "SetVaultNotificationsInput$vaultName": "<p>The name of the vault.</p>",
556
- "UploadArchiveInput$vaultName": "<p>The name of the vault.</p>",
557
- "UploadArchiveInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
558
- "UploadArchiveInput$archiveDescription": "<p>The optional description of the archive you are uploading. </p>",
559
- "UploadArchiveInput$checksum": "<p>The SHA256 tree hash of the data being uploaded.</p>",
560
- "UploadListElement$MultipartUploadId": "<p>The ID of a multipart upload.</p>",
561
- "UploadListElement$VaultARN": "<p>The Amazon Resource Name (ARN) of the vault that contains the archive.</p>",
562
- "UploadListElement$ArchiveDescription": "<p>The description of the archive that was specified in the Initiate Multipart Upload request.</p>",
563
- "UploadListElement$CreationDate": "<p>The UTC time at which the multipart upload was initiated.</p>",
564
- "UploadMultipartPartInput$accountId": "<p>The <code>AccountId</code> value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single apos<code>-</code>apos (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (apos-apos) in the ID. </p>",
565
- "UploadMultipartPartInput$vaultName": "<p>The name of the vault.</p>",
566
- "UploadMultipartPartInput$uploadId": "<p>The upload ID of the multipart upload.</p>",
567
- "UploadMultipartPartInput$checksum": "<p>The SHA256 tree hash of the data being uploaded. </p>",
568
- "UploadMultipartPartInput$range": "<p>Identifies the range of bytes in the assembled archive that will be uploaded in this part. Amazon Glacier uses this information to assemble the archive in the proper sequence. The format of this header follows RFC 2616. An example header is Content-Range:bytes 0-4194303/*.</p>",
569
- "UploadMultipartPartOutput$checksum": "<p>The SHA256 tree hash that Amazon Glacier computed for the uploaded part.</p>",
570
- "VaultAccessPolicy$Policy": "<p>The vault access policy.</p>",
571
- "VaultNotificationConfig$SNSTopic": "<p>The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).</p>"
572
- }
573
- }
574
- }
575
- }