aws-sdk-chimesdkmeetings 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9315723015fee5606be455a2aa3e7bf22dbcc3e35140e383c151b6107d4e6031
4
- data.tar.gz: 52df61ef13c7ca3e22d09b1b297b95701d510dfe8d42d6ac513302850a19fd3e
3
+ metadata.gz: 1922f313af4e23175e2fc4da9339d75bb5358ab8ac3b9fee1980af3443c709d5
4
+ data.tar.gz: 2cc4ec2ba8d24d1a97c047ab0230216183ce326f43b50dec5ab910b4d05a8e2f
5
5
  SHA512:
6
- metadata.gz: ac0cc9b1476b90a7389186d81e43f76178b70bbd69b29316051f8c1cc37dcb116616c5cc40ec39fdd679e392d078d757e29fb626b906e925e691c618a43a0bc5
7
- data.tar.gz: c33d27a538d3a7cf5f544db81bbfcb1c0465e460a4300a84ce916a3cf8623a062b9587eadfb6dda8027a308de6133a8a9c07356cdfe3ed9b19ef89f9144efbb8
6
+ metadata.gz: aa7c7390f6648e2a0e202b6c6849d7754cea290c5d9f8104fad1517ed7fa6e50b9e6e04829f733db1379269bf6d03ff1f33b665bba0ee44ec06eecf730019df9
7
+ data.tar.gz: a41e8fbd16b63b8db1e81a29539994cd6b54dc656719762a7bcad74ee6d9a2fb9a9d3fb5fd2e0b6d7109b6b04e32d477a0f859c78d6f9649bdb14ed368d9119b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.15.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.16.0
@@ -1357,7 +1357,7 @@ module Aws::ChimeSDKMeetings
1357
1357
  params: params,
1358
1358
  config: config)
1359
1359
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
1360
- context[:gem_version] = '1.15.0'
1360
+ context[:gem_version] = '1.16.0'
1361
1361
  Seahorse::Client::Request.new(handlers, context)
1362
1362
  end
1363
1363
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ChimeSDKMeetings
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://meetings-chime-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://meetings-chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://meetings-chime.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://meetings-chime.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL21lZXRpbmdzLWNoaW1lLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
88
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21l
89
- ZXRpbmdzLWNoaW1lLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
90
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
91
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
92
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
93
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
94
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
95
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
96
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
97
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
98
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
99
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
100
- dHRwczovL21lZXRpbmdzLWNoaW1lLntSZWdpb259LntQYXJ0aXRpb25SZXN1
101
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
102
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
103
- XSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
104
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJy
105
- b3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
106
- dHBzOi8vbWVldGluZ3MtY2hpbWUue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
107
- dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
108
- dHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -102,15 +102,6 @@ module Aws::ChimeSDKMeetings
102
102
  # streams, but only after media renegotiation between the client and
103
103
  # the Amazon Chime back-end server.
104
104
  #
105
- # @note When making an API call, you may pass AttendeeCapabilities
106
- # data as a hash:
107
- #
108
- # {
109
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
110
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
111
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
112
- # }
113
- #
114
105
  # @!attribute [rw] audio
115
106
  # The audio capability assigned to an attendee.
116
107
  # @return [String]
@@ -135,13 +126,6 @@ module Aws::ChimeSDKMeetings
135
126
 
136
127
  # A structure that contains one or more attendee IDs.
137
128
  #
138
- # @note When making an API call, you may pass AttendeeIdItem
139
- # data as a hash:
140
- #
141
- # {
142
- # attendee_id: "GuidString", # required
143
- # }
144
- #
145
129
  # @!attribute [rw] attendee_id
146
130
  # A list of one or more attendee IDs.
147
131
  # @return [String]
@@ -157,13 +141,6 @@ module Aws::ChimeSDKMeetings
157
141
  # An optional category of meeting features that contains audio-specific
158
142
  # configurations, such as operating parameters for Amazon Voice Focus.
159
143
  #
160
- # @note When making an API call, you may pass AudioFeatures
161
- # data as a hash:
162
- #
163
- # {
164
- # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
165
- # }
166
- #
167
144
  # @!attribute [rw] echo_reduction
168
145
  # Makes echo reduction available to clients who connect to the
169
146
  # meeting.
@@ -200,23 +177,6 @@ module Aws::ChimeSDKMeetings
200
177
  include Aws::Structure
201
178
  end
202
179
 
203
- # @note When making an API call, you may pass BatchCreateAttendeeRequest
204
- # data as a hash:
205
- #
206
- # {
207
- # meeting_id: "GuidString", # required
208
- # attendees: [ # required
209
- # {
210
- # external_user_id: "ExternalUserId", # required
211
- # capabilities: {
212
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
213
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
214
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
215
- # },
216
- # },
217
- # ],
218
- # }
219
- #
220
180
  # @!attribute [rw] meeting_id
221
181
  # The Amazon Chime SDK ID of the meeting to which you're adding
222
182
  # attendees.
@@ -254,23 +214,6 @@ module Aws::ChimeSDKMeetings
254
214
  include Aws::Structure
255
215
  end
256
216
 
257
- # @note When making an API call, you may pass BatchUpdateAttendeeCapabilitiesExceptRequest
258
- # data as a hash:
259
- #
260
- # {
261
- # meeting_id: "GuidString", # required
262
- # excluded_attendee_ids: [ # required
263
- # {
264
- # attendee_id: "GuidString", # required
265
- # },
266
- # ],
267
- # capabilities: { # required
268
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
269
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
270
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
271
- # },
272
- # }
273
- #
274
217
  # @!attribute [rw] meeting_id
275
218
  # The ID of the meeting associated with the update request.
276
219
  # @return [String]
@@ -344,19 +287,6 @@ module Aws::ChimeSDKMeetings
344
287
  include Aws::Structure
345
288
  end
346
289
 
347
- # @note When making an API call, you may pass CreateAttendeeRequest
348
- # data as a hash:
349
- #
350
- # {
351
- # meeting_id: "GuidString", # required
352
- # external_user_id: "ExternalUserId", # required
353
- # capabilities: {
354
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
355
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
356
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
357
- # },
358
- # }
359
- #
360
290
  # @!attribute [rw] meeting_id
361
291
  # The unique ID of the meeting.
362
292
  # @return [String]
@@ -411,18 +341,6 @@ module Aws::ChimeSDKMeetings
411
341
  # The Amazon Chime SDK attendee fields to create, used with the
412
342
  # BatchCreateAttendee action.
413
343
  #
414
- # @note When making an API call, you may pass CreateAttendeeRequestItem
415
- # data as a hash:
416
- #
417
- # {
418
- # external_user_id: "ExternalUserId", # required
419
- # capabilities: {
420
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
421
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
422
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
423
- # },
424
- # }
425
- #
426
344
  # @!attribute [rw] external_user_id
427
345
  # The Amazon Chime SDK external user ID. An idempotency token. Links
428
346
  # the attendee to an identity managed by a builder application.
@@ -453,34 +371,6 @@ module Aws::ChimeSDKMeetings
453
371
  include Aws::Structure
454
372
  end
455
373
 
456
- # @note When making an API call, you may pass CreateMeetingRequest
457
- # data as a hash:
458
- #
459
- # {
460
- # client_request_token: "ClientRequestToken", # required
461
- # media_region: "MediaRegion", # required
462
- # meeting_host_id: "ExternalUserId",
463
- # external_meeting_id: "ExternalMeetingId", # required
464
- # notifications_configuration: {
465
- # lambda_function_arn: "Arn",
466
- # sns_topic_arn: "Arn",
467
- # sqs_queue_arn: "Arn",
468
- # },
469
- # meeting_features: {
470
- # audio: {
471
- # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
472
- # },
473
- # },
474
- # primary_meeting_id: "PrimaryMeetingId",
475
- # tenant_ids: ["TenantId"],
476
- # tags: [
477
- # {
478
- # key: "TagKey", # required
479
- # value: "TagValue", # required
480
- # },
481
- # ],
482
- # }
483
- #
484
374
  # @!attribute [rw] client_request_token
485
375
  # The unique identifier for the client request. Use a different token
486
376
  # for different meetings.
@@ -612,44 +502,6 @@ module Aws::ChimeSDKMeetings
612
502
  include Aws::Structure
613
503
  end
614
504
 
615
- # @note When making an API call, you may pass CreateMeetingWithAttendeesRequest
616
- # data as a hash:
617
- #
618
- # {
619
- # client_request_token: "ClientRequestToken", # required
620
- # media_region: "MediaRegion", # required
621
- # meeting_host_id: "ExternalUserId",
622
- # external_meeting_id: "ExternalMeetingId", # required
623
- # meeting_features: {
624
- # audio: {
625
- # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
626
- # },
627
- # },
628
- # notifications_configuration: {
629
- # lambda_function_arn: "Arn",
630
- # sns_topic_arn: "Arn",
631
- # sqs_queue_arn: "Arn",
632
- # },
633
- # attendees: [ # required
634
- # {
635
- # external_user_id: "ExternalUserId", # required
636
- # capabilities: {
637
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
638
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
639
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
640
- # },
641
- # },
642
- # ],
643
- # primary_meeting_id: "PrimaryMeetingId",
644
- # tenant_ids: ["TenantId"],
645
- # tags: [
646
- # {
647
- # key: "TagKey", # required
648
- # value: "TagValue", # required
649
- # },
650
- # ],
651
- # }
652
- #
653
505
  # @!attribute [rw] client_request_token
