aws-sdk-chime 1.59.0 → 1.63.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: dae23354d29ff8015443a8b57c81ccafe9f155164616862cabb5ee83371a7c5d
4
- data.tar.gz: cfda055a5ce4a7140ca01b6796baacf71d35510b69197cc0295bf8d916ffa198
3
+ metadata.gz: 5db45817107c09d5df599aab5ccb2af06f8064146a92666e4db58eb1a5fd387f
4
+ data.tar.gz: f4fd7a0cf9b9a12d834071a08b03fa5ad4f502026ba81c7ade2bbfe231bbccd6
5
5
  SHA512:
6
- metadata.gz: aae7fde7a2f2d9259cd71f81dde004751de4a9a5f7811203d67f9b1ffde495b08942023f2cee481d51d407e986e38ffb70e5fe113f99eb2d1a3fbe776c0f91c4
7
- data.tar.gz: b30bde6906ef6f34dcd3bfba41fc37576ccef8b57318edf4cb0ff85ae4575a23b07302f0d871ca9450cec49f1ce9d0e0ebc15d7b98127176d62fe58722e685ab
6
+ metadata.gz: e6bdec220a9e0522d6c4a4c9f3929b5903da01bd04c0c2c800632260c3c1b824697d310b0450dcbc5d2801c0c0bd46afb02edc9a194327388949052e1c4f404e
7
+ data.tar.gz: 925d466c72daf9b7d82748bf3473606bfde4b760edcb3a9b0273f9a8270d0c93beb91d46422cb2116d193e613652623938a90d796175c2a28279d3f8f45ac8d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.62.0 (2021-11-18)
10
+ ------------------
11
+
12
+ * Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
13
+
14
+ 1.61.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.60.0 (2021-10-22)
20
+ ------------------
21
+
22
+ * Feature - Chime VoiceConnector and VoiceConnectorGroup APIs will now return an ARN.
23
+
4
24
  1.59.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.63.0
@@ -119,7 +119,9 @@ module Aws::Chime
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::Chime
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -2224,6 +2235,7 @@ module Aws::Chime
2224
2235
  # resp.voice_connector.require_encryption #=> Boolean
2225
2236
  # resp.voice_connector.created_timestamp #=> Time
2226
2237
  # resp.voice_connector.updated_timestamp #=> Time
2238
+ # resp.voice_connector.voice_connector_arn #=> String
2227
2239
  #
2228
2240
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnector AWS API Documentation
2229
2241
  #
@@ -2274,6 +2286,7 @@ module Aws::Chime
2274
2286
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
2275
2287
  # resp.voice_connector_group.created_timestamp #=> Time
2276
2288
  # resp.voice_connector_group.updated_timestamp #=> Time
2289
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
2277
2290
  #
2278
2291
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnectorGroup AWS API Documentation
2279
2292
  #
@@ -4457,6 +4470,7 @@ module Aws::Chime
4457
4470
  # resp.voice_connector.require_encryption #=> Boolean
4458
4471
  # resp.voice_connector.created_timestamp #=> Time
4459
4472
  # resp.voice_connector.updated_timestamp #=> Time
4473
+ # resp.voice_connector.voice_connector_arn #=> String
4460
4474
  #
4461
4475
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnector AWS API Documentation
4462
4476
  #
@@ -4524,6 +4538,7 @@ module Aws::Chime
4524
4538
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
4525
4539
  # resp.voice_connector_group.created_timestamp #=> Time
4526
4540
  # resp.voice_connector_group.updated_timestamp #=> Time
4541
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
4527
4542
  #
4528
4543
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorGroup AWS API Documentation
4529
4544
  #
@@ -6226,6 +6241,7 @@ module Aws::Chime
6226
6241
  # resp.voice_connector_groups[0].voice_connector_items[0].priority #=> Integer
6227
6242
  # resp.voice_connector_groups[0].created_timestamp #=> Time
6228
6243
  # resp.voice_connector_groups[0].updated_timestamp #=> Time
6244
+ # resp.voice_connector_groups[0].voice_connector_group_arn #=> String
6229
6245
  # resp.next_token #=> String
6230
6246
  #
6231
6247
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectorGroups AWS API Documentation
@@ -6300,6 +6316,7 @@ module Aws::Chime
6300
6316
  # resp.voice_connectors[0].require_encryption #=> Boolean
6301
6317
  # resp.voice_connectors[0].created_timestamp #=> Time
6302
6318
  # resp.voice_connectors[0].updated_timestamp #=> Time
6319
+ # resp.voice_connectors[0].voice_connector_arn #=> String
6303
6320
  # resp.next_token #=> String
6304
6321
  #
6305
6322
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectors AWS API Documentation
@@ -7274,6 +7291,12 @@ module Aws::Chime
7274
7291
  # vocabulary_filter_name: "String",
7275
7292
  # vocabulary_name: "String",
7276
7293
  # 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
7294
+ # enable_partial_results_stabilization: false,
7295
+ # partial_results_stability: "low", # accepts low, medium, high
7296
+ # content_identification_type: "PII", # accepts PII
7297
+ # content_redaction_type: "PII", # accepts PII
7298
+ # pii_entity_types: "TranscribePiiEntityTypes",
7299
+ # language_model_name: "TranscribeLanguageModelName",
7277
7300
  # },
7278
7301
  # engine_transcribe_medical_settings: {
7279
7302
  # language_code: "en-US", # required, accepts en-US
@@ -7281,6 +7304,7 @@ module Aws::Chime
7281
7304
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
7282
7305
  # vocabulary_name: "String",
7283
7306
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
7307
+ # content_identification_type: "PHI", # accepts PHI
7284
7308
  # },
7285
7309
  # },
7286
7310
  # })
@@ -8392,6 +8416,7 @@ module Aws::Chime
8392
8416
  # resp.voice_connector.require_encryption #=> Boolean
8393
8417
  # resp.voice_connector.created_timestamp #=> Time
8394
8418
  # resp.voice_connector.updated_timestamp #=> Time
8419
+ # resp.voice_connector.voice_connector_arn #=> String
8395
8420
  #
8396
8421
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnector AWS API Documentation
8397
8422
  #
@@ -8440,6 +8465,7 @@ module Aws::Chime
8440
8465
  # resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
8441
8466
  # resp.voice_connector_group.created_timestamp #=> Time
8442
8467
  # resp.voice_connector_group.updated_timestamp #=> Time
8468
+ # resp.voice_connector_group.voice_connector_group_arn #=> String
8443
8469
  #
8444
8470
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnectorGroup AWS API Documentation
8445
8471
  #
@@ -8463,7 +8489,7 @@ module Aws::Chime
8463
8489
  params: params,
8464
8490
  config: config)
8465
8491
  context[:gem_name] = 'aws-sdk-chime'
8466
- context[:gem_version] = '1.59.0'
8492
+ context[:gem_version] = '1.63.0'
8467
8493
  Seahorse::Client::Request.new(handlers, context)
8468
8494
  end
8469
8495
 
@@ -561,11 +561,17 @@ module Aws::Chime
561
561
  ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
562
562
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
563
563
  TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
564
+ TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
565
+ TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
564
566
  TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
567
+ TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
568
+ TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
565
569
  TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
566
570
  TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
567
571
  TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
568
572
  TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
573
+ TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
574
+ TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
569
575
  TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
570
576
  TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
571
577
  TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
@@ -1435,6 +1441,7 @@ module Aws::Chime
1435
1441
  EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
1436
1442
  EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
1437
1443
  EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
1444
+ EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
1438
1445
  EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
1439
1446
 
1440
1447
  EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
@@ -1442,6 +1449,12 @@ module Aws::Chime
1442
1449
  EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
1443
1450
  EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
1444
1451
  EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
1452
+ EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
1453
+ EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
1454
+ EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
1455
+ EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
1456
+ EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
1457
+ EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
1445
1458
  EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
1446
1459
 
1447
1460
  EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
@@ -2708,6 +2721,7 @@ module Aws::Chime
2708
2721
  VoiceConnector.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequireEncryption"))
2709
2722
  VoiceConnector.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
2710
2723
  VoiceConnector.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
