aws-sdk-chimesdkmeetings 1.14.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: e992842bfeb6cb18ec300454d59bde082963a88e72cea446790726a2258d4b65
4
- data.tar.gz: 3c68caf9343b549645fb664c5652968012e7bc0e5d9e86205f9bc9f54a028d38
3
+ metadata.gz: 1922f313af4e23175e2fc4da9339d75bb5358ab8ac3b9fee1980af3443c709d5
4
+ data.tar.gz: 2cc4ec2ba8d24d1a97c047ab0230216183ce326f43b50dec5ab910b4d05a8e2f
5
5
  SHA512:
6
- metadata.gz: 9db645600c663202d892b885eabebeab677a8312b69176bcf84f9eaa63e73b4d5aa72baba9801b1535e5636abbaa47bd365939b4ff024f343234583b4a567a1f
7
- data.tar.gz: a72693dbefa48a1f3e915d83265e0b1d7e5a17276ef829b6c24b2a1b7b176ad1500f3d6f3db4d6405b8ccd13642e556711275f5ded07232df0d86e91936a631f
6
+ metadata.gz: aa7c7390f6648e2a0e202b6c6849d7754cea290c5d9f8104fad1517ed7fa6e50b9e6e04829f733db1379269bf6d03ff1f33b665bba0ee44ec06eecf730019df9
7
+ data.tar.gz: a41e8fbd16b63b8db1e81a29539994cd6b54dc656719762a7bcad74ee6d9a2fb9a9d3fb5fd2e0b6d7109b6b04e32d477a0f859c78d6f9649bdb14ed368d9119b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
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
+
11
+ 1.15.0 (2022-10-25)
12
+ ------------------
13
+
14
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
15
+
4
16
  1.14.0 (2022-08-04)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
- require 'aws-sdk-core/plugins/signature_v4.rb'
33
+ require 'aws-sdk-core/plugins/sign.rb'
34
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
35
35
 
36
36
  Aws::Plugins::GlobalConfiguration.add_identifier(:chimesdkmeetings)
@@ -79,8 +79,9 @@ module Aws::ChimeSDKMeetings
79
79
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
80
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
81
  add_plugin(Aws::Plugins::RecursionDetection)
82
- add_plugin(Aws::Plugins::SignatureV4)
82
+ add_plugin(Aws::Plugins::Sign)
83
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
84
+ add_plugin(Aws::ChimeSDKMeetings::Plugins::Endpoints)
84
85
 
85
86
  # @overload initialize(options)
86
87
  # @param [Hash] options
@@ -287,6 +288,19 @@ module Aws::ChimeSDKMeetings
287
288
  # ** Please note ** When response stubbing is enabled, no HTTP
288
289
  # requests are made, and retries are disabled.
289
290
  #
291
+ # @option options [Aws::TokenProvider] :token_provider
292
+ # A Bearer Token Provider. This can be an instance of any one of the
293
+ # following classes:
294
+ #
295
+ # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
296
+ # tokens.
297
+ #
298
+ # * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
299
+ # access token generated from `aws login`.
300
+ #
301
+ # When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
302
+ # will be used to search for tokens configured for your profile in shared configuration files.
303
+ #
290
304
  # @option options [Boolean] :use_dualstack_endpoint
291
305
  # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
306
  # will be used if available.
@@ -300,6 +314,9 @@ module Aws::ChimeSDKMeetings
300
314
  # When `true`, request parameters are validated before
301
315
  # sending the request.
302
316
  #
317
+ # @option options [Aws::ChimeSDKMeetings::EndpointProvider] :endpoint_provider
318
+ # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ChimeSDKMeetings::EndpointParameters`
319
+ #
303
320
  # @option options [URI::HTTP,String] :http_proxy A proxy to send
304
321
  # requests through. Formatted like 'http://proxy.com:123'.
305
322
  #
@@ -1340,7 +1357,7 @@ module Aws::ChimeSDKMeetings
1340
1357
  params: params,
1341
1358
  config: config)
