aws-sdk-bedrockdataautomation 1.18.0 → 1.20.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: 37a728daa597a19821f766ff03db3189ee73769475b8fc3ef0beb801ebdd61d1
4
- data.tar.gz: ac39256094a6455fb2e9a8ded55c5ee18c3b0182da003d6819707758dfa8e8bb
3
+ metadata.gz: d724646a247c2719af84063ff75d77c4d979584afc3c68478872ba7499570f84
4
+ data.tar.gz: a2b9248cbc26f116021e6d81a967ad9dab7efc8701f7d98c2ca05ff3be170b95
5
5
  SHA512:
6
- metadata.gz: bd2bdfd1f2bc227fbbe63c106537572181e2098b17eb0c7406c2de1a5bc62062cca2d4b91904e8764ed0f82339887b3516997c307e7a2e034ec18e8b79d1be51
7
- data.tar.gz: d3468f33038b74811e5de53daead2b652fd1a8c7fbb0612b7203d4eed15103772f21ed8b4e055dad0c7a46bb96c18989220026cb9e0e85f9e70cad50cba66297
6
+ metadata.gz: 9ee35cd0561fd58995c3c0ee6e2e3c8e0985c2f4fdc240a0886abab6280c38af9cb8642a46a6255acee2ce696f3211ca25a87f162b611525c554c7cb3ea413fa
7
+ data.tar.gz: 1f584e2fe3f8a64163361e770a9d402f137733d04e0b06ccecf0c76d4df09a3454129cfc8ffdd3905304826c4f3549833644a30f63056e87c8d615af5b3cbfb6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2025-11-11)
5
+ ------------------
6
+
7
+ * Feature - Added support for Language Expansion feature for BDA Audio modality.
8
+
9
+ 1.19.0 (2025-10-27)
10
+ ------------------
11
+
12
+ * Feature - Update endpoint ruleset parameters casing
13
+
4
14
  1.18.0 (2025-10-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.20.0
@@ -748,6 +748,11 @@ module Aws::BedrockDataAutomation
748
748
  # modality_processing: {
749
749
  # state: "ENABLED", # accepts ENABLED, DISABLED
750
750
  # },
751
+ # language_configuration: {
752
+ # input_languages: ["EN"], # accepts EN, DE, ES, FR, IT, PT, JA, KO, CN, TW, HK
753
+ # generative_output_language: "DEFAULT", # accepts DEFAULT, EN
754
+ # identify_multiple_languages: false,
755
+ # },
751
756
  # },
752
757
  # modality_routing: {
753
758
  # jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
@@ -955,6 +960,10 @@ module Aws::BedrockDataAutomation
955
960
  # resp.project.override_configuration.image.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
956
961
  # resp.project.override_configuration.video.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
957
962
  # resp.project.override_configuration.audio.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
963
+ # resp.project.override_configuration.audio.language_configuration.input_languages #=> Array
964
+ # resp.project.override_configuration.audio.language_configuration.input_languages[0] #=> String, one of "EN", "DE", "ES", "FR", "IT", "PT", "JA", "KO", "CN", "TW", "HK"
965
+ # resp.project.override_configuration.audio.language_configuration.generative_output_language #=> String, one of "DEFAULT", "EN"
966
+ # resp.project.override_configuration.audio.language_configuration.identify_multiple_languages #=> Boolean
958
967
  # resp.project.override_configuration.modality_routing.jpeg #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
959
968
  # resp.project.override_configuration.modality_routing.png #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
960
969
  # resp.project.override_configuration.modality_routing.mp4 #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
@@ -1375,6 +1384,11 @@ module Aws::BedrockDataAutomation
1375
1384
  # modality_processing: {
1376
1385
  # state: "ENABLED", # accepts ENABLED, DISABLED
1377
1386
  # },
1387
+ # language_configuration: {
1388
+ # input_languages: ["EN"], # accepts EN, DE, ES, FR, IT, PT, JA, KO, CN, TW, HK
1389
+ # generative_output_language: "DEFAULT", # accepts DEFAULT, EN
1390
+ # identify_multiple_languages: false,
1391
+ # },
1378
1392
  # },
1379
1393
  # modality_routing: {
1380
1394
  # jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
@@ -1424,7 +1438,7 @@ module Aws::BedrockDataAutomation
1424
1438
  tracer: tracer
1425
1439
  )