2724
+ VoiceConnector.add_member(:voice_connector_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorArn"))
2711
2725
  VoiceConnector.struct_class = Types::VoiceConnector
2712
2726
 
2713
2727
  VoiceConnectorGroup.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupId"))
@@ -2715,6 +2729,7 @@ module Aws::Chime
2715
2729
  VoiceConnectorGroup.add_member(:voice_connector_items, Shapes::ShapeRef.new(shape: VoiceConnectorItemList, location_name: "VoiceConnectorItems"))
2716
2730
  VoiceConnectorGroup.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
2717
2731
  VoiceConnectorGroup.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
2732
+ VoiceConnectorGroup.add_member(:voice_connector_group_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupArn"))
2718
2733
  VoiceConnectorGroup.struct_class = Types::VoiceConnectorGroup
2719
2734
 
2720
2735
  VoiceConnectorGroupList.member = Shapes::ShapeRef.new(shape: VoiceConnectorGroup)
@@ -4353,6 +4353,7 @@ module Aws::Chime
4353
4353
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
4354
4354
  # vocabulary_name: "String",
4355
4355
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
4356
+ # content_identification_type: "PHI", # accepts PHI
4356
4357
  # }
4357
4358
  #
4358
4359
  # @!attribute [rw] language_code
@@ -4377,6 +4378,11 @@ module Aws::Chime
4377
4378
  # specify a Region, Amazon Chime uses the meeting's Region.
4378
4379
  # @return [String]
4379
4380
  #
4381
+ # @!attribute [rw] content_identification_type
4382
+ # Set this field to `PHI` to identify personal health information in
4383
+ # the transcription output.
4384
+ # @return [String]
4385
+ #
4380
4386
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
4381
4387
  #
4382
4388
  class EngineTranscribeMedicalSettings < Struct.new(
@@ -4384,7 +4390,8 @@ module Aws::Chime
4384
4390
  :specialty,
4385
4391
  :type,
4386
4392
  :vocabulary_name,
4387
- :region)
4393
+ :region,
4394
+ :content_identification_type)
4388
4395
  SENSITIVE = []
4389
4396
  include Aws::Structure
4390
4397
  end
@@ -4400,6 +4407,12 @@ module Aws::Chime
4400
4407
  # vocabulary_filter_name: "String",
4401
4408
  # vocabulary_name: "String",
4402
4409
  # 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
4410
+ # enable_partial_results_stabilization: false,
4411
+ # partial_results_stability: "low", # accepts low, medium, high
4412
+ # content_identification_type: "PII", # accepts PII
4413
+ # content_redaction_type: "PII", # accepts PII
4414
+ # pii_entity_types: "TranscribePiiEntityTypes",
4415
+ # language_model_name: "TranscribeLanguageModelName",
4403
4416
  # }
4404
4417
  #
4405
4418
  # @!attribute [rw] language_code
@@ -4423,6 +4436,47 @@ module Aws::Chime
4423
4436
  # Region, Amazon Chime uses the meeting's Region.
4424
4437
  # @return [String]
4425
4438
  #
4439
+ # @!attribute [rw] enable_partial_results_stabilization
4440
+ # Generates partial transcription results that are less likely to
4441
+ # change as meeting attendees speak. It does so by only allowing the
4442
+ # last few words from the partial results to change.
4443
+ # @return [Boolean]
4444
+ #
4445
+ # @!attribute [rw] partial_results_stability
4446
+ # The stabity level of a partial results transcription. Determines how
4447
+ # stable you want the transcription results to be. A higher level
4448
+ # means the transcription results are less likely to change.
4449
+ # @return [String]
4450
+ #
4451
+ # @!attribute [rw] content_identification_type
4452
+ # Set this field to `PII` to identify personal health information in
4453
+ # the transcription output.
4454
+ # @return [String]
4455
+ #
4456
+ # @!attribute [rw] content_redaction_type
4457
+ # Set this field to `PII` to redact personally identifiable
4458
+ # information in the transcription output. Content redaction is
4459
+ # performed only upon complete transcription of the audio segments.
4460
+ # @return [String]
4461
+ #
4462
+ # @!attribute [rw] pii_entity_types
4463
+ # Lists the PII entity types you want to identify or redact. To
4464
+ # specify entity types, you must enable `ContentIdentificationType` or
4465
+ # `ContentRedactionType`.
4466
+ #
4467
+ # `PIIEntityTypes` must be comma-separated. The available values are:
4468
+ # `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
4469
+ # `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
4470
+ # `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
4471
+ #
4472
+ # `PiiEntityTypes` is an optional parameter with a default value of
4473
+ # `ALL`.
4474
+ # @return [String]
4475
+ #
4476
+ # @!attribute [rw] language_model_name
4477
+ # The name of the language model used during transcription.
4478
+ # @return [String]
4479
+ #
4426
4480
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
4427
4481
  #
4428
4482
  class EngineTranscribeSettings < Struct.new(
@@ -4430,7 +4484,13 @@ module Aws::Chime
4430
4484
  :vocabulary_filter_method,
4431
4485
  :vocabulary_filter_name,
4432
4486
  :vocabulary_name,
4433
- :region)
4487
+ :region,
4488
+ :enable_partial_results_stabilization,
4489
+ :partial_results_stability,
4490
+ :content_identification_type,
4491
+ :content_redaction_type,
4492
+ :pii_entity_types,
4493
+ :language_model_name)
4434
4494
  SENSITIVE = []