1342
1359
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
1343
- context[:gem_version] = '1.14.0'
1360
+ context[:gem_version] = '1.16.0'
1344
1361
  Seahorse::Client::Request.new(handlers, context)
1345
1362
  end
1346
1363
 
@@ -0,0 +1,66 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::ChimeSDKMeetings
11
+ # Endpoint parameters used to influence endpoints per request.
12
+ #
13
+ # @!attribute region
14
+ # The AWS region used to dispatch the request.
15
+ #
16
+ # @return [String]
17
+ #
18
+ # @!attribute use_dual_stack
19
+ # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
+ #
21
+ # @return [Boolean]
22
+ #
23
+ # @!attribute use_fips
24
+ # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
+ #
26
+ # @return [Boolean]
27
+ #
28
+ # @!attribute endpoint
29
+ # Override the endpoint used to send this request
30
+ #
31
+ # @return [String]
32
+ #
33
+ EndpointParameters = Struct.new(
34
+ :region,
35
+ :use_dual_stack,
36
+ :use_fips,
37
+ :endpoint,
38
+ ) do
39
+ include Aws::Structure
40
+
41
+ # @api private
42
+ class << self
43
+ PARAM_MAP = {
44
+ 'Region' => :region,
45
+ 'UseDualStack' => :use_dual_stack,
46
+ 'UseFIPS' => :use_fips,
47
+ 'Endpoint' => :endpoint,
48
+ }.freeze
49
+ end
50
+
51
+ def initialize(options = {})
52
+ self[:region] = options[:region]
53
+ self[:use_dual_stack] = options[:use_dual_stack]
54
+ self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
+ if self[:use_dual_stack].nil?
56
+ raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
+ end
58
+ self[:use_fips] = options[:use_fips]
59
+ self[:use_fips] = false if self[:use_fips].nil?
60
+ if self[:use_fips].nil?
61
+ raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
+ end
63
+ self[:endpoint] = options[:endpoint]
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::ChimeSDKMeetings
11
+ class EndpointProvider
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: {})
46
+ end
47
+ raise ArgumentError, 'No endpoint could be resolved'
48
+
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,239 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::ChimeSDKMeetings
12
+ module Endpoints
13
+
14
+ class BatchCreateAttendee
15
+ def self.build(context)
16
+ unless context.config.regional_endpoint
17
+ endpoint = context.config.endpoint.to_s
18
+ end
19
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
20
+ region: context.config.region,
21
+ use_dual_stack: context.config.use_dualstack_endpoint,
22
+ use_fips: context.config.use_fips_endpoint,
23
+ endpoint: endpoint,
24
+ )
25
+ end
26
+ end
27
+
28
+ class BatchUpdateAttendeeCapabilitiesExcept
29
+ def self.build(context)
30
+ unless context.config.regional_endpoint
31
+ endpoint = context.config.endpoint.to_s
32
+ end
33
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
34
+ region: context.config.region,
35
+ use_dual_stack: context.config.use_dualstack_endpoint,
36
+ use_fips: context.config.use_fips_endpoint,
37
+ endpoint: endpoint,
38
+ )
39
+ end
40
+ end
41
+
42
+ class CreateAttendee
43
+ def self.build(context)
44
+ unless context.config.regional_endpoint
45
+ endpoint = context.config.endpoint.to_s
46
+ end
47
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
48
+ region: context.config.region,
49
+ use_dual_stack: context.config.use_dualstack_endpoint,
50
+ use_fips: context.config.use_fips_endpoint,
51
+ endpoint: endpoint,
52
+ )
53
+ end
54
+ end
55
+
56
+ class CreateMeeting
57
+ def self.build(context)
58
+ unless context.config.regional_endpoint
59
+ endpoint = context.config.endpoint.to_s
60
+ end
61
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
62
+ region: context.config.region,
63
+ use_dual_stack: context.config.use_dualstack_endpoint,
64
+ use_fips: context.config.use_fips_endpoint,
65
+ endpoint: endpoint,
66
+ )
67
+ end
68
+ end
69
+
70
+ class CreateMeetingWithAttendees
71
+ def self.build(context)
72
+ unless context.config.regional_endpoint
73
+ endpoint = context.config.endpoint.to_s
74
+ end
75
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
76
+ region: context.config.region,
77
+ use_dual_stack: context.config.use_dualstack_endpoint,
78
+ use_fips: context.config.use_fips_endpoint,
79
+ endpoint: endpoint,
80
+ )
81
+ end
82
+ end
83
+
84
+ class DeleteAttendee
85
+ def self.build(context)
86
+ unless context.config.regional_endpoint
87
+ endpoint = context.config.endpoint.to_s
88
+ end
89
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
90
+ region: context.config.region,
91
+ use_dual_stack: context.config.use_dualstack_endpoint,
92
+ use_fips: context.config.use_fips_endpoint,
93
+ endpoint: endpoint,
94
+ )
95
+ end
96
+ end
97
+
98
+ class DeleteMeeting
99
+ def self.build(context)
100
+ unless context.config.regional_endpoint
101
+ endpoint = context.config.endpoint.to_s
102
+ end
103
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
104
+ region: context.config.region,
105
+ use_dual_stack: context.config.use_dualstack_endpoint,
106
+ use_fips: context.config.use_fips_endpoint,
107
+ endpoint: endpoint,
108
+ )
109
+ end
110
+ end
111
+
112
+ class GetAttendee
113
+ def self.build(context)
114
+ unless context.config.regional_endpoint
115
+ endpoint = context.config.endpoint.to_s
116
+ end
117
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
118
+ region: context.config.region,
119
+ use_dual_stack: context.config.use_dualstack_endpoint,
120
+ use_fips: context.config.use_fips_endpoint,
121
+ endpoint: endpoint,
122
+ )
123
+ end
124
+ end
125
+
126
+ class GetMeeting
127
+ def self.build(context)
128
+ unless context.config.regional_endpoint
129
+ endpoint = context.config.endpoint.to_s
130
+ end
131
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
132
+ region: context.config.region,
133
+ use_dual_stack: context.config.use_dualstack_endpoint,
134
+ use_fips: context.config.use_fips_endpoint,
135
+ endpoint: endpoint,
136
+ )
137
+ end
138
+ end
139
+
140
+ class ListAttendees
141
+ def self.build(context)
142
+ unless context.config.regional_endpoint
143
+ endpoint = context.config.endpoint.to_s
144
+ end
145
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
146
+ region: context.config.region,
147
+ use_dual_stack: context.config.use_dualstack_endpoint,
148
+ use_fips: context.config.use_fips_endpoint,
149
+ endpoint: endpoint,
150
+ )
151
+ end
152
+ end
153
+
154
+ class ListTagsForResource
155
+ def self.build(context)
156
+ unless context.config.regional_endpoint
157
+ endpoint = context.config.endpoint.to_s
158
+ end
159
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
160
+ region: context.config.region,
161
+ use_dual_stack: context.config.use_dualstack_endpoint,
162
+ use_fips: context.config.use_fips_endpoint,
163
+ endpoint: endpoint,
164
+ )
165
+ end
166
+ end
167
+
168
+ class StartMeetingTranscription
169
+ def self.build(context)
170
+ unless context.config.regional_endpoint
171
+ endpoint = context.config.endpoint.to_s
172
+ end
173
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
174
+ region: context.config.region,
175
+ use_dual_stack: context.config.use_dualstack_endpoint,
176
+ use_fips: context.config.use_fips_endpoint,
177
+ endpoint: endpoint,
178
+ )
179
+ end
180
+ end
181
+
182
+ class StopMeetingTranscription
183
+ def self.build(context)
184
+ unless context.config.regional_endpoint
185
+ endpoint = context.config.endpoint.to_s
186
+ end
187
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
188
+ region: context.config.region,
189
+ use_dual_stack: context.config.use_dualstack_endpoint,
190
+ use_fips: context.config.use_fips_endpoint,
191
+ endpoint: endpoint,
192
+ )
193
+ end
194
+ end
195
+
196
+ class TagResource
197
+ def self.build(context)
198
+ unless context.config.regional_endpoint
199
+ endpoint = context.config.endpoint.to_s
200
+ end
201
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
202
+ region: context.config.region,
203
+ use_dual_stack: context.config.use_dualstack_endpoint,
204
+ use_fips: context.config.use_fips_endpoint,
205
+ endpoint: endpoint,
206
+ )
207
+ end
208
+ end
209
+
210
+ class UntagResource
211
+ def self.build(context)
212
+ unless context.config.regional_endpoint
213
+ endpoint = context.config.endpoint.to_s
214
+ end
215
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
216
+ region: context.config.region,
217
+ use_dual_stack: context.config.use_dualstack_endpoint,
218
+ use_fips: context.config.use_fips_endpoint,
219
+ endpoint: endpoint,
220
+ )
221
+ end
222
+ end
223
+
224
+ class UpdateAttendeeCapabilities
225
+ def self.build(context)
226
+ unless context.config.regional_endpoint
227
+ endpoint = context.config.endpoint.to_s
228
+ end
229
+ Aws::ChimeSDKMeetings::EndpointParameters.new(
230
+ region: context.config.region,
231
+ use_dual_stack: context.config.use_dualstack_endpoint,
232
+ use_fips: context.config.use_fips_endpoint,
233
+ endpoint: endpoint,
234
+ )
235
+ end
236
+ end
237
+
238
+ end
239
+ end
@@ -0,0 +1,100 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::ChimeSDKMeetings
12
+ module Plugins
13
+ class Endpoints < Seahorse::Client::Plugin
14
+ option(
15
+ :endpoint_provider,
16
+ doc_type: 'Aws::ChimeSDKMeetings::EndpointProvider',
17
+ docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
+ 'object that responds to `#resolve_endpoint(parameters)` '\
19
+ 'where `parameters` is a Struct similar to '\
20
+ '`Aws::ChimeSDKMeetings::EndpointParameters`'
21
+ ) do |cfg|
22
+ Aws::ChimeSDKMeetings::EndpointProvider.new
23
+ end
24
+
25
+ # @api private
26
+ class Handler < Seahorse::Client::Handler
27
+ def call(context)
28
+ # If endpoint was discovered, do not resolve or apply the endpoint.
29
+ unless context[:discovered_endpoint]
30
+ params = parameters_for_operation(context)
31
+ endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
+
33
+ context.http_request.endpoint = endpoint.url
34
+ apply_endpoint_headers(context, endpoint.headers)
35
+ end
36
+
37
+ context[:endpoint_params] = params
38
+ context[:auth_scheme] =
39
+ Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
+
41
+ @handler.call(context)
42
+ end
43
+
44
+ private
45
+
46
+ def apply_endpoint_headers(context, headers)
47
+ headers.each do |key, values|
48
+ value = values
49
+ .compact
50
+ .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
51
+ .join(',')
52
+
53
+ context.http_request.headers[key] = value
54
+ end
55
+ end
56
+
57
+ def parameters_for_operation(context)
58
+ case context.operation_name
59
+ when :batch_create_attendee
60
+ Aws::ChimeSDKMeetings::Endpoints::BatchCreateAttendee.build(context)
61
+ when :batch_update_attendee_capabilities_except
62
+ Aws::ChimeSDKMeetings::Endpoints::BatchUpdateAttendeeCapabilitiesExcept.build(context)
63
+ when :create_attendee
64
+ Aws::ChimeSDKMeetings::Endpoints::CreateAttendee.build(context)
65
+ when :create_meeting
66
+ Aws::ChimeSDKMeetings::Endpoints::CreateMeeting.build(context)
67
+ when :create_meeting_with_attendees
68
+ Aws::ChimeSDKMeetings::Endpoints::CreateMeetingWithAttendees.build(context)
69
+ when :delete_attendee
70
+ Aws::ChimeSDKMeetings::Endpoints::DeleteAttendee.build(context)
71
+ when :delete_meeting
72
+ Aws::ChimeSDKMeetings::Endpoints::DeleteMeeting.build(context)
73
+ when :get_attendee
74
+ Aws::ChimeSDKMeetings::Endpoints::GetAttendee.build(context)
75
+ when :get_meeting
76
+ Aws::ChimeSDKMeetings::Endpoints::GetMeeting.build(context)
77
+ when :list_attendees
78
+ Aws::ChimeSDKMeetings::Endpoints::ListAttendees.build(context)
79
+ when :list_tags_for_resource
80
+ Aws::ChimeSDKMeetings::Endpoints::ListTagsForResource.build(context)
81
+ when :start_meeting_transcription
82
+ Aws::ChimeSDKMeetings::Endpoints::StartMeetingTranscription.build(context)
83
+ when :stop_meeting_transcription
84
+ Aws::ChimeSDKMeetings::Endpoints::StopMeetingTranscription.build(context)
85
+ when :tag_resource
86
+ Aws::ChimeSDKMeetings::Endpoints::TagResource.build(context)
87
+ when :untag_resource
88
+ Aws::ChimeSDKMeetings::Endpoints::UntagResource.build(context)
89
+ when :update_attendee_capabilities
90
+ Aws::ChimeSDKMeetings::Endpoints::UpdateAttendeeCapabilities.build(context)
91
+ end
92
+ end
93
+ end
94
+
95
+ def add_handlers(handlers, _config)
96
+ handlers.add(Handler, step: :build, priority: 75)
97
+ end
98
+ end
99
+ end
100
+ 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]
@@ -13,9 +13,13 @@ require 'aws-sigv4'
13
13
 
