-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.d.tl
283 lines (281 loc) · 8.86 KB
/
client.d.tl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
local http = require('./runtime/http')
local sigv4 = require('./runtime/sigv4')
local record module
record GetQueueAttributesOutput
Attributes: {string: string}
end
record CancelMessageMoveTaskOutput
ApproximateNumberOfMessagesMoved: number
end
record Message
MessageId: string
ReceiptHandle: string
MD5OfBody: string
Body: string
Attributes: {string: string}
MD5OfMessageAttributes: string
MessageAttributes: {string: MessageAttributeValue}
end
record DeleteMessageBatchOutput
Successful: {DeleteMessageBatchResultEntry}
Failed: {BatchResultErrorEntry}
end
record DeleteQueueOutput
end
record ListQueuesOutput
QueueUrls: {string}
NextToken: string
end
record ListQueueTagsInput
QueueUrl: string
end
record UntagQueueInput
QueueUrl: string
TagKeys: {string}
end
record DeleteMessageBatchResultEntry
Id: string
end
record CreateQueueInput
QueueName: string
Attributes: {string: string}
tags: {string: string}
end
record TagQueueInput
QueueUrl: string
Tags: {string: string}
end
record ChangeMessageVisibilityOutput
end
record UntagQueueOutput
end
record TagQueueOutput
end
record GetQueueUrlInput
QueueName: string
QueueOwnerAWSAccountId: string
end
record SetQueueAttributesInput
QueueUrl: string
Attributes: {string: string}
end
record StartMessageMoveTaskOutput
TaskHandle: string
end
record ListDeadLetterSourceQueuesOutput
queueUrls: {string}
NextToken: string
end
record ListQueueTagsOutput
Tags: {string: string}
end
record DeleteMessageInput
QueueUrl: string
ReceiptHandle: string
end
record ListQueuesInput
QueueNamePrefix: string
NextToken: string
MaxResults: number
end
record SetQueueAttributesOutput
end
record ListMessageMoveTasksResultEntry
TaskHandle: string
Status: string
SourceArn: string
DestinationArn: string
MaxNumberOfMessagesPerSecond: number
ApproximateNumberOfMessagesMoved: number
ApproximateNumberOfMessagesToMove: number
FailureReason: string
StartedTimestamp: number
end
record StartMessageMoveTaskInput
SourceArn: string
DestinationArn: string
MaxNumberOfMessagesPerSecond: number
end
record ChangeMessageVisibilityBatchResultEntry
Id: string
end
record PurgeQueueOutput
end
record DeleteMessageOutput
end
record SendMessageBatchRequestEntry
Id: string
MessageBody: string
DelaySeconds: number
MessageAttributes: {string: MessageAttributeValue}
MessageSystemAttributes: {string: MessageSystemAttributeValue}
MessageDeduplicationId: string
MessageGroupId: string
end
record ChangeMessageVisibilityBatchRequestEntry
Id: string
ReceiptHandle: string
VisibilityTimeout: number
end
record CreateQueueOutput
QueueUrl: string
end
record ListMessageMoveTasksOutput
Results: {ListMessageMoveTasksResultEntry}
end
record CancelMessageMoveTaskInput
TaskHandle: string
end
record DeleteMessageBatchInput
QueueUrl: string
Entries: {DeleteMessageBatchRequestEntry}
end
record PurgeQueueInput
QueueUrl: string
end
record SendMessageOutput
MD5OfMessageBody: string
MD5OfMessageAttributes: string
MD5OfMessageSystemAttributes: string
MessageId: string
SequenceNumber: string
end
record ListMessageMoveTasksInput
SourceArn: string
MaxResults: number
end
record RemovePermissionOutput
end
record AddPermissionInput
QueueUrl: string
Label: string
AWSAccountIds: {string}
Actions: {string}
end
record SendMessageBatchResultEntry
Id: string
MessageId: string
MD5OfMessageBody: string
MD5OfMessageAttributes: string
MD5OfMessageSystemAttributes: string
SequenceNumber: string
end
record ChangeMessageVisibilityBatchInput
QueueUrl: string
Entries: {ChangeMessageVisibilityBatchRequestEntry}
end
record SendMessageBatchInput
QueueUrl: string
Entries: {SendMessageBatchRequestEntry}
end
record BatchResultErrorEntry
Id: string
SenderFault: any
Code: string
Message: string
end
record GetQueueAttributesInput
QueueUrl: string
AttributeNames: {string}
end
record AddPermissionOutput
end
record SendMessageInput
QueueUrl: string
MessageBody: string
DelaySeconds: number
MessageAttributes: {string: MessageAttributeValue}
MessageSystemAttributes: {string: MessageSystemAttributeValue}
MessageDeduplicationId: string
MessageGroupId: string
end
record GetQueueUrlOutput
QueueUrl: string
end
record RemovePermissionInput
QueueUrl: string
Label: string
end
record ListDeadLetterSourceQueuesInput
QueueUrl: string
NextToken: string
MaxResults: number
end
record MessageSystemAttributeValue
StringValue: string
BinaryValue: any
StringListValues: {string}
BinaryListValues: {any}
DataType: string
end
record DeleteQueueInput
QueueUrl: string
end
record SendMessageBatchOutput
Successful: {SendMessageBatchResultEntry}
Failed: {BatchResultErrorEntry}
end
record MessageAttributeValue
StringValue: string
BinaryValue: any
StringListValues: {string}
BinaryListValues: {any}
DataType: string
end
record ChangeMessageVisibilityInput
QueueUrl: string
ReceiptHandle: string
VisibilityTimeout: number
end
record ReceiveMessageOutput
Messages: {Message}
end
record ChangeMessageVisibilityBatchOutput
Successful: {ChangeMessageVisibilityBatchResultEntry}
Failed: {BatchResultErrorEntry}
end
record DeleteMessageBatchRequestEntry
Id: string
ReceiptHandle: string
end
record ReceiveMessageInput
QueueUrl: string
AttributeNames: {string}
MessageSystemAttributeNames: {string}
MessageAttributeNames: {string}
MaxNumberOfMessages: number
VisibilityTimeout: number
WaitTimeSeconds: number
ReceiveRequestAttemptId: string
end
record Config
Region: string
Credentials: sigv4.Credentials
HTTPClient: http.Client
end
New: function(config: Config): module
AddPermission: function(self, input: AddPermissionInput): AddPermissionOutput
CancelMessageMoveTask: function(self, input: CancelMessageMoveTaskInput): CancelMessageMoveTaskOutput
ChangeMessageVisibility: function(self, input: ChangeMessageVisibilityInput): ChangeMessageVisibilityOutput
ChangeMessageVisibilityBatch: function(self, input: ChangeMessageVisibilityBatchInput): ChangeMessageVisibilityBatchOutput
CreateQueue: function(self, input: CreateQueueInput): CreateQueueOutput
DeleteMessage: function(self, input: DeleteMessageInput): DeleteMessageOutput
DeleteMessageBatch: function(self, input: DeleteMessageBatchInput): DeleteMessageBatchOutput
DeleteQueue: function(self, input: DeleteQueueInput): DeleteQueueOutput
GetQueueAttributes: function(self, input: GetQueueAttributesInput): GetQueueAttributesOutput
GetQueueUrl: function(self, input: GetQueueUrlInput): GetQueueUrlOutput
ListDeadLetterSourceQueues: function(self, input: ListDeadLetterSourceQueuesInput): ListDeadLetterSourceQueuesOutput
ListMessageMoveTasks: function(self, input: ListMessageMoveTasksInput): ListMessageMoveTasksOutput
ListQueues: function(self, input: ListQueuesInput): ListQueuesOutput
ListQueueTags: function(self, input: ListQueueTagsInput): ListQueueTagsOutput
PurgeQueue: function(self, input: PurgeQueueInput): PurgeQueueOutput
ReceiveMessage: function(self, input: ReceiveMessageInput): ReceiveMessageOutput
RemovePermission: function(self, input: RemovePermissionInput): RemovePermissionOutput
SendMessage: function(self, input: SendMessageInput): SendMessageOutput
SendMessageBatch: function(self, input: SendMessageBatchInput): SendMessageBatchOutput
SetQueueAttributes: function(self, input: SetQueueAttributesInput): SetQueueAttributesOutput
StartMessageMoveTask: function(self, input: StartMessageMoveTaskInput): StartMessageMoveTaskOutput
TagQueue: function(self, input: TagQueueInput): TagQueueOutput
UntagQueue: function(self, input: UntagQueueInput): UntagQueueOutput
end
return module