654
506
  # The unique identifier for the client request. Use a different token
655
507
  # for different meetings.
@@ -749,14 +601,6 @@ module Aws::ChimeSDKMeetings
749
601
  include Aws::Structure
750
602
  end
751
603
 
752
- # @note When making an API call, you may pass DeleteAttendeeRequest
753
- # data as a hash:
754
- #
755
- # {
756
- # meeting_id: "GuidString", # required
757
- # attendee_id: "GuidString", # required
758
- # }
759
- #
760
604
  # @!attribute [rw] meeting_id
761
605
  # The Amazon Chime SDK meeting ID.
762
606
  # @return [String]
@@ -774,13 +618,6 @@ module Aws::ChimeSDKMeetings
774
618
  include Aws::Structure
775
619
  end
776
620
 
777
- # @note When making an API call, you may pass DeleteMeetingRequest
778
- # data as a hash:
779
- #
780
- # {
781
- # meeting_id: "GuidString", # required
782
- # }
783
- #
784
621
  # @!attribute [rw] meeting_id
785
622
  # The Amazon Chime SDK meeting ID.
786
623
  # @return [String]
@@ -795,18 +632,6 @@ module Aws::ChimeSDKMeetings
795
632
 
796
633
  # Settings specific to the Amazon Transcribe Medical engine.
797
634
  #
798
- # @note When making an API call, you may pass EngineTranscribeMedicalSettings
799
- # data as a hash:
800
- #
801
- # {
802
- # language_code: "en-US", # required, accepts en-US
803
- # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
804
- # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
805
- # vocabulary_name: "String",
806
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
807
- # content_identification_type: "PHI", # accepts PHI
808
- # }
809
- #
810
635
  # @!attribute [rw] language_code
811
636
  # The language code specified for the Amazon Transcribe Medical
812
637
  # engine.
@@ -849,26 +674,6 @@ module Aws::ChimeSDKMeetings
849
674
 
850
675
  # Settings specific to the Amazon Transcribe engine.
851
676
  #
852
- # @note When making an API call, you may pass EngineTranscribeSettings
853
- # data as a hash:
854
- #
855
- # {
856
- # language_code: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
857
- # vocabulary_filter_method: "remove", # accepts remove, mask, tag
858
- # vocabulary_filter_name: "String",
859
- # vocabulary_name: "String",
860
- # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
861
- # enable_partial_results_stabilization: false,
862
- # partial_results_stability: "low", # accepts low, medium, high
863
- # content_identification_type: "PII", # accepts PII
864
- # content_redaction_type: "PII", # accepts PII
865
- # pii_entity_types: "TranscribePiiEntityTypes",
866
- # language_model_name: "TranscribeLanguageModelName",
867
- # identify_language: false,
868
- # language_options: "TranscribeLanguageOptions",
869
- # preferred_language: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
870
- # }
871
- #
872
677
  # @!attribute [rw] language_code
873
678
  # The language code specified for the Amazon Transcribe engine.
874
679
  # @return [String]
@@ -992,14 +797,6 @@ module Aws::ChimeSDKMeetings
992
797
  include Aws::Structure
993
798
  end
994
799
 
995
- # @note When making an API call, you may pass GetAttendeeRequest
996
- # data as a hash:
997
- #
998
- # {
999
- # meeting_id: "GuidString", # required
1000
- # attendee_id: "GuidString", # required
1001
- # }
1002
- #
1003
800
  # @!attribute [rw] meeting_id
1004
801
  # The Amazon Chime SDK meeting ID.
1005
802
  # @return [String]
@@ -1029,13 +826,6 @@ module Aws::ChimeSDKMeetings
1029
826
  include Aws::Structure
1030
827
  end
1031
828
 
1032
- # @note When making an API call, you may pass GetMeetingRequest
1033
- # data as a hash:
1034
- #
1035
- # {
1036
- # meeting_id: "GuidString", # required
1037
- # }
1038
- #
1039
829
  # @!attribute [rw] meeting_id