1426
1440
  context[:gem_name] = 'aws-sdk-bedrockdataautomation'
1427
- context[:gem_version] = '1.18.0'
1441
+ context[:gem_version] = '1.20.0'
1428
1442
  Seahorse::Client::Request.new(handlers, context)
1429
1443
  end
1430
1444
 
@@ -19,6 +19,9 @@ module Aws::BedrockDataAutomation
19
19
  AudioExtractionCategoryType = Shapes::StringShape.new(name: 'AudioExtractionCategoryType')
20
20
  AudioExtractionCategoryTypeConfiguration = Shapes::StructureShape.new(name: 'AudioExtractionCategoryTypeConfiguration')
21
21
  AudioExtractionCategoryTypes = Shapes::ListShape.new(name: 'AudioExtractionCategoryTypes')
22
+ AudioGenerativeOutputLanguage = Shapes::StringShape.new(name: 'AudioGenerativeOutputLanguage')
23
+ AudioInputLanguages = Shapes::ListShape.new(name: 'AudioInputLanguages')
24
+ AudioLanguageConfiguration = Shapes::StructureShape.new(name: 'AudioLanguageConfiguration')
22
25
  AudioOverrideConfiguration = Shapes::StructureShape.new(name: 'AudioOverrideConfiguration')
23
26
  AudioStandardExtraction = Shapes::StructureShape.new(name: 'AudioStandardExtraction')
24
27
  AudioStandardGenerativeField = Shapes::StructureShape.new(name: 'AudioStandardGenerativeField')
@@ -37,6 +40,7 @@ module Aws::BedrockDataAutomation
37
40
  BlueprintSummary = Shapes::StructureShape.new(name: 'BlueprintSummary')
38
41
  BlueprintVersion = Shapes::StringShape.new(name: 'BlueprintVersion')
39
42
  Blueprints = Shapes::ListShape.new(name: 'Blueprints')
43
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
40
44
  ChannelLabelingConfiguration = Shapes::StructureShape.new(name: 'ChannelLabelingConfiguration')
41
45
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
42
46
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
@@ -96,6 +100,7 @@ module Aws::BedrockDataAutomation
96
100
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
97
101
  KmsEncryptionContext = Shapes::MapShape.new(name: 'KmsEncryptionContext')
98
102
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
103
+ Language = Shapes::StringShape.new(name: 'Language')
99
104
  ListBlueprintsRequest = Shapes::StructureShape.new(name: 'ListBlueprintsRequest')
100
105
  ListBlueprintsResponse = Shapes::StructureShape.new(name: 'ListBlueprintsResponse')
101
106
  ListDataAutomationProjectsRequest = Shapes::StructureShape.new(name: 'ListDataAutomationProjectsRequest')
@@ -159,7 +164,15 @@ module Aws::BedrockDataAutomation
159
164
 
160
165
  AudioExtractionCategoryTypes.member = Shapes::ShapeRef.new(shape: AudioExtractionCategoryType)
161
166
 
167
+ AudioInputLanguages.member = Shapes::ShapeRef.new(shape: Language)
168
+
169
+ AudioLanguageConfiguration.add_member(:input_languages, Shapes::ShapeRef.new(shape: AudioInputLanguages, location_name: "inputLanguages"))
170
+ AudioLanguageConfiguration.add_member(:generative_output_language, Shapes::ShapeRef.new(shape: AudioGenerativeOutputLanguage, location_name: "generativeOutputLanguage"))
171
+ AudioLanguageConfiguration.add_member(:identify_multiple_languages, Shapes::ShapeRef.new(shape: Boolean, location_name: "identifyMultipleLanguages"))
172
+ AudioLanguageConfiguration.struct_class = Types::AudioLanguageConfiguration
173
+
162
174
  AudioOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
