aws-sdk-transcribeservice 1.77.0 → 1.78.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribeservice/client.rb +289 -249
- data/lib/aws-sdk-transcribeservice/client_api.rb +4 -0
- data/lib/aws-sdk-transcribeservice/types.rb +561 -590
- data/lib/aws-sdk-transcribeservice.rb +1 -1
- metadata +2 -2
@@ -74,6 +74,7 @@ module Aws::TranscribeService
|
|
74
74
|
GetVocabularyResponse = Shapes::StructureShape.new(name: 'GetVocabularyResponse')
|
75
75
|
IdentifiedLanguageScore = Shapes::FloatShape.new(name: 'IdentifiedLanguageScore')
|
76
76
|
InputDataConfig = Shapes::StructureShape.new(name: 'InputDataConfig')
|
77
|
+
InputType = Shapes::StringShape.new(name: 'InputType')
|
77
78
|
InternalFailureException = Shapes::StructureShape.new(name: 'InternalFailureException')
|
78
79
|
InterruptionFilter = Shapes::StructureShape.new(name: 'InterruptionFilter')
|
79
80
|
JobExecutionSettings = Shapes::StructureShape.new(name: 'JobExecutionSettings')
|
@@ -249,6 +250,7 @@ module Aws::TranscribeService
|
|
249
250
|
CategoryProperties.add_member(:rules, Shapes::ShapeRef.new(shape: RuleList, location_name: "Rules"))
|
250
251
|
CategoryProperties.add_member(:create_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreateTime"))
|
251
252
|
CategoryProperties.add_member(:last_update_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastUpdateTime"))
|
253
|
+
CategoryProperties.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
|
252
254
|
CategoryProperties.struct_class = Types::CategoryProperties
|
253
255
|
|
254
256
|
CategoryPropertiesList.member = Shapes::ShapeRef.new(shape: CategoryProperties)
|
@@ -269,6 +271,7 @@ module Aws::TranscribeService
|
|
269
271
|
|
270
272
|
CreateCallAnalyticsCategoryRequest.add_member(:category_name, Shapes::ShapeRef.new(shape: CategoryName, required: true, location_name: "CategoryName"))
|
271
273
|
CreateCallAnalyticsCategoryRequest.add_member(:rules, Shapes::ShapeRef.new(shape: RuleList, required: true, location_name: "Rules"))
|
274
|
+
CreateCallAnalyticsCategoryRequest.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
|
272
275
|
CreateCallAnalyticsCategoryRequest.struct_class = Types::CreateCallAnalyticsCategoryRequest
|
273
276
|
|
274
277
|
CreateCallAnalyticsCategoryResponse.add_member(:category_properties, Shapes::ShapeRef.new(shape: CategoryProperties, location_name: "CategoryProperties"))
|
@@ -809,6 +812,7 @@ module Aws::TranscribeService
|
|
809
812
|
|
810
813
|
UpdateCallAnalyticsCategoryRequest.add_member(:category_name, Shapes::ShapeRef.new(shape: CategoryName, required: true, location_name: "CategoryName"))
|
811
814
|
UpdateCallAnalyticsCategoryRequest.add_member(:rules, Shapes::ShapeRef.new(shape: RuleList, required: true, location_name: "Rules"))
|
815
|
+
UpdateCallAnalyticsCategoryRequest.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
|
812
816
|
UpdateCallAnalyticsCategoryRequest.struct_class = Types::UpdateCallAnalyticsCategoryRequest
|
813
817
|
|
814
818
|
UpdateCallAnalyticsCategoryResponse.add_member(:category_properties, Shapes::ShapeRef.new(shape: CategoryProperties, location_name: "CategoryProperties"))
|