1040
830
  # The Amazon Chime SDK meeting ID.
1041
831
  # @return [String]
@@ -1083,15 +873,6 @@ module Aws::ChimeSDKMeetings
1083
873
  include Aws::Structure
1084
874
  end
1085
875
 
1086
- # @note When making an API call, you may pass ListAttendeesRequest
1087
- # data as a hash:
1088
- #
1089
- # {
1090
- # meeting_id: "GuidString", # required
1091
- # next_token: "String",
1092
- # max_results: 1,
1093
- # }
1094
- #
1095
876
  # @!attribute [rw] meeting_id
1096
877
  # The Amazon Chime SDK meeting ID.
1097
878
  # @return [String]
@@ -1131,13 +912,6 @@ module Aws::ChimeSDKMeetings
1131
912
  include Aws::Structure
1132
913
  end
1133
914
 
1134
- # @note When making an API call, you may pass ListTagsForResourceRequest
1135
- # data as a hash:
1136
- #
1137
- # {
1138
- # resource_arn: "AmazonResourceName", # required
1139
- # }
1140
- #
1141
915
  # @!attribute [rw] resource_arn
1142
916
  # The ARN of the resource.
1143
917
  # @return [String]
@@ -1276,15 +1050,6 @@ module Aws::ChimeSDKMeetings
1276
1050
 
1277
1051
  # The configuration settings of the features available to a meeting.&gt;
1278
1052
  #
1279
- # @note When making an API call, you may pass MeetingFeaturesConfiguration
1280
- # data as a hash:
1281
- #
1282
- # {
1283
- # audio: {
1284
- # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
1285
- # },
1286
- # }
1287
- #
1288
1053
  # @!attribute [rw] audio
1289
1054
  # The configuration settings for the audio features available to a
1290
1055
  # meeting.
@@ -1325,15 +1090,6 @@ module Aws::ChimeSDKMeetings
1325
1090
  # The configuration for resource targets to receive notifications when
1326
1091
  # meeting and attendee events occur.
1327
1092
  #
1328
- # @note When making an API call, you may pass NotificationsConfiguration
1329
- # data as a hash:
1330
- #
1331
- # {
1332
- # lambda_function_arn: "Arn",
1333
- # sns_topic_arn: "Arn",
1334
- # sqs_queue_arn: "Arn",
1335
- # }
1336
- #
1337
1093
  # @!attribute [rw] lambda_function_arn
1338
1094
  # The ARN of the AWS Lambda function in the notifications
1339
1095
  # configuration.
@@ -1434,39 +1190,6 @@ module Aws::ChimeSDKMeetings
1434
1190
  include Aws::Structure
1435
1191
  end
1436
1192
 
1437
- # @note When making an API call, you may pass StartMeetingTranscriptionRequest
1438
- # data as a hash:
1439
- #
1440
- # {
1441
- # meeting_id: "GuidString", # required
1442
- # transcription_configuration: { # required
1443
- # engine_transcribe_settings: {
1444
- # language_code: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
1445
- # vocabulary_filter_method: "remove", # accepts remove, mask, tag
1446
- # vocabulary_filter_name: "String",
1447
- # vocabulary_name: "String",
1448
- # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
1449
- # enable_partial_results_stabilization: false,
1450
- # partial_results_stability: "low", # accepts low, medium, high
1451
- # content_identification_type: "PII", # accepts PII
1452
- # content_redaction_type: "PII", # accepts PII
1453
- # pii_entity_types: "TranscribePiiEntityTypes",
1454
- # language_model_name: "TranscribeLanguageModelName",
1455
- # identify_language: false,
1456
- # language_options: "TranscribeLanguageOptions",
1457
- # preferred_language: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
1458
- # },
1459
- # engine_transcribe_medical_settings: {
1460
- # language_code: "en-US", # required, accepts en-US
1461
- # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
1462
- # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
1463
- # vocabulary_name: "String",
1464
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
1465
- # content_identification_type: "PHI", # accepts PHI
1466
- # },
1467
- # },
1468
- # }
1469
- #
1470
1193
  # @!attribute [rw] meeting_id
1471
1194
  # The unique ID of the meeting being transcribed.
1472
1195
  # @return [String]
@@ -1486,13 +1209,6 @@ module Aws::ChimeSDKMeetings
1486
1209
  include Aws::Structure
1487
1210
  end
1488
1211
 