175
+ AudioOverrideConfiguration.add_member(:language_configuration, Shapes::ShapeRef.new(shape: AudioLanguageConfiguration, location_name: "languageConfiguration"))
163
176
  AudioOverrideConfiguration.struct_class = Types::AudioOverrideConfiguration
164
177
 
165
178
  AudioStandardExtraction.add_member(:category, Shapes::ShapeRef.new(shape: AudioExtractionCategory, required: true, location_name: "category"))
@@ -13,22 +13,22 @@ module Aws::BedrockDataAutomation
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
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
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
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
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -63,16 +63,45 @@ module Aws::BedrockDataAutomation
63
63
  include Aws::Structure
64
64
  end
65
65
 
66
+ # Optional configuration for audio language settings
67
+ #
68
+ # @!attribute [rw] input_languages
69
+ # List of supported audio languages
70
+ # @return [Array<String>]
71
+ #
72
+ # @!attribute [rw] generative_output_language
73
+ # Configuration for Audio output language
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] identify_multiple_languages
77
+ # Enable multiple language identification in audio
78
+ # @return [Boolean]
79
+ #
80
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/AudioLanguageConfiguration AWS API Documentation
81
+ #
82
+ class AudioLanguageConfiguration < Struct.new(
83
+ :input_languages,
84
+ :generative_output_language,
85
+ :identify_multiple_languages)
86
+ SENSITIVE = []
87
+ include Aws::Structure
88
+ end
89
+
66
90
  # Override Configuration of Audio
67
91
  #
68
92
  # @!attribute [rw] modality_processing
69
93
  # Configuration to enable/disable processing of modality
70
94
  # @return [Types::ModalityProcessingConfiguration]
71
95
  #
96
+ # @!attribute [rw] language_configuration
97
+ # Optional configuration for audio language settings
98
+ # @return [Types::AudioLanguageConfiguration]
99
+ #
72
100
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/AudioOverrideConfiguration AWS API Documentation
73
101
  #
74
102
  class AudioOverrideConfiguration < Struct.new(
75
- :modality_processing)
103
+ :modality_processing,
104
+ :language_configuration)
76
105
  SENSITIVE = []
77
106
  include Aws::Structure
78
107
  end
@@ -54,7 +54,7 @@ module Aws::BedrockDataAutomation
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockdataautomation/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockdataautomation/endpoints'
56
56
 
57
- GEM_VERSION = '1.18.0'
57
+ GEM_VERSION = '1.20.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -230,6 +230,11 @@ module Aws
230
230
  audio: {
231
231
  modality_processing: {
232
232
  state: ("ENABLED" | "DISABLED")?
233
+ }?,
234
+ language_configuration: {
235
+ input_languages: Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]?,
236
+ generative_output_language: ("DEFAULT" | "EN")?,
237
+ identify_multiple_languages: bool?
233
238
  }?
234
239
  }?,
235
240
  modality_routing: {
@@ -503,6 +508,11 @@ module Aws
503
508
  audio: {
504
509
  modality_processing: {
505
510
  state: ("ENABLED" | "DISABLED")?
511
+ }?,
512
+ language_configuration: {
513
+ input_languages: Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]?,
514
+ generative_output_language: ("DEFAULT" | "EN")?,
515
+ identify_multiple_languages: bool?
506
516
  }?
507
517
  }?,
508
518
  modality_routing: {
data/sig/types.rbs CHANGED
@@ -25,8 +25,16 @@ module Aws::BedrockDataAutomation
25
25
  SENSITIVE: []
26
26
  end
27
27
 
28
+ class AudioLanguageConfiguration
29
+ attr_accessor input_languages: ::Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]
30
+ attr_accessor generative_output_language: ("DEFAULT" | "EN")
31
+ attr_accessor identify_multiple_languages: bool
32
+ SENSITIVE: []
33
+ end
34
+
28
35
  class AudioOverrideConfiguration
29
36
  attr_accessor modality_processing: Types::ModalityProcessingConfiguration
37
+ attr_accessor language_configuration: Types::AudioLanguageConfiguration
30
38
  SENSITIVE: []
31
39
  end
32
40
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockdataautomation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services