4435
4495
  include Aws::Structure
4436
4496
  end
@@ -9325,6 +9385,12 @@ module Aws::Chime
9325
9385
  # vocabulary_filter_name: "String",
9326
9386
  # vocabulary_name: "String",
9327
9387
  # 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
9388
+ # enable_partial_results_stabilization: false,
9389
+ # partial_results_stability: "low", # accepts low, medium, high
9390
+ # content_identification_type: "PII", # accepts PII
9391
+ # content_redaction_type: "PII", # accepts PII
9392
+ # pii_entity_types: "TranscribePiiEntityTypes",
9393
+ # language_model_name: "TranscribeLanguageModelName",
9328
9394
  # },
9329
9395
  # engine_transcribe_medical_settings: {
9330
9396
  # language_code: "en-US", # required, accepts en-US
@@ -9332,6 +9398,7 @@ module Aws::Chime
9332
9398
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9333
9399
  # vocabulary_name: "String",
9334
9400
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9401
+ # content_identification_type: "PHI", # accepts PHI
9335
9402
  # },
9336
9403
  # },
9337
9404
  # }
@@ -9701,6 +9768,12 @@ module Aws::Chime
9701
9768
  # vocabulary_filter_name: "String",
9702
9769
  # vocabulary_name: "String",
9703
9770
  # 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
9771
+ # enable_partial_results_stabilization: false,
9772
+ # partial_results_stability: "low", # accepts low, medium, high
9773
+ # content_identification_type: "PII", # accepts PII
9774
+ # content_redaction_type: "PII", # accepts PII
9775
+ # pii_entity_types: "TranscribePiiEntityTypes",
9776
+ # language_model_name: "TranscribeLanguageModelName",
9704
9777
  # },
9705
9778
  # engine_transcribe_medical_settings: {
9706
9779
  # language_code: "en-US", # required, accepts en-US
@@ -9708,6 +9781,7 @@ module Aws::Chime
9708
9781
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9709
9782
  # vocabulary_name: "String",
9710
9783
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9784
+ # content_identification_type: "PHI", # accepts PHI
9711
9785
  # },
9712
9786
  # }
9713
9787
  #
@@ -11037,6 +11111,10 @@ module Aws::Chime
11037
11111
  # format.
11038
11112
  # @return [Time]
11039
11113
  #
11114
+ # @!attribute [rw] voice_connector_arn
11115
+ # The ARN of the specified Amazon Chime Voice Connector.
11116
+ # @return [String]
11117
+ #
11040
11118
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnector AWS API Documentation
11041
11119
  #
11042
11120
  class VoiceConnector < Struct.new(
@@ -11046,7 +11124,8 @@ module Aws::Chime
11046
11124
  :outbound_host_name,
11047
11125
  :require_encryption,
11048
11126
  :created_timestamp,
11049
- :updated_timestamp)
11127
+ :updated_timestamp,
11128
+ :voice_connector_arn)
11050
11129
  SENSITIVE = []
11051
11130
  include Aws::Structure
11052
11131
  end
@@ -11079,6 +11158,10 @@ module Aws::Chime
11079
11158
  # 8601 format.
11080
11159
  # @return [Time]
11081
11160
  #
11161
+ # @!attribute [rw] voice_connector_group_arn
11162
+ # The ARN of the specified Amazon Chime Voice Connector group.
11163
+ # @return [String]
11164
+ #
11082
11165
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnectorGroup AWS API Documentation
11083
11166
  #
11084
11167
  class VoiceConnectorGroup < Struct.new(
@@ -11086,7 +11169,8 @@ module Aws::Chime
11086
11169
  :name,
11087
11170
  :voice_connector_items,
11088
11171
  :created_timestamp,
11089
- :updated_timestamp)
11172
+ :updated_timestamp,
11173
+ :voice_connector_group_arn)
11090
11174
  SENSITIVE = []
11091
11175
  include Aws::Structure
11092
11176
  end
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.59.0'
51
+ GEM_VERSION = '1.63.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.59.0
4
+ version: 1.63.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.121.2
22
+ version: 3.122.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.121.2
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement