aws-sdk-core 2.11.511 → 2.11.512

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -47,6 +47,12 @@
47
47
  "output_token": "NextToken",
48
48
  "limit_key": "MaxResults",
49
49
  "result_key": "Multiplexes"
50
+ },
51
+ "ListInputDevices": {
52
+ "input_token": "NextToken",
53
+ "output_token": "NextToken",
54
+ "limit_key": "MaxResults",
55
+ "result_key": "InputDevices"
50
56
  }
51
57
  }
52
58
  }
@@ -107,6 +107,87 @@
107
107
  }
108
108
  ]
109
109
  },
110
+ "InputAttached": {
111
+ "description": "Wait until an input has been attached",
112
+ "operation": "DescribeInput",
113
+ "delay": 5,
114
+ "maxAttempts": 20,
115
+ "acceptors": [
116
+ {
117
+ "state": "success",
118
+ "matcher": "path",
119
+ "argument": "State",
120
+ "expected": "ATTACHED"
121
+ },
122
+ {
123
+ "state": "retry",
124
+ "matcher": "path",
125
+ "argument": "State",
126
+ "expected": "DETACHED"
127
+ },
128
+ {
129
+ "state": "retry",
130
+ "matcher": "status",
131
+ "expected": 500
132
+ }
133
+ ]
134
+ },
135
+ "InputDetached": {
136
+ "description": "Wait until an input has been detached",
137
+ "operation": "DescribeInput",
138
+ "delay": 5,
139
+ "maxAttempts": 84,
140
+ "acceptors": [
141
+ {
142
+ "state": "success",
143
+ "matcher": "path",
144
+ "argument": "State",
145
+ "expected": "DETACHED"
146
+ },
147
+ {
148
+ "state": "retry",
149
+ "matcher": "path",
150
+ "argument": "State",
151
+ "expected": "CREATING"
152
+ },
153
+ {
154
+ "state": "retry",
155
+ "matcher": "path",
156
+ "argument": "State",
157
+ "expected": "ATTACHED"
158
+ },
159
+ {
160
+ "state": "retry",
161
+ "matcher": "status",
162
+ "expected": 500
163
+ }
164
+ ]
165
+ },
166
+ "InputDeleted": {
167
+ "description": "Wait until an input has been deleted",
168
+ "operation": "DescribeInput",
169
+ "delay": 5,
170
+ "maxAttempts": 20,
171
+ "acceptors": [
172
+ {
173
+ "state": "success",
174
+ "matcher": "path",
175
+ "argument": "State",
176
+ "expected": "DELETED"
177
+ },
178
+ {
179
+ "state": "retry",
180
+ "matcher": "path",
181
+ "argument": "State",
182
+ "expected": "DELETING"
183
+ },
184
+ {
185
+ "state": "retry",
186
+ "matcher": "status",
187
+ "expected": 500
188
+ }
189
+ ]
190
+ },
110
191
  "MultiplexCreated": {
111
192
  "description": "Wait until a multiplex has been created",
112
193
  "operation": "DescribeMultiplex",
@@ -1536,7 +1536,8 @@
1536
1536
  "type":"structure",
1537
1537
  "members":{
1538
1538
  "Status":{"shape":"ComplianceStatus"},
1539
- "RelatedRequirements":{"shape":"RelatedRequirementsList"}
1539
+ "RelatedRequirements":{"shape":"RelatedRequirementsList"},
1540
+ "StatusReasons":{"shape":"StatusReasonsList"}
1540
1541
  }
1541
1542
  },
1542
1543
  "ComplianceStatus":{
@@ -2569,7 +2570,8 @@
2569
2570
  "members":{
2570
2571
  "Product":{"shape":"Double"},
2571
2572
  "Label":{"shape":"SeverityLabel"},
2572
- "Normalized":{"shape":"Integer"}
2573
+ "Normalized":{"shape":"Integer"},
2574
+ "Original":{"shape":"NonEmptyString"}
2573
2575
  }
2574
2576
  },
2575
2577
  "SeverityLabel":{
@@ -2703,6 +2705,18 @@
2703
2705
  "type":"list",
2704
2706
  "member":{"shape":"StandardsSubscription"}
2705
2707
  },
2708
+ "StatusReason":{
2709
+ "type":"structure",
2710
+ "required":["ReasonCode"],
2711
+ "members":{
2712
+ "ReasonCode":{"shape":"NonEmptyString"},
2713
+ "Description":{"shape":"NonEmptyString"}
2714
+ }
2715
+ },
2716
+ "StatusReasonsList":{
2717
+ "type":"list",
2718
+ "member":{"shape":"StatusReason"}
2719
+ },
2706
2720
  "StringFilter":{
2707
2721
  "type":"structure",
2708
2722
  "members":{
@@ -92,7 +92,8 @@
92
92
  "StartTime":{"shape":"Double"},
93
93
  "EndTime":{"shape":"Double"},
94
94
  "Type":{"shape":"ItemType"},
95
- "Content":{"shape":"String"}
95
+ "Content":{"shape":"String"},
96
+ "VocabularyFilterMatch":{"shape":"Boolean"}
96
97
  }
97
98
  },
98
99
  "ItemList":{
@@ -195,7 +196,17 @@
195
196
  "location":"header",
196
197
  "locationName":"x-amzn-transcribe-session-id"
197
198
  },
198
- "AudioStream":{"shape":"AudioStream"}
199
+ "AudioStream":{"shape":"AudioStream"},
200
+ "VocabularyFilterName":{
201
+ "shape":"VocabularyFilterName",
202
+ "location":"header",
203
+ "locationName":"x-amzn-transcribe-vocabulary-filter-name"
204
+ },
205
+ "VocabularyFilterMethod":{
206
+ "shape":"VocabularyFilterMethod",
207
+ "location":"header",
208
+ "locationName":"x-amzn-transcribe-vocabulary-filter-method"
209
+ }
199
210
  },
200
211
  "payload":"AudioStream"
201
212
  },
@@ -232,7 +243,17 @@
232
243
  "location":"header",
233
244
  "locationName":"x-amzn-transcribe-session-id"
234
245
  },
235
- "TranscriptResultStream":{"shape":"TranscriptResultStream"}
246
+ "TranscriptResultStream":{"shape":"TranscriptResultStream"},
247
+ "VocabularyFilterName":{
248
+ "shape":"VocabularyFilterName",
249
+ "location":"header",
250
+ "locationName":"x-amzn-transcribe-vocabulary-filter-name"
251
+ },
252
+ "VocabularyFilterMethod":{
253
+ "shape":"VocabularyFilterMethod",
254
+ "location":"header",
255
+ "locationName":"x-amzn-transcribe-vocabulary-filter-method"
256
+ }
236
257
  },
237
258
  "payload":"TranscriptResultStream"
238
259
  },
@@ -262,6 +283,20 @@
262
283
  },
263
284
  "eventstream":true
264
285
  },
286
+ "VocabularyFilterMethod":{
287
+ "type":"string",
288
+ "enum":[
289
+ "remove",
290
+ "mask",
291
+ "tag"
292
+ ]
293
+ },
294
+ "VocabularyFilterName":{
295
+ "type":"string",
296
+ "max":200,
297
+ "min":1,
298
+ "pattern":"^[0-9a-zA-Z._-]+"
299
+ },
265
300
  "VocabularyName":{
266
301
  "type":"string",
267
302
  "max":200,
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.511'
2
+ VERSION = '2.11.512'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.511
4
+ version: 2.11.512
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-19 00:00:00.000000000 Z
11
+ date: 2020-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath