aws-sdk-chime 1.66.0 → 1.67.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d64971e39af3500b92b9e409a87c1a4ff76e769a8f1d0c15b94ee8c457bc5c5
4
- data.tar.gz: 9e12c7760a505e610977d3e0cf47ccb06da7ae8b91bcce929e3265e06c3fd5a8
3
+ metadata.gz: 753e90b5451f5d7a17e674d93c0d99c2475d5343f163cdeea64cdfefaedd9248
4
+ data.tar.gz: 0ad0d4db1aa92f019756305d2f20d0cec89ee1faa7cc563f4aebe52035ad1893
5
5
  SHA512:
6
- metadata.gz: 5cb54122e8191ce224b6be5b0279fdaa18f07a138a5f46c34af82745317631f221aef41504722192dac42c8546055a1c950c74dc0aa468e981388e16024bedd4
7
- data.tar.gz: c8dc7db12e45f813dc649c41791b8bbc51086483639efc2a3ddeca1c3b339150c46e3e705c778140922b32beafbfd4b46af990c28c1e3789d495bae193431cb4
6
+ metadata.gz: a6d7be818022f7f943813972f952ad02ce74b3b0af9ebc39ba9b4b0fdc3a4f001579f694ce94a5af8fb758f37fb8844c9e0919a8c1ad2b4bfbd46d66e962b445
7
+ data.tar.gz: cef5dd0a6b103ab87781cf90d8af4756495d65f79223dd47b9f5d444548eff40d611bea47c9a4a50f5e1c966e89db6dff16f57b361661a2c8c0d73b9dc7b3fc7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2022-03-11)
5
+ ------------------
6
+
7
+ * Feature - Chime VoiceConnector Logging APIs will now support MediaMetricLogs. Also CreateMeetingDialOut now returns AccessDeniedException.
8
+
4
9
  1.66.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -954,7 +954,7 @@ module Aws::Chime
954
954
  # not need to pass this option.**
955
955
  #
956
956
  # @option params [Array<Types::Tag>] :tags
957
- # Tags assigned to the `AppInstanceUser`.
957
+ # Tags assigned to the `AppInstance`.
958
958
  #
959
959
  # @return [Types::CreateAppInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
960
960
  #
@@ -4582,6 +4582,7 @@ module Aws::Chime
4582
4582
  # @example Response structure
4583
4583
  #
4584
4584
  # resp.logging_configuration.enable_sip_logs #=> Boolean
4585
+ # resp.logging_configuration.enable_media_metric_logs #=> Boolean
4585
4586
  #
4586
4587
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorLoggingConfiguration AWS API Documentation
4587
4588
  #
@@ -6649,12 +6650,14 @@ module Aws::Chime
6649
6650
  # voice_connector_id: "NonEmptyString", # required
6650
6651
  # logging_configuration: { # required
6651
6652
  # enable_sip_logs: false,
6653
+ # enable_media_metric_logs: false,
6652
6654
  # },
6653
6655
  # })
6654
6656
  #
6655
6657
  # @example Response structure
6656
6658
  #
6657
6659
  # resp.logging_configuration.enable_sip_logs #=> Boolean
6660
+ # resp.logging_configuration.enable_media_metric_logs #=> Boolean
6658
6661
  #
6659
6662
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorLoggingConfiguration AWS API Documentation
6660
6663
  #
@@ -8200,9 +8203,9 @@ module Aws::Chime
8200
8203
  req.send_request(options)
8201
8204
  end
8202
8205
 
8203
- # Allows you to trigger a Lambda function at any time while a call is
8204
- # active, and replace the current actions with new actions returned by
8205
- # the invocation.
8206
+ # Invokes the AWS Lambda function associated with the SIP media
8207
+ # application and transaction ID in an update request. The Lambda
8208
+ # function can then return a new set of actions.
8206
8209
  #
8207
8210
  # @option params [required, String] :sip_media_application_id
8208
8211
  # The ID of the SIP media application handling the call.
@@ -8502,7 +8505,7 @@ module Aws::Chime
8502
8505
  params: params,