14
14
  require_relative 'aws-sdk-chimesdkmeetings/types'
15
15
  require_relative 'aws-sdk-chimesdkmeetings/client_api'
16
+ require_relative 'aws-sdk-chimesdkmeetings/plugins/endpoints.rb'
16
17
  require_relative 'aws-sdk-chimesdkmeetings/client'
17
18
  require_relative 'aws-sdk-chimesdkmeetings/errors'
18
19
  require_relative 'aws-sdk-chimesdkmeetings/resource'
20
+ require_relative 'aws-sdk-chimesdkmeetings/endpoint_parameters'
21
+ require_relative 'aws-sdk-chimesdkmeetings/endpoint_provider'
22
+ require_relative 'aws-sdk-chimesdkmeetings/endpoints'
19
23
  require_relative 'aws-sdk-chimesdkmeetings/customizations'
20
24
 
21
25
  # This module provides support for Amazon Chime SDK Meetings. This module is available in the
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmeetings/customizations'
48
52
  # @!group service
49
53
  module Aws::ChimeSDKMeetings
50
54
 
51
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.16.0'
52
56
 
53
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.14.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-08-04 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.127.0
22
+ version: 3.165.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.127.0
32
+ version: 3.165.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,11 @@ files:
59
59
  - lib/aws-sdk-chimesdkmeetings/client.rb
60
60
  - lib/aws-sdk-chimesdkmeetings/client_api.rb
61
61
  - lib/aws-sdk-chimesdkmeetings/customizations.rb
62
+ - lib/aws-sdk-chimesdkmeetings/endpoint_parameters.rb
63
+ - lib/aws-sdk-chimesdkmeetings/endpoint_provider.rb
64
+ - lib/aws-sdk-chimesdkmeetings/endpoints.rb
62
65
  - lib/aws-sdk-chimesdkmeetings/errors.rb
66
+ - lib/aws-sdk-chimesdkmeetings/plugins/endpoints.rb
63
67
  - lib/aws-sdk-chimesdkmeetings/resource.rb
64
68
  - lib/aws-sdk-chimesdkmeetings/types.rb
65
69
  homepage: https://github.com/aws/aws-sdk-ruby