1489
- # @note When making an API call, you may pass StopMeetingTranscriptionRequest
1490
- # data as a hash:
1491
- #
1492
- # {
1493
- # meeting_id: "GuidString", # required
1494
- # }
1495
- #
1496
1212
  # @!attribute [rw] meeting_id
1497
1213
  # The unique ID of the meeting for which you stop transcription.
1498
1214
  # @return [String]
@@ -1507,14 +1223,6 @@ module Aws::ChimeSDKMeetings
1507
1223
 
1508
1224
  # A key-value pair that you define.
1509
1225
  #
1510
- # @note When making an API call, you may pass Tag
1511
- # data as a hash:
1512
- #
1513
- # {
1514
- # key: "TagKey", # required
1515
- # value: "TagValue", # required
1516
- # }
1517
- #
1518
1226
  # @!attribute [rw] key
1519
1227
  # The tag's key.
1520
1228
  # @return [String]
@@ -1532,19 +1240,6 @@ module Aws::ChimeSDKMeetings
1532
1240
  include Aws::Structure
1533
1241
  end
1534
1242
 
1535
- # @note When making an API call, you may pass TagResourceRequest
1536
- # data as a hash:
1537
- #
1538
- # {
1539
- # resource_arn: "AmazonResourceName", # required
1540
- # tags: [ # required
1541
- # {
1542
- # key: "TagKey", # required
1543
- # value: "TagValue", # required
1544
- # },
1545
- # ],
1546
- # }
1547
- #
1548
1243
  # @!attribute [rw] resource_arn
1549
1244
  # The ARN of the resource.
1550
1245
  # @return [String]
@@ -1619,36 +1314,6 @@ module Aws::ChimeSDKMeetings
1619
1314
  # contain `EngineTranscribeSettings` or
1620
1315
  # `EngineTranscribeMedicalSettings`.
1621
1316
  #
1622
- # @note When making an API call, you may pass TranscriptionConfiguration
1623
- # data as a hash:
1624
- #
1625
- # {
1626
- # engine_transcribe_settings: {
1627
- # language_code: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
1628
- # vocabulary_filter_method: "remove", # accepts remove, mask, tag
1629
- # vocabulary_filter_name: "String",
1630
- # vocabulary_name: "String",
1631
- # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
1632
- # enable_partial_results_stabilization: false,
1633
- # partial_results_stability: "low", # accepts low, medium, high
1634
- # content_identification_type: "PII", # accepts PII
1635
- # content_redaction_type: "PII", # accepts PII
1636
- # pii_entity_types: "TranscribePiiEntityTypes",
1637
- # language_model_name: "TranscribeLanguageModelName",
1638
- # identify_language: false,
1639
- # language_options: "TranscribeLanguageOptions",
1640
- # preferred_language: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
1641
- # },
1642
- # engine_transcribe_medical_settings: {
1643
- # language_code: "en-US", # required, accepts en-US
1644
- # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
1645
- # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
1646
- # vocabulary_name: "String",
1647
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
1648
- # content_identification_type: "PHI", # accepts PHI
1649
- # },
1650
- # }
1651
- #
1652
1317
  # @!attribute [rw] engine_transcribe_settings
1653
1318
  # The transcription configuration settings passed to Amazon
1654
1319
  # Transcribe.
@@ -1715,14 +1380,6 @@ module Aws::ChimeSDKMeetings
1715
1380
  include Aws::Structure
1716
1381
  end
1717
1382
 
1718
- # @note When making an API call, you may pass UntagResourceRequest
1719
- # data as a hash:
1720
- #
1721
- # {
1722
- # resource_arn: "AmazonResourceName", # required
1723
- # tag_keys: ["TagKey"], # required
1724
- # }
1725
- #
1726
1383
  # @!attribute [rw] resource_arn
1727
1384
  # The ARN of the resource that you're removing tags from.
1728
1385
  # @return [String]
@@ -1744,19 +1401,6 @@ module Aws::ChimeSDKMeetings
1744
1401
  #
1745
1402
  class UntagResourceResponse < Aws::EmptyStructure; end
1746
1403
 
1747
- # @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
1748
- # data as a hash:
1749
- #
1750
- # {
1751
- # meeting_id: "GuidString", # required
1752
- # attendee_id: "GuidString", # required
1753
- # capabilities: { # required
1754
- # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1755
- # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1756
- # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1757
- # },
1758
- # }
1759
- #
1760
1404
  # @!attribute [rw] meeting_id
1761
1405
  # The ID of the meeting associated with the update request.
1762
1406
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmeetings/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMeetings
54
54
 
55
- GEM_VERSION = '1.15.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmeetings
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.0
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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core