8503
8506
  config: config)
8504
8507
  context[:gem_name] = 'aws-sdk-chime'
8505
- context[:gem_version] = '1.66.0'
8508
+ context[:gem_version] = '1.67.0'
8506
8509
  Seahorse::Client::Request.new(handlers, context)
8507
8510
  end
8508
8511
 
@@ -1969,6 +1969,7 @@ module Aws::Chime
1969
1969
  ListVoiceConnectorsResponse.struct_class = Types::ListVoiceConnectorsResponse
1970
1970
 
1971
1971
  LoggingConfiguration.add_member(:enable_sip_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableSIPLogs"))
1972
+ LoggingConfiguration.add_member(:enable_media_metric_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableMediaMetricLogs"))
1972
1973
  LoggingConfiguration.struct_class = Types::LoggingConfiguration
1973
1974
 
1974
1975
  LogoutUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
@@ -3168,6 +3169,7 @@ module Aws::Chime
3168
3169
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3169
3170
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3170
3171
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3172
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3171
3173
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3172
3174
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3173
3175
  end)
@@ -1777,7 +1777,7 @@ module Aws::Chime
1777
1777
  # @return [String]
1778
1778
  #
1779
1779
  # @!attribute [rw] tags
1780
- # Tags assigned to the `AppInstanceUser`.
1780
+ # Tags assigned to the `AppInstance`.
1781
1781
  # @return [Array<Types::Tag>]
1782
1782
  #
1783
1783
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAppInstanceRequest AWS API Documentation
@@ -4449,8 +4449,8 @@ module Aws::Chime
4449
4449
  # @return [String]
4450
4450
  #
4451
4451
  # @!attribute [rw] content_identification_type
4452
- # Set this field to `PII` to identify personal health information in
4453
- # the transcription output.
4452
+ # Set this field to `PII` to identify personally identifiable
4453
+ # information in the transcription output.
4454
4454
  # @return [String]
4455
4455
  #
4456
4456
  # @!attribute [rw] content_redaction_type
@@ -7192,17 +7192,23 @@ module Aws::Chime
7192
7192
  #
7193
7193
  # {
7194
7194
  # enable_sip_logs: false,
7195
+ # enable_media_metric_logs: false,
7195
7196
  # }
7196
7197
  #
7197
7198
  # @!attribute [rw] enable_sip_logs
7198
- # When true, enables SIP message logs for sending to Amazon CloudWatch
7199
- # Logs.
7199
+ # Boolean that enables SIP message logs to CloudWatch logs.
7200
+ # @return [Boolean]
7201
+ #
7202
+ # @!attribute [rw] enable_media_metric_logs
7203
+ # Boolean that enables logging of detailed media metrics for Voice
7204
+ # Connectors to CloudWatch logs.
7200
7205
  # @return [Boolean]
7201
7206
  #
7202
7207
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/LoggingConfiguration AWS API Documentation
7203
7208
  #
7204
7209
  class LoggingConfiguration < Struct.new(
7205
- :enable_sip_logs)
7210
+ :enable_sip_logs,
7211
+ :enable_media_metric_logs)
7206
7212
  SENSITIVE = []
7207
7213
  include Aws::Structure
7208
7214
  end
@@ -7328,7 +7334,7 @@ module Aws::Chime
7328
7334
  # @return [String]
7329
7335
  #
7330
7336
  # @!attribute [rw] event_ingestion_url
7331
- # The event ingestion URL.
7337
+ # The event ingestion URL to which you send client meeting events.
7332
7338
  # @return [String]
7333
7339
  #
7334
7340
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8285,6 +8291,7 @@ module Aws::Chime
8285
8291
  # voice_connector_id: "NonEmptyString", # required
8286
8292
  # logging_configuration: { # required
8287
8293
  # enable_sip_logs: false,
8294
+ # enable_media_metric_logs: false,
8288
8295
  # },
8289
8296
  # }
8290
8297
  #
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.66.0'
51
+ GEM_VERSION = '1.67.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.67.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-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core