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,432 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CancelJob": "This operation cancels a specified job. Only the job owner can cancel it. The operation fails if the job has already started or is complete.",
5
- "CreateJob": "This operation initiates the process of scheduling an upload or download of your data. You include in the request a manifest that describes the data transfer specifics. The response to the request includes a job ID, which you can use in other operations, a signature that you use to identify your storage device, and the address where you should ship your storage device.",
6
- "GetShippingLabel": "This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.",
7
- "GetStatus": "This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.",
8
- "ListJobs": "This operation returns the jobs associated with the requester. AWS Import/Export lists the jobs in reverse chronological order based on the date of creation. For example if Job Test1 was created 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation would return Test2 followed by Test1.",
9
- "UpdateJob": "You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file. The manifest file attached to this request replaces the original manifest file. You can only use the operation after a CreateJob request but before the data transfer starts and you can only use it on jobs you own."
10
- },
11
- "service": "<fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity.",
12
- "shapes": {
13
- "APIVersion": {
14
- "base": "Specifies the version of the client tool.",
15
- "refs": {
16
- "CancelJobInput$APIVersion": null,
17
- "CreateJobInput$APIVersion": null,
18
- "GetStatusInput$APIVersion": null,
19
- "ListJobsInput$APIVersion": null,
20
- "UpdateJobInput$APIVersion": null
21
- }
22
- },
23
- "Artifact": {
24
- "base": "A discrete item that contains the description and URL of an artifact (such as a PDF).",
25
- "refs": {
26
- "ArtifactList$member": null
27
- }
28
- },
29
- "ArtifactList": {
30
- "base": "A collection of artifacts.",
31
- "refs": {
32
- "CreateJobOutput$ArtifactList": null,
33
- "GetStatusOutput$ArtifactList": null,
34
- "UpdateJobOutput$ArtifactList": null
35
- }
36
- },
37
- "BucketPermissionException": {
38
- "base": "The account specified does not have the appropriate bucket permissions.",
39
- "refs": {
40
- }
41
- },
42
- "CancelJobInput": {
43
- "base": "Input structure for the CancelJob operation.",
44
- "refs": {
45
- }
46
- },
47
- "CancelJobOutput": {
48
- "base": "Output structure for the CancelJob operation.",
49
- "refs": {
50
- }
51
- },
52
- "CanceledJobIdException": {
53
- "base": "The specified job ID has been canceled and is no longer valid.",
54
- "refs": {
55
- }
56
- },
57
- "Carrier": {
58
- "base": "Name of the shipping company. This value is included when the LocationCode is \"Returned\".",
59
- "refs": {
60
- "GetStatusOutput$Carrier": null
61
- }
62
- },
63
- "CreateJobInput": {
64
- "base": "Input structure for the CreateJob operation.",
65
- "refs": {
66
- }
67
- },
68
- "CreateJobOutput": {
69
- "base": "Output structure for the CreateJob operation.",
70
- "refs": {
71
- }
72
- },
73
- "CreateJobQuotaExceededException": {
74
- "base": "Each account can create only a certain number of jobs per day. If you need to create more than this, please contact awsimportexport@amazon.com to explain your particular use case.",
75
- "refs": {
76
- }
77
- },
78
- "CreationDate": {
79
- "base": "Timestamp of the CreateJob request in ISO8601 date format. For example \"2010-03-28T20:27:35Z\".",
80
- "refs": {
81
- "GetStatusOutput$CreationDate": null,
82
- "Job$CreationDate": null
83
- }
84
- },
85
- "CurrentManifest": {
86
- "base": "The last manifest submitted, which will be used to process the job.",
87
- "refs": {
88
- "GetStatusOutput$CurrentManifest": null
89
- }
90
- },
91
- "Description": {
92
- "base": "The associated description for this object.",
93
- "refs": {
94
- "Artifact$Description": null
95
- }
96
- },
97
- "ErrorCount": {
98
- "base": "Number of errors. We return this value when the ProgressCode is Success or SuccessWithErrors.",
99
- "refs": {
100
- "GetStatusOutput$ErrorCount": null
101
- }
102
- },
103
- "ErrorMessage": {
104
- "base": "The human-readable description of a particular error.",
105
- "refs": {
106
- "BucketPermissionException$message": null,
107
- "CanceledJobIdException$message": null,
108
- "CreateJobQuotaExceededException$message": null,
109
- "ExpiredJobIdException$message": null,
110
- "InvalidAccessKeyIdException$message": null,
111
- "InvalidAddressException$message": null,
112
- "InvalidCustomsException$message": null,
113
- "InvalidFileSystemException$message": null,
114
- "InvalidJobIdException$message": null,
115
- "InvalidManifestFieldException$message": null,
116
- "InvalidParameterException$message": null,
117
- "InvalidVersionException$message": null,
118
- "MalformedManifestException$message": null,
119
- "MissingCustomsException$message": null,
120
- "MissingManifestFieldException$message": null,
121
- "MissingParameterException$message": null,
122
- "MultipleRegionsException$message": null,
123
- "NoSuchBucketException$message": null,
124
- "UnableToCancelJobIdException$message": null,
125
- "UnableToUpdateJobIdException$message": null
126
- }
127
- },
128
- "ExpiredJobIdException": {
129
- "base": "Indicates that the specified job has expired out of the system.",
130
- "refs": {
131
- }
132
- },
133
- "GenericString": {
134
- "base": null,
135
- "refs": {
136
- "GetShippingLabelInput$name": null,
137
- "GetShippingLabelInput$company": null,
138
- "GetShippingLabelInput$phoneNumber": null,
139
- "GetShippingLabelInput$country": null,
140
- "GetShippingLabelInput$stateOrProvince": null,
141
- "GetShippingLabelInput$city": null,
142
- "GetShippingLabelInput$postalCode": null,
143
- "GetShippingLabelInput$street1": null,
144
- "GetShippingLabelInput$street2": null,
145
- "GetShippingLabelInput$street3": null,
146
- "GetShippingLabelInput$APIVersion": null,
147
- "GetShippingLabelOutput$ShippingLabelURL": null,
148
- "GetShippingLabelOutput$Warning": null,
149
- "JobIdList$member": null
150
- }
151
- },
152
- "GetShippingLabelInput": {
153
- "base": null,
154
- "refs": {
155
- }
156
- },
157
- "GetShippingLabelOutput": {
158
- "base": null,
159
- "refs": {
160
- }
161
- },
162
- "GetStatusInput": {
163
- "base": "Input structure for the GetStatus operation.",
164
- "refs": {
165
- }
166
- },
167
- "GetStatusOutput": {
168
- "base": "Output structure for the GetStatus operation.",
169
- "refs": {
170
- }
171
- },
172
- "InvalidAccessKeyIdException": {
173
- "base": "The AWS Access Key ID specified in the request did not match the manifest's accessKeyId value. The manifest and the request authentication must use the same AWS Access Key ID.",
174
- "refs": {
175
- }
176
- },
177
- "InvalidAddressException": {
178
- "base": "The address specified in the manifest is invalid.",
179
- "refs": {
180
- }
181
- },
182
- "InvalidCustomsException": {
183
- "base": "One or more customs parameters was invalid. Please correct and resubmit.",
184
- "refs": {
185
- }
186
- },
187
- "InvalidFileSystemException": {
188
- "base": "File system specified in export manifest is invalid.",
189
- "refs": {
190
- }
191
- },
192
- "InvalidJobIdException": {
193
- "base": "The JOBID was missing, not found, or not associated with the AWS account.",
194
- "refs": {
195
- }
196
- },
197
- "InvalidManifestFieldException": {
198
- "base": "One or more manifest fields was invalid. Please correct and resubmit.",
199
- "refs": {
200
- }
201
- },
202
- "InvalidParameterException": {
203
- "base": "One or more parameters had an invalid value.",
204
- "refs": {
205
- }
206
- },
207
- "InvalidVersionException": {
208
- "base": "The client tool version is invalid.",
209
- "refs": {
210
- }
211
- },
212
- "IsCanceled": {
213
- "base": "Indicates whether the job was canceled.",
214
- "refs": {
215
- "Job$IsCanceled": null
216
- }
217
- },
218
- "IsTruncated": {
219
- "base": "Indicates whether the list of jobs was truncated. If true, then call ListJobs again using the last JobId element as the marker.",
220
- "refs": {
221
- "ListJobsOutput$IsTruncated": null
222
- }
223
- },
224
- "Job": {
225
- "base": "Representation of a job returned by the ListJobs operation.",
226
- "refs": {
227
- "JobsList$member": null
228
- }
229
- },
230
- "JobId": {
231
- "base": "A unique identifier which refers to a particular job.",
232
- "refs": {
233
- "CancelJobInput$JobId": null,
234
- "CreateJobOutput$JobId": null,
235
- "GetStatusInput$JobId": null,
236
- "GetStatusOutput$JobId": null,
237
- "Job$JobId": null,
238
- "UpdateJobInput$JobId": null
239
- }
240
- },
241
- "JobIdList": {
242
- "base": null,
243
- "refs": {
244
- "GetShippingLabelInput$jobIds": null
245
- }
246
- },
247
- "JobType": {
248
- "base": "Specifies whether the job to initiate is an import or export job.",
249
- "refs": {
250
- "CreateJobInput$JobType": null,
251
- "CreateJobOutput$JobType": null,
252
- "GetStatusOutput$JobType": null,
253
- "Job$JobType": null,
254
- "UpdateJobInput$JobType": null
255
- }
256
- },
257
- "JobsList": {
258
- "base": "A list container for Jobs returned by the ListJobs operation.",
259
- "refs": {
260
- "ListJobsOutput$Jobs": null
261
- }
262
- },
263
- "ListJobsInput": {
264
- "base": "Input structure for the ListJobs operation.",
265
- "refs": {
266
- }
267
- },
268
- "ListJobsOutput": {
269
- "base": "Output structure for the ListJobs operation.",
270
- "refs": {
271
- }
272
- },
273
- "LocationCode": {
274
- "base": "A token representing the location of the storage device, such as \"AtAWS\".",
275
- "refs": {
276
- "GetStatusOutput$LocationCode": null
277
- }
278
- },
279
- "LocationMessage": {
280
- "base": "A more human readable form of the physical location of the storage device.",
281
- "refs": {
282
- "GetStatusOutput$LocationMessage": null
283
- }
284
- },
285
- "LogBucket": {
286
- "base": "Amazon S3 bucket for user logs.",
287
- "refs": {
288
- "GetStatusOutput$LogBucket": null
289
- }
290
- },
291
- "LogKey": {
292
- "base": "The key where the user logs were stored.",
293
- "refs": {
294
- "GetStatusOutput$LogKey": null
295
- }
296
- },
297
- "MalformedManifestException": {
298
- "base": "Your manifest is not well-formed.",
299
- "refs": {
300
- }
301
- },
302
- "Manifest": {
303
- "base": "The UTF-8 encoded text of the manifest file.",
304
- "refs": {
305
- "CreateJobInput$Manifest": null,
306
- "UpdateJobInput$Manifest": null
307
- }
308
- },
309
- "ManifestAddendum": {
310
- "base": "For internal use only.",
311
- "refs": {
312
- "CreateJobInput$ManifestAddendum": null
313
- }
314
- },
315
- "Marker": {
316
- "base": "Specifies the JOBID to start after when listing the jobs created with your account. AWS Import/Export lists your jobs in reverse chronological order. See MaxJobs.",
317
- "refs": {
318
- "ListJobsInput$Marker": null
319
- }
320
- },
321
- "MaxJobs": {
322
- "base": "Sets the maximum number of jobs returned in the response. If there are additional jobs that were not returned because MaxJobs was exceeded, the response contains &lt;IsTruncated&gt;true&lt;/IsTruncated&gt;. To return the additional jobs, see Marker.",
323
- "refs": {
324
- "ListJobsInput$MaxJobs": null
325
- }
326
- },
327
- "MissingCustomsException": {
328
- "base": "One or more required customs parameters was missing from the manifest.",
329
- "refs": {
330
- }
331
- },
332
- "MissingManifestFieldException": {
333
- "base": "One or more required fields were missing from the manifest file. Please correct and resubmit.",
334
- "refs": {
335
- }
336
- },
337
- "MissingParameterException": {
338
- "base": "One or more required parameters was missing from the request.",
339
- "refs": {
340
- }
341
- },
342
- "MultipleRegionsException": {
343
- "base": "Your manifest file contained buckets from multiple regions. A job is restricted to buckets from one region. Please correct and resubmit.",
344
- "refs": {
345
- }
346
- },
347
- "NoSuchBucketException": {
348
- "base": "The specified bucket does not exist. Create the specified bucket or change the manifest's bucket, exportBucket, or logBucket field to a bucket that the account, as specified by the manifest's Access Key ID, has write permissions to.",
349
- "refs": {
350
- }
351
- },
352
- "ProgressCode": {
353
- "base": "A token representing the state of the job, such as \"Started\".",
354
- "refs": {
355
- "GetStatusOutput$ProgressCode": null
356
- }
357
- },
358
- "ProgressMessage": {
359
- "base": "A more human readable form of the job status.",
360
- "refs": {
361
- "GetStatusOutput$ProgressMessage": null
362
- }
363
- },
364
- "Signature": {
365
- "base": "An encrypted code used to authenticate the request and response, for example, \"DV+TpDfx1/TdSE9ktyK9k/bDTVI=\". Only use this value is you want to create the signature file yourself. Generally you should use the SignatureFileContents value.",
366
- "refs": {
367
- "CreateJobOutput$Signature": null,
368
- "GetStatusOutput$Signature": null,
369
- "GetStatusOutput$SignatureFileContents": null
370
- }
371
- },
372
- "SignatureFileContents": {
373
- "base": "The actual text of the SIGNATURE file to be written to disk.",
374
- "refs": {
375
- "CreateJobOutput$SignatureFileContents": null
376
- }
377
- },
378
- "Success": {
379
- "base": "Specifies whether (true) or not (false) AWS Import/Export updated your job.",
380
- "refs": {
381
- "CancelJobOutput$Success": null,
382
- "UpdateJobOutput$Success": null
383
- }
384
- },
385
- "TrackingNumber": {
386
- "base": "The shipping tracking number assigned by AWS Import/Export to the storage device when it's returned to you. We return this value when the LocationCode is \"Returned\".",
387
- "refs": {
388
- "GetStatusOutput$TrackingNumber": null
389
- }
390
- },
391
- "URL": {
392
- "base": "The URL for a given Artifact.",
393
- "refs": {
394
- "Artifact$URL": null
395
- }
396
- },
397
- "UnableToCancelJobIdException": {
398
- "base": "AWS Import/Export cannot cancel the job",
399
- "refs": {
400
- }
401
- },
402
- "UnableToUpdateJobIdException": {
403
- "base": "AWS Import/Export cannot update the job",
404
- "refs": {
405
- }
406
- },
407
- "UpdateJobInput": {
408
- "base": "Input structure for the UpateJob operation.",
409
- "refs": {
410
- }
411
- },
412
- "UpdateJobOutput": {
413
- "base": "Output structure for the UpateJob operation.",
414
- "refs": {
415
- }
416
- },
417
- "ValidateOnly": {
418
- "base": "Validate the manifest and parameter values in the request but do not actually create a job.",
419
- "refs": {
420
- "CreateJobInput$ValidateOnly": null,
421
- "UpdateJobInput$ValidateOnly": null
422
- }
423
- },
424
- "WarningMessage": {
425
- "base": "An optional message notifying you of non-fatal issues with the job, such as use of an incompatible Amazon S3 bucket name.",
426
- "refs": {
427
- "CreateJobOutput$WarningMessage": null,
428
- "UpdateJobOutput$WarningMessage": null
429
- }
430
- }
431
- }
432
- }
@@ -1,424 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddTagsToStream": "<p>Adds or updates tags for the specified Amazon Kinesis stream. Each stream can have up to 10 tags. </p> <p>If tags have already been assigned to the stream, <code>AddTagsToStream</code> overwrites any existing tags that correspond to the specified tag keys.</p>",
5
- "CreateStream": "<p>Creates a Amazon Kinesis stream. A stream captures and transports data records that are continuously emitted from different data sources or <i>producers</i>. Scale-out within an Amazon Kinesis stream is explicitly supported by means of shards, which are uniquely identified groups of data records in an Amazon Kinesis stream.</p> <p>You specify and control the number of shards that a stream is composed of. Each open shard can support up to 5 read transactions per second, up to a maximum total of 2 MB of data read per second. Each shard can support up to 1000 records written per second, up to a maximum total of 1 MB data written per second. You can add shards to a stream if the amount of data input increases and you can remove shards if the amount of data input decreases.</p> <p>The stream name identifies the stream. The name is scoped to the AWS account used by the application. It is also scoped by region. That is, two streams in two different accounts can have the same name, and two streams in the same account, but in two different regions, can have the same name. </p> <p><code>CreateStream</code> is an asynchronous operation. Upon receiving a <code>CreateStream</code> request, Amazon Kinesis immediately returns and sets the stream status to <code>CREATING</code>. After the stream is created, Amazon Kinesis sets the stream status to <code>ACTIVE</code>. You should perform read and write operations only on an <code>ACTIVE</code> stream. </p> <p>You receive a <code>LimitExceededException</code> when making a <code>CreateStream</code> request if you try to do one of the following:</p> <ul> <li>Have more than five streams in the <code>CREATING</code> state at any point in time.</li> <li>Create more shards than are authorized for your account.</li> </ul> <p>For the default shard limit for an AWS account, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html\">Amazon Kinesis Limits</a>. If you need to increase this limit, <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html\">contact AWS Support</a></p> <p>You can use <code>DescribeStream</code> to check the stream status, which is returned in <code>StreamStatus</code>.</p> <p><a>CreateStream</a> has a limit of 5 transactions per second per account.</p>",
6
- "DeleteStream": "<p>Deletes a stream and all its shards and data. You must shut down any applications that are operating on the stream before you delete the stream. If an application attempts to operate on a deleted stream, it will receive the exception <code>ResourceNotFoundException</code>.</p> <p>If the stream is in the <code>ACTIVE</code> state, you can delete it. After a <code>DeleteStream</code> request, the specified stream is in the <code>DELETING</code> state until Amazon Kinesis completes the deletion.</p> <p><b>Note:</b> Amazon Kinesis might continue to accept data read and write operations, such as <a>PutRecord</a>, <a>PutRecords</a>, and <a>GetRecords</a>, on a stream in the <code>DELETING</code> state until the stream deletion is complete.</p> <p>When you delete a stream, any shards in that stream are also deleted, and any tags are dissociated from the stream.</p> <p>You can use the <a>DescribeStream</a> operation to check the state of the stream, which is returned in <code>StreamStatus</code>.</p> <p><a>DeleteStream</a> has a limit of 5 transactions per second per account.</p>",
7
- "DescribeStream": "<p>Describes the specified stream.</p> <p>The information about the stream includes its current status, its Amazon Resource Name (ARN), and an array of shard objects. For each shard object, there is information about the hash key and sequence number ranges that the shard spans, and the IDs of any earlier shards that played in a role in creating the shard. A sequence number is the identifier associated with every record ingested in the Amazon Kinesis stream. The sequence number is assigned when a record is put into the stream.</p> <p>You can limit the number of returned shards using the <code>Limit</code> parameter. The number of shards in a stream may be too large to return from a single call to <code>DescribeStream</code>. You can detect this by using the <code>HasMoreShards</code> flag in the returned output. <code>HasMoreShards</code> is set to <code>true</code> when there is more data available. </p> <p><code>DescribeStream</code> is a paginated operation. If there are more shards available, you can request them using the shard ID of the last shard returned. Specify this ID in the <code>ExclusiveStartShardId</code> parameter in a subsequent request to <code>DescribeStream</code>. </p> <p><a>DescribeStream</a> has a limit of 10 transactions per second per account.</p>",
8
- "GetRecords": "<p>Gets data records from a shard.</p> <p>Specify a shard iterator using the <code>ShardIterator</code> parameter. The shard iterator specifies the position in the shard from which you want to start reading data records sequentially. If there are no records available in the portion of the shard that the iterator points to, <a>GetRecords</a> returns an empty list. Note that it might take multiple calls to get to a portion of the shard that contains records.</p> <p>You can scale by provisioning multiple shards. Your application should have one thread per shard, each reading continuously from its stream. To read from a stream continually, call <a>GetRecords</a> in a loop. Use <a>GetShardIterator</a> to get the shard iterator to specify in the first <a>GetRecords</a> call. <a>GetRecords</a> returns a new shard iterator in <code>NextShardIterator</code>. Specify the shard iterator returned in <code>NextShardIterator</code> in subsequent calls to <a>GetRecords</a>. Note that if the shard has been closed, the shard iterator can't return more data and <a>GetRecords</a> returns <code>null</code> in <code>NextShardIterator</code>. You can terminate the loop when the shard is closed, or when the shard iterator reaches the record with the sequence number or other attribute that marks it as the last record to process.</p> <p>Each data record can be up to 50 KB in size, and each shard can read up to 2 MB per second. You can ensure that your calls don't exceed the maximum supported size or throughput by using the <code>Limit</code> parameter to specify the maximum number of records that <a>GetRecords</a> can return. Consider your average record size when determining this limit. For example, if your average record size is 40 KB, you can limit the data returned to about 1 MB per call by specifying 25 as the limit.</p> <p>The size of the data returned by <a>GetRecords</a> will vary depending on the utilization of the shard. The maximum size of data that <a>GetRecords</a> can return is 10 MB. If a call returns this amount of data, subsequent calls made within the next 5 seconds throw <code>ProvisionedThroughputExceededException</code>. If there is insufficient provisioned throughput on the shard, subsequent calls made within the next 1 second throw <code>ProvisionedThroughputExceededException</code>. Note that <a>GetRecords</a> won't return any data when it throws an exception. For this reason, we recommend that you wait one second between calls to <a>GetRecords</a>; however, it's possible that the application will get exceptions for longer than 1 second.</p> <p>To detect whether the application is falling behind in processing, you can use the <code>MillisBehindLatest</code> response attribute. You can also monitor the amount of data in a stream using the CloudWatch metrics. For more information, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/monitoring_with_cloudwatch.html\">Monitoring Amazon Kinesis with Amazon CloudWatch</a> in the <i>Amazon Kinesis Developer Guide</i>.</p>",
9
- "GetShardIterator": "<p>Gets a shard iterator. A shard iterator expires five minutes after it is returned to the requester.</p> <p>A shard iterator specifies the position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard. A sequence number is the identifier associated with every record ingested in the Amazon Kinesis stream. The sequence number is assigned when a record is put into the stream. </p> <p>You must specify the shard iterator type. For example, you can set the <code>ShardIteratorType</code> parameter to read exactly from the position denoted by a specific sequence number by using the <code>AT_SEQUENCE_NUMBER</code> shard iterator type, or right after the sequence number by using the <code>AFTER_SEQUENCE_NUMBER</code> shard iterator type, using sequence numbers returned by earlier calls to <a>PutRecord</a>, <a>PutRecords</a>, <a>GetRecords</a>, or <a>DescribeStream</a>. You can specify the shard iterator type <code>TRIM_HORIZON</code> in the request to cause <code>ShardIterator</code> to point to the last untrimmed record in the shard in the system, which is the oldest data record in the shard. Or you can point to just after the most recent record in the shard, by using the shard iterator type <code>LATEST</code>, so that you always read the most recent data in the shard. </p> <p>When you repeatedly read from an Amazon Kinesis stream use a <a>GetShardIterator</a> request to get the first shard iterator for use in your first <a>GetRecords</a> request and then use the shard iterator returned by the <a>GetRecords</a> request in <code>NextShardIterator</code> for subsequent reads. A new shard iterator is returned by every <a>GetRecords</a> request in <code>NextShardIterator</code>, which you use in the <code>ShardIterator</code> parameter of the next <a>GetRecords</a> request. </p> <p>If a <a>GetShardIterator</a> request is made too often, you receive a <code>ProvisionedThroughputExceededException</code>. For more information about throughput limits, see <a>GetRecords</a>.</p> <p>If the shard is closed, the iterator can't return more data, and <a>GetShardIterator</a> returns <code>null</code> for its <code>ShardIterator</code>. A shard can be closed using <a>SplitShard</a> or <a>MergeShards</a>.</p> <p><a>GetShardIterator</a> has a limit of 5 transactions per second per account per open shard.</p>",
10
- "ListStreams": "<p> Lists your streams.</p> <p> The number of streams may be too large to return from a single call to <code>ListStreams</code>. You can limit the number of returned streams using the <code>Limit</code> parameter. If you do not specify a value for the <code>Limit</code> parameter, Amazon Kinesis uses the default limit, which is currently 10.</p> <p> You can detect if there are more streams available to list by using the <code>HasMoreStreams</code> flag from the returned output. If there are more streams available, you can request more streams by using the name of the last stream returned by the <code>ListStreams</code> request in the <code>ExclusiveStartStreamName</code> parameter in a subsequent request to <code>ListStreams</code>. The group of stream names returned by the subsequent request is then added to the list. You can continue this process until all the stream names have been collected in the list. </p> <p><a>ListStreams</a> has a limit of 5 transactions per second per account.</p>",
11
- "ListTagsForStream": "<p>Lists the tags for the specified Amazon Kinesis stream.</p>",
12
- "MergeShards": "<p>Merges two adjacent shards in a stream and combines them into a single shard to reduce the stream's capacity to ingest and transport data. Two shards are considered adjacent if the union of the hash key ranges for the two shards form a contiguous set with no gaps. For example, if you have two shards, one with a hash key range of 276...381 and the other with a hash key range of 382...454, then you could merge these two shards into a single shard that would have a hash key range of 276...454. After the merge, the single child shard receives data for all hash key values covered by the two parent shards.</p> <p><code>MergeShards</code> is called when there is a need to reduce the overall capacity of a stream because of excess capacity that is not being used. You must specify the shard to be merged and the adjacent shard for a stream. For more information about merging shards, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-resharding-merge.html\">Merge Two Shards</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>If the stream is in the <code>ACTIVE</code> state, you can call <code>MergeShards</code>. If a stream is in the <code>CREATING</code>, <code>UPDATING</code>, or <code>DELETING</code> state, <code>MergeShards</code> returns a <code>ResourceInUseException</code>. If the specified stream does not exist, <code>MergeShards</code> returns a <code>ResourceNotFoundException</code>. </p> <p>You can use <a>DescribeStream</a> to check the state of the stream, which is returned in <code>StreamStatus</code>.</p> <p><code>MergeShards</code> is an asynchronous operation. Upon receiving a <code>MergeShards</code> request, Amazon Kinesis immediately returns a response and sets the <code>StreamStatus</code> to <code>UPDATING</code>. After the operation is completed, Amazon Kinesis sets the <code>StreamStatus</code> to <code>ACTIVE</code>. Read and write operations continue to work while the stream is in the <code>UPDATING</code> state. </p> <p>You use <a>DescribeStream</a> to determine the shard IDs that are specified in the <code>MergeShards</code> request. </p> <p>If you try to operate on too many streams in parallel using <a>CreateStream</a>, <a>DeleteStream</a>, <code>MergeShards</code> or <a>SplitShard</a>, you will receive a <code>LimitExceededException</code>. </p> <p><code>MergeShards</code> has limit of 5 transactions per second per account.</p>",
13
- "PutRecord": "<p>Puts (writes) a single data record from a producer into an Amazon Kinesis stream. Call <code>PutRecord</code> to send data from the producer into the Amazon Kinesis stream for real-time ingestion and subsequent processing, one record at a time. Each shard can support up to 1000 records written per second, up to a maximum total of 1 MB data written per second.</p> <p>You must specify the name of the stream that captures, stores, and transports the data; a partition key; and the data blob itself.</p> <p>The data blob can be any type of data; for example, a segment from a log file, geographic/location data, website clickstream data, and so on.</p> <p>The partition key is used by Amazon Kinesis to distribute data across shards. Amazon Kinesis segregates the data records that belong to a data stream into multiple shards, using the partition key associated with each data record to determine which shard a given data record belongs to. </p> <p>Partition keys are Unicode strings, with a maximum length limit of 256 characters for each key. An MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards using the hash key ranges of the shards. You can override hashing the partition key to determine the shard by explicitly specifying a hash value using the <code>ExplicitHashKey</code> parameter. For more information, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html\">Adding Data to a Stream</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p><code>PutRecord</code> returns the shard ID of where the data record was placed and the sequence number that was assigned to the data record.</p> <p>Sequence numbers generally increase over time. To guarantee strictly increasing ordering, use the <code>SequenceNumberForOrdering</code> parameter. For more information, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html\">Adding Data to a Stream</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>If a <code>PutRecord</code> request cannot be processed because of insufficient provisioned throughput on the shard involved in the request, <code>PutRecord</code> throws <code>ProvisionedThroughputExceededException</code>. </p> <p>Data records are accessible for only 24 hours from the time that they are added to an Amazon Kinesis stream.</p>",
14
- "PutRecords": "<p>Puts (writes) multiple data records from a producer into an Amazon Kinesis stream in a single call (also referred to as a <code>PutRecords</code> request). Use this operation to send data from a data producer into the Amazon Kinesis stream for real-time ingestion and processing. Each shard can support up to 1000 records written per second, up to a maximum total of 1 MB data written per second.</p> <p>You must specify the name of the stream that captures, stores, and transports the data; and an array of request <code>Records</code>, with each record in the array requiring a partition key and data blob. </p> <p>The data blob can be any type of data; for example, a segment from a log file, geographic/location data, website clickstream data, and so on.</p> <p>The partition key is used by Amazon Kinesis as input to a hash function that maps the partition key and associated data to a specific shard. An MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream. For more information, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html\">Adding Data to a Stream</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>Each record in the <code>Records</code> array may include an optional parameter, <code>ExplicitHashKey</code>, which overrides the partition key to shard mapping. This parameter allows a data producer to determine explicitly the shard where the record is stored. For more information, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html#kinesis-using-sdk-java-putrecords\">Adding Multiple Records with PutRecords</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>The <code>PutRecords</code> response includes an array of response <code>Records</code>. Each record in the response array directly correlates with a record in the request array using natural ordering, from the top to the bottom of the request and response. The response <code>Records</code> array always includes the same number of records as the request array.</p> <p>The response <code>Records</code> array includes both successfully and unsuccessfully processed records. Amazon Kinesis attempts to process all records in each <code>PutRecords</code> request. A single record failure does not stop the processing of subsequent records.</p> <p>A successfully-processed record includes <code>ShardId</code> and <code>SequenceNumber</code> values. The <code>ShardId</code> parameter identifies the shard in the stream where the record is stored. The <code>SequenceNumber</code> parameter is an identifier assigned to the put record, unique to all records in the stream.</p> <p>An unsuccessfully-processed record includes <code>ErrorCode</code> and <code>ErrorMessage</code> values. <code>ErrorCode</code> reflects the type of error and can be one of the following values: <code>ProvisionedThroughputExceededException</code> or <code>InternalFailure</code>. <code>ErrorMessage</code> provides more detailed information about the <code>ProvisionedThroughputExceededException</code> exception including the account ID, stream name, and shard ID of the record that was throttled. For more information about partially successful responses, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html#kinesis-using-sdk-java-putrecords\">Adding Multiple Records with PutRecords</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>Data records are accessible for only 24 hours from the time that they are added to an Amazon Kinesis stream.</p>",
15
- "RemoveTagsFromStream": "<p>Deletes tags from the specified Amazon Kinesis stream.</p> <p>If you specify a tag that does not exist, it is ignored.</p>",
16
- "SplitShard": "<p>Splits a shard into two new shards in the stream, to increase the stream's capacity to ingest and transport data. <code>SplitShard</code> is called when there is a need to increase the overall capacity of stream because of an expected increase in the volume of data records being ingested. </p> <p>You can also use <code>SplitShard</code> when a shard appears to be approaching its maximum utilization, for example, when the set of producers sending data into the specific shard are suddenly sending more than previously anticipated. You can also call <code>SplitShard</code> to increase stream capacity, so that more Amazon Kinesis applications can simultaneously read data from the stream for real-time processing. </p> <p>You must specify the shard to be split and the new hash key, which is the position in the shard where the shard gets split in two. In many cases, the new hash key might simply be the average of the beginning and ending hash key, but it can be any hash key value in the range being mapped into the shard. For more information about splitting shards, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-resharding-split.html\">Split a Shard</a> in the <i>Amazon Kinesis Developer Guide</i>.</p> <p>You can use <a>DescribeStream</a> to determine the shard ID and hash key values for the <code>ShardToSplit</code> and <code>NewStartingHashKey</code> parameters that are specified in the <code>SplitShard</code> request.</p> <p><code>SplitShard</code> is an asynchronous operation. Upon receiving a <code>SplitShard</code> request, Amazon Kinesis immediately returns a response and sets the stream status to <code>UPDATING</code>. After the operation is completed, Amazon Kinesis sets the stream status to <code>ACTIVE</code>. Read and write operations continue to work while the stream is in the <code>UPDATING</code> state. </p> <p>You can use <code>DescribeStream</code> to check the status of the stream, which is returned in <code>StreamStatus</code>. If the stream is in the <code>ACTIVE</code> state, you can call <code>SplitShard</code>. If a stream is in <code>CREATING</code> or <code>UPDATING</code> or <code>DELETING</code> states, <code>DescribeStream</code> returns a <code>ResourceInUseException</code>.</p> <p>If the specified stream does not exist, <code>DescribeStream</code> returns a <code>ResourceNotFoundException</code>. If you try to create more shards than are authorized for your account, you receive a <code>LimitExceededException</code>. </p> <p>For the default shard limit for an AWS account, see <a href=\"http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html\">Amazon Kinesis Limits</a>. If you need to increase this limit, <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html\">contact AWS Support</a></p> <p>If you try to operate on too many streams in parallel using <a>CreateStream</a>, <a>DeleteStream</a>, <a>MergeShards</a> or <a>SplitShard</a>, you receive a <code>LimitExceededException</code>. </p> <p><code>SplitShard</code> has limit of 5 transactions per second per account.</p>"
17
- },
18
- "service": "<fullname>Amazon Kinesis Service API Reference</fullname> <p>Amazon Kinesis is a managed service that scales elastically for real time processing of streaming big data.</p>",
19
- "shapes": {
20
- "AddTagsToStreamInput": {
21
- "base": "<p>Represents the input for <code>AddTagsToStream</code>.</p>",
22
- "refs": {
23
- }
24
- },
25
- "BooleanObject": {
26
- "base": null,
27
- "refs": {
28
- "ListStreamsOutput$HasMoreStreams": "<p>If set to <code>true</code>, there are more streams available to list.</p>",
29
- "ListTagsForStreamOutput$HasMoreTags": "<p>If set to <code>true</code>, more tags are available. To request additional tags, set <code>ExclusiveStartTagKey</code> to the key of the last tag returned.</p>",
30
- "StreamDescription$HasMoreShards": "<p>If set to <code>true</code>, more shards in the stream are available to describe.</p>"
31
- }
32
- },
33
- "CreateStreamInput": {
34
- "base": "<p>Represents the input for <code>CreateStream</code>.</p>",
35
- "refs": {
36
- }
37
- },
38
- "Data": {
39
- "base": null,
40
- "refs": {
41
- "PutRecordInput$Data": "<p>The data blob to put into the record, which is base64-encoded when the blob is serialized. The maximum size of the data blob (the payload before base64-encoding) is 50 kilobytes (KB) </p>",
42
- "PutRecordsRequestEntry$Data": "<p>The data blob to put into the record, which is base64-encoded when the blob is serialized. The maximum size of the data blob (the payload before base64-encoding) is 50 kilobytes (KB)</p>",
43
- "Record$Data": "<p>The data blob. The data in the blob is both opaque and immutable to the Amazon Kinesis service, which does not inspect, interpret, or change the data in the blob in any way. The maximum size of the data blob (the payload before base64-encoding) is 50 kilobytes (KB) </p>"
44
- }
45
- },
46
- "DeleteStreamInput": {
47
- "base": "<p>Represents the input for <code>DeleteStream</code>.</p>",
48
- "refs": {
49
- }
50
- },
51
- "DescribeStreamInput": {
52
- "base": "<p>Represents the input for <code>DescribeStream</code>.</p>",
53
- "refs": {
54
- }
55
- },
56
- "DescribeStreamInputLimit": {
57
- "base": null,
58
- "refs": {
59
- "DescribeStreamInput$Limit": "<p>The maximum number of shards to return.</p>"
60
- }
61
- },
62
- "DescribeStreamOutput": {
63
- "base": "<p>Represents the output for <code>DescribeStream</code>.</p>",
64
- "refs": {
65
- }
66
- },
67
- "ErrorCode": {
68
- "base": null,
69
- "refs": {
70
- "PutRecordsResultEntry$ErrorCode": "<p>The error code for an individual record result. <code>ErrorCodes</code> can be either <code>ProvisionedThroughputExceededException</code> or <code>InternalFailure</code>.</p>"
71
- }
72
- },
73
- "ErrorMessage": {
74
- "base": null,
75
- "refs": {
76
- "ExpiredIteratorException$message": "<p>A message that provides information about the error.</p>",
77
- "InvalidArgumentException$message": "<p>A message that provides information about the error.</p>",
78
- "LimitExceededException$message": "<p>A message that provides information about the error.</p>",
79
- "ProvisionedThroughputExceededException$message": "<p>A message that provides information about the error.</p>",
80
- "PutRecordsResultEntry$ErrorMessage": "<p>The error message for an individual record result. An <code>ErrorCode</code> value of <code>ProvisionedThroughputExceededException</code> has an error message that includes the account ID, stream name, and shard ID. An <code>ErrorCode</code> value of <code>InternalFailure</code> has the error message <code>\"Internal Service Failure\"</code>.</p>",
81
- "ResourceInUseException$message": "<p>A message that provides information about the error.</p>",
82
- "ResourceNotFoundException$message": "<p>A message that provides information about the error.</p>"
83
- }
84
- },
85
- "ExpiredIteratorException": {
86
- "base": "<p>The provided iterator exceeds the maximum age allowed.</p>",
87
- "refs": {
88
- }
89
- },
90
- "GetRecordsInput": {
91
- "base": "<p>Represents the input for <a>GetRecords</a>.</p>",
92
- "refs": {
93
- }
94
- },
95
- "GetRecordsInputLimit": {
96
- "base": null,
97
- "refs": {
98
- "GetRecordsInput$Limit": "<p>The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, <a>GetRecords</a> throws <code>InvalidArgumentException</code>.</p>"
99
- }
100
- },
101
- "GetRecordsOutput": {
102
- "base": "<p>Represents the output for <a>GetRecords</a>.</p>",
103
- "refs": {
104
- }
105
- },
106
- "GetShardIteratorInput": {
107
- "base": "<p>Represents the input for <code>GetShardIterator</code>.</p>",
108
- "refs": {
109
- }
110
- },
111
- "GetShardIteratorOutput": {
112
- "base": "<p>Represents the output for <code>GetShardIterator</code>.</p>",
113
- "refs": {
114
- }
115
- },
116
- "HashKey": {
117
- "base": null,
118
- "refs": {
119
- "HashKeyRange$StartingHashKey": "<p>The starting hash key of the hash key range.</p>",
120
- "HashKeyRange$EndingHashKey": "<p>The ending hash key of the hash key range.</p>",
121
- "PutRecordInput$ExplicitHashKey": "<p>The hash value used to explicitly determine the shard the data record is assigned to by overriding the partition key hash.</p>",
122
- "PutRecordsRequestEntry$ExplicitHashKey": "<p>The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.</p>",
123
- "SplitShardInput$NewStartingHashKey": "<p>A hash key value for the starting hash key of one of the child shards created by the split. The hash key range for a given shard constitutes a set of ordered contiguous positive integers. The value for <code>NewStartingHashKey</code> must be in the range of hash keys being mapped into the shard. The <code>NewStartingHashKey</code> hash key value and all higher hash key values in hash key range are distributed to one of the child shards. All the lower hash key values in the range are distributed to the other child shard.</p>"
124
- }
125
- },
126
- "HashKeyRange": {
127
- "base": "<p>The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.</p>",
128
- "refs": {
129
- "Shard$HashKeyRange": "<p>The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.</p>"
130
- }
131
- },
132
- "InvalidArgumentException": {
133
- "base": "<p>A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.</p>",
134
- "refs": {
135
- }
136
- },
137
- "LimitExceededException": {
138
- "base": "<p>The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed (5).</p>",
139
- "refs": {
140
- }
141
- },
142
- "ListStreamsInput": {
143
- "base": "<p>Represents the input for <code>ListStreams</code>.</p>",
144
- "refs": {
145
- }
146
- },
147
- "ListStreamsInputLimit": {
148
- "base": null,
149
- "refs": {
150
- "ListStreamsInput$Limit": "<p>The maximum number of streams to list.</p>"
151
- }
152
- },
153
- "ListStreamsOutput": {
154
- "base": "<p>Represents the output for <code>ListStreams</code>.</p>",
155
- "refs": {
156
- }
157
- },
158
- "ListTagsForStreamInput": {
159
- "base": "<p>Represents the input for <code>ListTagsForStream</code>.</p>",
160
- "refs": {
161
- }
162
- },
163
- "ListTagsForStreamInputLimit": {
164
- "base": null,
165
- "refs": {
166
- "ListTagsForStreamInput$Limit": "<p>The number of tags to return. If this number is less than the total number of tags associated with the stream, <code>HasMoreTags</code> is set to <code>true</code>. To list additional tags, set <code>ExclusiveStartTagKey</code> to the last key in the response.</p>"
167
- }
168
- },
169
- "ListTagsForStreamOutput": {
170
- "base": "<p>Represents the output for <code>ListTagsForStream</code>.</p>",
171
- "refs": {
172
- }
173
- },
174
- "MergeShardsInput": {
175
- "base": "<p>Represents the input for <code>MergeShards</code>.</p>",
176
- "refs": {
177
- }
178
- },
179
- "MillisBehindLatest": {
180
- "base": null,
181
- "refs": {
182
- "GetRecordsOutput$MillisBehindLatest": "<p>The number of milliseconds the <a>GetRecords</a> response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates record processing is caught up, and there are no new records to process at this moment.</p>"
183
- }
184
- },
185
- "PartitionKey": {
186
- "base": null,
187
- "refs": {
188
- "PutRecordInput$PartitionKey": "<p>Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key will map to the same shard within the stream.</p>",
189
- "PutRecordsRequestEntry$PartitionKey": "<p>Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.</p>",
190
- "Record$PartitionKey": "<p>Identifies which shard in the stream the data record is assigned to.</p>"
191
- }
192
- },
193
- "PositiveIntegerObject": {
194
- "base": null,
195
- "refs": {
196
- "CreateStreamInput$ShardCount": "<p>The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.</p> <p>DefaultShardLimit;</p>",
197
- "PutRecordsOutput$FailedRecordCount": "<p>The number of unsuccessfully processed records in a <code>PutRecords</code> request.</p>"
198
- }
199
- },
200
- "ProvisionedThroughputExceededException": {
201
- "base": "<p>The request rate is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/api-retries.html\" target=\"_blank\">Error Retries and Exponential Backoff in AWS</a> in the <i>AWS General Reference</i>.</p>",
202
- "refs": {
203
- }
204
- },
205
- "PutRecordInput": {
206
- "base": "<p>Represents the input for <code>PutRecord</code>.</p>",
207
- "refs": {
208
- }
209
- },
210
- "PutRecordOutput": {
211
- "base": "<p>Represents the output for <code>PutRecord</code>.</p>",
212
- "refs": {
213
- }
214
- },
215
- "PutRecordsInput": {
216
- "base": "<p>A <code>PutRecords</code> request.</p>",
217
- "refs": {
218
- }
219
- },
220
- "PutRecordsOutput": {
221
- "base": "<p><code>PutRecords</code> results.</p>",
222
- "refs": {
223
- }
224
- },
225
- "PutRecordsRequestEntry": {
226
- "base": "<p>Represents the output for <code>PutRecords</code>.</p>",
227
- "refs": {
228
- "PutRecordsRequestEntryList$member": null
229
- }
230
- },
231
- "PutRecordsRequestEntryList": {
232
- "base": null,
233
- "refs": {
234
- "PutRecordsInput$Records": "<p>The records associated with the request.</p>"
235
- }
236
- },
237
- "PutRecordsResultEntry": {
238
- "base": "<p>Represents the result of an individual record from a <code>PutRecords</code> request. A record that is successfully added to your Amazon Kinesis stream includes SequenceNumber and ShardId in the result. A record that fails to be added to your Amazon Kinesis stream includes ErrorCode and ErrorMessage in the result.</p>",
239
- "refs": {
240
- "PutRecordsResultEntryList$member": null
241
- }
242
- },
243
- "PutRecordsResultEntryList": {
244
- "base": null,
245
- "refs": {
246
- "PutRecordsOutput$Records": "<p>An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to your Amazon Kinesis stream includes <code>SequenceNumber</code> and <code>ShardId</code> in the result. A record that fails to be added to your Amazon Kinesis stream includes <code>ErrorCode</code> and <code>ErrorMessage</code> in the result.</p>"
247
- }
248
- },
249
- "Record": {
250
- "base": "<p>The unit of data of the Amazon Kinesis stream, which is composed of a sequence number, a partition key, and a data blob.</p>",
251
- "refs": {
252
- "RecordList$member": null
253
- }
254
- },
255
- "RecordList": {
256
- "base": null,
257
- "refs": {
258
- "GetRecordsOutput$Records": "<P>The data records retrieved from the shard.</P>"
259
- }
260
- },
261
- "RemoveTagsFromStreamInput": {
262
- "base": "<p>Represents the input for <code>RemoveTagsFromStream</code>.</p>",
263
- "refs": {
264
- }
265
- },
266
- "ResourceInUseException": {
267
- "base": "<p>The resource is not available for this operation. For example, you attempted to split a shard but the stream is not in the <code>ACTIVE</code> state.</p>",
268
- "refs": {
269
- }
270
- },
271
- "ResourceNotFoundException": {
272
- "base": "<p>The requested resource could not be found. It might not be specified correctly, or it might not be in the <code>ACTIVE</code> state.</p>",
273
- "refs": {
274
- }
275
- },
276
- "SequenceNumber": {
277
- "base": null,
278
- "refs": {
279
- "GetShardIteratorInput$StartingSequenceNumber": "<p>The sequence number of the data record in the shard from which to start reading from.</p>",
280
- "PutRecordInput$SequenceNumberForOrdering": "<p>Guarantees strictly increasing sequence numbers, for puts from the same client and to the same partition key. Usage: set the <code>SequenceNumberForOrdering</code> of record <i>n</i> to the sequence number of record <i>n-1</i> (as returned in the result when putting record <i>n-1</i>). If this parameter is not set, records will be coarsely ordered based on arrival time.</p>",
281
- "PutRecordOutput$SequenceNumber": "<p>The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.</p>",
282
- "PutRecordsResultEntry$SequenceNumber": "<p>The sequence number for an individual record result.</p>",
283
- "Record$SequenceNumber": "<p>The unique identifier for the record in the Amazon Kinesis stream.</p>",
284
- "SequenceNumberRange$StartingSequenceNumber": "<p>The starting sequence number for the range.</p>",
285
- "SequenceNumberRange$EndingSequenceNumber": "<p>The ending sequence number for the range. Shards that are in the OPEN state have an ending sequence number of <code>null</code>.</p>"
286
- }
287
- },
288
- "SequenceNumberRange": {
289
- "base": "<p>The range of possible sequence numbers for the shard.</p>",
290
- "refs": {
291
- "Shard$SequenceNumberRange": "<p>The range of possible sequence numbers for the shard.</p>"
292
- }
293
- },
294
- "Shard": {
295
- "base": "<p>A uniquely identified group of data records in an Amazon Kinesis stream.</p>",
296
- "refs": {
297
- "ShardList$member": null
298
- }
299
- },
300
- "ShardId": {
301
- "base": null,
302
- "refs": {
303
- "DescribeStreamInput$ExclusiveStartShardId": "<p>The shard ID of the shard to start with.</p>",
304
- "GetShardIteratorInput$ShardId": "<p>The shard ID of the shard to get the iterator for.</p>",
305
- "MergeShardsInput$ShardToMerge": "<p>The shard ID of the shard to combine with the adjacent shard for the merge.</p>",
306
- "MergeShardsInput$AdjacentShardToMerge": "<p>The shard ID of the adjacent shard for the merge.</p>",
307
- "PutRecordOutput$ShardId": "<p>The shard ID of the shard where the data record was placed.</p>",
308
- "PutRecordsResultEntry$ShardId": "<p>The shard ID for an individual record result.</p>",
309
- "Shard$ShardId": "<p>The unique identifier of the shard within the Amazon Kinesis stream.</p>",
310
- "Shard$ParentShardId": "<p>The shard Id of the shard's parent.</p>",
311
- "Shard$AdjacentParentShardId": "<p>The shard Id of the shard adjacent to the shard's parent.</p>",
312
- "SplitShardInput$ShardToSplit": "<p>The shard ID of the shard to split.</p>"
313
- }
314
- },
315
- "ShardIterator": {
316
- "base": null,
317
- "refs": {
318
- "GetRecordsInput$ShardIterator": "<p>The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.</p>",
319
- "GetRecordsOutput$NextShardIterator": "<p>The next position in the shard from which to start sequentially reading data records. If set to <code>null</code>, the shard has been closed and the requested iterator will not return any more data. </p>",
320
- "GetShardIteratorOutput$ShardIterator": "<p>The position in the shard from which to start reading data records sequentially. A shard iterator specifies this position using the sequence number of a data record in a shard.</p>"
321
- }
322
- },
323
- "ShardIteratorType": {
324
- "base": null,
325
- "refs": {
326
- "GetShardIteratorInput$ShardIteratorType": "<p>Determines how the shard iterator is used to start reading data records from the shard.</p> <p>The following are the valid shard iterator types:</p> <ul> <li>AT_SEQUENCE_NUMBER - Start reading exactly from the position denoted by a specific sequence number.</li> <li>AFTER_SEQUENCE_NUMBER - Start reading right after the position denoted by a specific sequence number.</li> <li>TRIM_HORIZON - Start reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.</li> <li>LATEST - Start reading just after the most recent record in the shard, so that you always read the most recent data in the shard.</li> </ul>"
327
- }
328
- },
329
- "ShardList": {
330
- "base": null,
331
- "refs": {
332
- "StreamDescription$Shards": "<p>The shards that comprise the stream.</p>"
333
- }
334
- },
335
- "SplitShardInput": {
336
- "base": "<p>Represents the input for <code>SplitShard</code>.</p>",
337
- "refs": {
338
- }
339
- },
340
- "StreamARN": {
341
- "base": null,
342
- "refs": {
343
- "StreamDescription$StreamARN": "<p>The Amazon Resource Name (ARN) for the stream being described.</p>"
344
- }
345
- },
346
- "StreamDescription": {
347
- "base": "<p>Represents the output for <code>DescribeStream</code>.</p>",
348
- "refs": {
349
- "DescribeStreamOutput$StreamDescription": "<p>The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.</p>"
350
- }
351
- },
352
- "StreamName": {
353
- "base": null,
354
- "refs": {
355
- "AddTagsToStreamInput$StreamName": "<p>The name of the stream.</p>",
356
- "CreateStreamInput$StreamName": "<p>A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account, but in two different regions, can have the same name.</p>",
357
- "DeleteStreamInput$StreamName": "<p>The name of the stream to delete.</p>",
358
- "DescribeStreamInput$StreamName": "<p>The name of the stream to describe.</p>",
359
- "GetShardIteratorInput$StreamName": "<p>The name of the stream.</p>",
360
- "ListStreamsInput$ExclusiveStartStreamName": "<p>The name of the stream to start the list with.</p>",
361
- "ListTagsForStreamInput$StreamName": "<p>The name of the stream.</p>",
362
- "MergeShardsInput$StreamName": "<p>The name of the stream for the merge.</p>",
363
- "PutRecordInput$StreamName": "<p>The name of the stream to put the data record into.</p>",
364
- "PutRecordsInput$StreamName": "<p>The stream name associated with the request.</p>",
365
- "RemoveTagsFromStreamInput$StreamName": "<p>The name of the stream.</p>",
366
- "SplitShardInput$StreamName": "<p>The name of the stream for the shard split.</p>",
367
- "StreamDescription$StreamName": "<p>The name of the stream being described.</p>",
368
- "StreamNameList$member": null
369
- }
370
- },
371
- "StreamNameList": {
372
- "base": null,
373
- "refs": {
374
- "ListStreamsOutput$StreamNames": "<p>The names of the streams that are associated with the AWS account making the <code>ListStreams</code> request.</p>"
375
- }
376
- },
377
- "StreamStatus": {
378
- "base": null,
379
- "refs": {
380
- "StreamDescription$StreamStatus": "<p>The current status of the stream being described.</p> <p>The stream status is one of the following states:</p> <ul> <li> <code>CREATING</code> - The stream is being created. Amazon Kinesis immediately returns and sets <code>StreamStatus</code> to <code>CREATING</code>.</li> <li> <code>DELETING</code> - The stream is being deleted. The specified stream is in the <code>DELETING</code> state until Amazon Kinesis completes the deletion.</li> <li> <code>ACTIVE</code> - The stream exists and is ready for read and write operations or deletion. You should perform read and write operations only on an <code>ACTIVE</code> stream.</li> <li> <code>UPDATING</code> - Shards in the stream are being merged or split. Read and write operations continue to work while the stream is in the <code>UPDATING</code> state.</li> </ul>"
381
- }
382
- },
383
- "Tag": {
384
- "base": "<p>Metadata assigned to the stream, consisting of a key-value pair.</p>",
385
- "refs": {
386
- "TagList$member": null
387
- }
388
- },
389
- "TagKey": {
390
- "base": null,
391
- "refs": {
392
- "ListTagsForStreamInput$ExclusiveStartTagKey": "<p>The key to use as the starting point for the list of tags. If this parameter is set, <code>ListTagsForStream</code> gets all tags that occur after <code>ExclusiveStartTagKey</code>. </p>",
393
- "Tag$Key": "<p>A unique identifier for the tag. Maximum length: 128 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @</p>",
394
- "TagKeyList$member": null,
395
- "TagMap$key": null
396
- }
397
- },
398
- "TagKeyList": {
399
- "base": null,
400
- "refs": {
401
- "RemoveTagsFromStreamInput$TagKeys": "<p>A list of tag keys. Each corresponding tag is removed from the stream.</p>"
402
- }
403
- },
404
- "TagList": {
405
- "base": null,
406
- "refs": {
407
- "ListTagsForStreamOutput$Tags": "<p>A list of tags associated with <code>StreamName</code>, starting with the first tag after <code>ExclusiveStartTagKey</code> and up to the specified <code>Limit</code>. </p>"
408
- }
409
- },
410
- "TagMap": {
411
- "base": null,
412
- "refs": {
413
- "AddTagsToStreamInput$Tags": "<p>The set of key-value pairs to use to create the tags.</p>"
414
- }
415
- },
416
- "TagValue": {
417
- "base": null,
418
- "refs": {
419
- "Tag$Value": "<p>An optional string, typically used to describe or define the tag. Maximum length: 256 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @</p>",
420
- "TagMap$value": null
421
- }
422
- }
423
- }
424
- }