aws-sdk-bedrockdataautomation 1.4.0 → 1.6.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockdataautomation/client.rb +202 -23
- data/lib/aws-sdk-bedrockdataautomation/client_api.rb +116 -3
- data/lib/aws-sdk-bedrockdataautomation/types.rb +222 -6
- data/lib/aws-sdk-bedrockdataautomation.rb +1 -1
- data/sig/client.rbs +116 -13
- data/sig/types.rbs +76 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c924e97e8184208e40f207c0706450dced26fa1988f4704cd42cbdaba9a0fb3
|
4
|
+
data.tar.gz: f50a666fecbec76c6523b626b79a0d54cb95d5164cd7e317655957d9c20aab53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 544313f4badd0fe341f417aab7296ab8432603916a7bd2c3bca2b94df968161cfc7e1bff0135c42d23e5a5b8cba0121c997b2deac0c75732ac264273a2f1c5b5
|
7
|
+
data.tar.gz: c0c2ff726c03cffb9e00b58440e6ed467f039699e1ddedc08d719c720aa6110771ce7818ee65227c0aef1a43d57653e47c045a77e99ea0ef17f3cd9360fc1aa0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2025-04-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for modality routing and modality enablement on CreateDataAutomationProject and UpdateDataAutomationProject APIs
|
8
|
+
|
9
|
+
1.5.0 (2025-02-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging.
|
13
|
+
|
4
14
|
1.4.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -493,6 +493,9 @@ module Aws::BedrockDataAutomation
|
|
493
493
|
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
494
494
|
# KMS Encryption Configuration
|
495
495
|
#
|
496
|
+
# @option params [Array<Types::Tag>] :tags
|
497
|
+
# List of tags
|
498
|
+
#
|
496
499
|
# @return [Types::CreateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
497
500
|
#
|
498
501
|
# * {Types::CreateBlueprintResponse#blueprint #blueprint} => Types::Blueprint
|
@@ -508,9 +511,15 @@ module Aws::BedrockDataAutomation
|
|
508
511
|
# encryption_configuration: {
|
509
512
|
# kms_key_id: "KmsKeyId", # required
|
510
513
|
# kms_encryption_context: {
|
511
|
-
# "
|
514
|
+
# "EncryptionContextKey" => "EncryptionContextValue",
|
512
515
|
# },
|
513
516
|
# },
|
517
|
+
# tags: [
|
518
|
+
# {
|
519
|
+
# key: "TagKey", # required
|
520
|
+
# value: "TagValue", # required
|
521
|
+
# },
|
522
|
+
# ],
|
514
523
|
# })
|
515
524
|
#
|
516
525
|
# @example Response structure
|
@@ -525,7 +534,7 @@ module Aws::BedrockDataAutomation
|
|
525
534
|
# resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
526
535
|
# resp.blueprint.kms_key_id #=> String
|
527
536
|
# resp.blueprint.kms_encryption_context #=> Hash
|
528
|
-
# resp.blueprint.kms_encryption_context["
|
537
|
+
# resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
|
529
538
|
#
|
530
539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateBlueprint AWS API Documentation
|
531
540
|
#
|
@@ -571,7 +580,7 @@ module Aws::BedrockDataAutomation
|
|
571
580
|
# resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
572
581
|
# resp.blueprint.kms_key_id #=> String
|
573
582
|
# resp.blueprint.kms_encryption_context #=> Hash
|
574
|
-
# resp.blueprint.kms_encryption_context["
|
583
|
+
# resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
|
575
584
|
#
|
576
585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateBlueprintVersion AWS API Documentation
|
577
586
|
#
|
@@ -611,6 +620,9 @@ module Aws::BedrockDataAutomation
|
|
611
620
|
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
612
621
|
# KMS Encryption Configuration
|
613
622
|
#
|
623
|
+
# @option params [Array<Types::Tag>] :tags
|
624
|
+
# List of tags
|
625
|
+
#
|
614
626
|
# @return [Types::CreateDataAutomationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
615
627
|
#
|
616
628
|
# * {Types::CreateDataAutomationProjectResponse#project_arn #project_arn} => String
|
@@ -649,7 +661,7 @@ module Aws::BedrockDataAutomation
|
|
649
661
|
# extraction: {
|
650
662
|
# category: { # required
|
651
663
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
652
|
-
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION
|
664
|
+
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, LOGOS
|
653
665
|
# },
|
654
666
|
# bounding_box: { # required
|
655
667
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
@@ -664,7 +676,7 @@ module Aws::BedrockDataAutomation
|
|
664
676
|
# extraction: {
|
665
677
|
# category: { # required
|
666
678
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
667
|
-
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT
|
679
|
+
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT, LOGOS
|
668
680
|
# },
|
669
681
|
# bounding_box: { # required
|
670
682
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
@@ -672,19 +684,19 @@ module Aws::BedrockDataAutomation
|
|
672
684
|
# },
|
673
685
|
# generative_field: {
|
674
686
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
675
|
-
# types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY,
|
687
|
+
# types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, IAB, CHAPTER_SUMMARY
|
676
688
|
# },
|
677
689
|
# },
|
678
690
|
# audio: {
|
679
691
|
# extraction: {
|
680
692
|
# category: { # required
|
681
693
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
682
|
-
# types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION,
|
694
|
+
# types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, TRANSCRIPT, TOPIC_CONTENT_MODERATION
|
683
695
|
# },
|
684
696
|
# },
|
685
697
|
# generative_field: {
|
686
698
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
687
|
-
# types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY,
|
699
|
+
# types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, IAB, TOPIC_SUMMARY
|
688
700
|
# },
|
689
701
|
# },
|
690
702
|
# },
|
@@ -702,15 +714,45 @@ module Aws::BedrockDataAutomation
|
|
702
714
|
# splitter: {
|
703
715
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
704
716
|
# },
|
717
|
+
# modality_processing: {
|
718
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
719
|
+
# },
|
720
|
+
# },
|
721
|
+
# image: {
|
722
|
+
# modality_processing: {
|
723
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
724
|
+
# },
|
725
|
+
# },
|
726
|
+
# video: {
|
727
|
+
# modality_processing: {
|
728
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
729
|
+
# },
|
730
|
+
# },
|
731
|
+
# audio: {
|
732
|
+
# modality_processing: {
|
733
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
734
|
+
# },
|
735
|
+
# },
|
736
|
+
# modality_routing: {
|
737
|
+
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
738
|
+
# png: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
739
|
+
# mp4: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
740
|
+
# mov: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
705
741
|
# },
|
706
742
|
# },
|
707
743
|
# client_token: "ClientToken",
|
708
744
|
# encryption_configuration: {
|
709
745
|
# kms_key_id: "KmsKeyId", # required
|
710
746
|
# kms_encryption_context: {
|
711
|
-
# "
|
747
|
+
# "EncryptionContextKey" => "EncryptionContextValue",
|
712
748
|
# },
|
713
749
|
# },
|
750
|
+
# tags: [
|
751
|
+
# {
|
752
|
+
# key: "TagKey", # required
|
753
|
+
# value: "TagValue", # required
|
754
|
+
# },
|
755
|
+
# ],
|
714
756
|
# })
|
715
757
|
#
|
716
758
|
# @example Response structure
|
@@ -820,7 +862,7 @@ module Aws::BedrockDataAutomation
|
|
820
862
|
# resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
821
863
|
# resp.blueprint.kms_key_id #=> String
|
822
864
|
# resp.blueprint.kms_encryption_context #=> Hash
|
823
|
-
# resp.blueprint.kms_encryption_context["
|
865
|
+
# resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
|
824
866
|
#
|
825
867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/GetBlueprint AWS API Documentation
|
826
868
|
#
|
@@ -868,33 +910,41 @@ module Aws::BedrockDataAutomation
|
|
868
910
|
# resp.project.standard_output_configuration.document.output_format.additional_file_format.state #=> String, one of "ENABLED", "DISABLED"
|
869
911
|
# resp.project.standard_output_configuration.image.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
|
870
912
|
# resp.project.standard_output_configuration.image.extraction.category.types #=> Array
|
871
|
-
# resp.project.standard_output_configuration.image.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION"
|
913
|
+
# resp.project.standard_output_configuration.image.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "LOGOS"
|
872
914
|
# resp.project.standard_output_configuration.image.extraction.bounding_box.state #=> String, one of "ENABLED", "DISABLED"
|
873
915
|
# resp.project.standard_output_configuration.image.generative_field.state #=> String, one of "ENABLED", "DISABLED"
|
874
916
|
# resp.project.standard_output_configuration.image.generative_field.types #=> Array
|
875
917
|
# resp.project.standard_output_configuration.image.generative_field.types[0] #=> String, one of "IMAGE_SUMMARY", "IAB"
|
876
918
|
# resp.project.standard_output_configuration.video.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
|
877
919
|
# resp.project.standard_output_configuration.video.extraction.category.types #=> Array
|
878
|
-
# resp.project.standard_output_configuration.video.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "TRANSCRIPT"
|
920
|
+
# resp.project.standard_output_configuration.video.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "TRANSCRIPT", "LOGOS"
|
879
921
|
# resp.project.standard_output_configuration.video.extraction.bounding_box.state #=> String, one of "ENABLED", "DISABLED"
|
880
922
|
# resp.project.standard_output_configuration.video.generative_field.state #=> String, one of "ENABLED", "DISABLED"
|
881
923
|
# resp.project.standard_output_configuration.video.generative_field.types #=> Array
|
882
|
-
# resp.project.standard_output_configuration.video.generative_field.types[0] #=> String, one of "VIDEO_SUMMARY", "
|
924
|
+
# resp.project.standard_output_configuration.video.generative_field.types[0] #=> String, one of "VIDEO_SUMMARY", "IAB", "CHAPTER_SUMMARY"
|
883
925
|
# resp.project.standard_output_configuration.audio.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
|
884
926
|
# resp.project.standard_output_configuration.audio.extraction.category.types #=> Array
|
885
|
-
# resp.project.standard_output_configuration.audio.extraction.category.types[0] #=> String, one of "AUDIO_CONTENT_MODERATION", "
|
927
|
+
# resp.project.standard_output_configuration.audio.extraction.category.types[0] #=> String, one of "AUDIO_CONTENT_MODERATION", "TRANSCRIPT", "TOPIC_CONTENT_MODERATION"
|
886
928
|
# resp.project.standard_output_configuration.audio.generative_field.state #=> String, one of "ENABLED", "DISABLED"
|
887
929
|
# resp.project.standard_output_configuration.audio.generative_field.types #=> Array
|
888
|
-
# resp.project.standard_output_configuration.audio.generative_field.types[0] #=> String, one of "AUDIO_SUMMARY", "
|
930
|
+
# resp.project.standard_output_configuration.audio.generative_field.types[0] #=> String, one of "AUDIO_SUMMARY", "IAB", "TOPIC_SUMMARY"
|
889
931
|
# resp.project.custom_output_configuration.blueprints #=> Array
|
890
932
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_arn #=> String
|
891
933
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_version #=> String
|
892
934
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
893
935
|
# resp.project.override_configuration.document.splitter.state #=> String, one of "ENABLED", "DISABLED"
|
936
|
+
# resp.project.override_configuration.document.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
937
|
+
# resp.project.override_configuration.image.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
938
|
+
# resp.project.override_configuration.video.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
939
|
+
# resp.project.override_configuration.audio.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
940
|
+
# resp.project.override_configuration.modality_routing.jpeg #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
941
|
+
# resp.project.override_configuration.modality_routing.png #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
942
|
+
# resp.project.override_configuration.modality_routing.mp4 #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
943
|
+
# resp.project.override_configuration.modality_routing.mov #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
894
944
|
# resp.project.status #=> String, one of "COMPLETED", "IN_PROGRESS", "FAILED"
|
895
945
|
# resp.project.kms_key_id #=> String
|
896
946
|
# resp.project.kms_encryption_context #=> Hash
|
897
|
-
# resp.project.kms_encryption_context["
|
947
|
+
# resp.project.kms_encryption_context["EncryptionContextKey"] #=> String
|
898
948
|
#
|
899
949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/GetDataAutomationProject AWS API Documentation
|
900
950
|
#
|
@@ -1022,6 +1072,93 @@ module Aws::BedrockDataAutomation
|
|
1022
1072
|
req.send_request(options)
|
1023
1073
|
end
|
1024
1074
|
|
1075
|
+
# List tags for an Amazon Bedrock Data Automation resource
|
1076
|
+
#
|
1077
|
+
# @option params [required, String] :resource_arn
|
1078
|
+
# ARN of a taggable resource
|
1079
|
+
#
|
1080
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1081
|
+
#
|
1082
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
1083
|
+
#
|
1084
|
+
# @example Request syntax with placeholder values
|
1085
|
+
#
|
1086
|
+
# resp = client.list_tags_for_resource({
|
1087
|
+
# resource_arn: "TaggableResourceArn", # required
|
1088
|
+
# })
|
1089
|
+
#
|
1090
|
+
# @example Response structure
|
1091
|
+
#
|
1092
|
+
# resp.tags #=> Array
|
1093
|
+
# resp.tags[0].key #=> String
|
1094
|
+
# resp.tags[0].value #=> String
|
1095
|
+
#
|
1096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ListTagsForResource AWS API Documentation
|
1097
|
+
#
|
1098
|
+
# @overload list_tags_for_resource(params = {})
|
1099
|
+
# @param [Hash] params ({})
|
1100
|
+
def list_tags_for_resource(params = {}, options = {})
|
1101
|
+
req = build_request(:list_tags_for_resource, params)
|
1102
|
+
req.send_request(options)
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
# Tag an Amazon Bedrock Data Automation resource
|
1106
|
+
#
|
1107
|
+
# @option params [required, String] :resource_arn
|
1108
|
+
# ARN of a taggable resource
|
1109
|
+
#
|
1110
|
+
# @option params [required, Array<Types::Tag>] :tags
|
1111
|
+
# List of tags
|
1112
|
+
#
|
1113
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1114
|
+
#
|
1115
|
+
# @example Request syntax with placeholder values
|
1116
|
+
#
|
1117
|
+
# resp = client.tag_resource({
|
1118
|
+
# resource_arn: "TaggableResourceArn", # required
|
1119
|
+
# tags: [ # required
|
1120
|
+
# {
|
1121
|
+
# key: "TagKey", # required
|
1122
|
+
# value: "TagValue", # required
|
1123
|
+
# },
|
1124
|
+
# ],
|
1125
|
+
# })
|
1126
|
+
#
|
1127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/TagResource AWS API Documentation
|
1128
|
+
#
|
1129
|
+
# @overload tag_resource(params = {})
|
1130
|
+
# @param [Hash] params ({})
|
1131
|
+
def tag_resource(params = {}, options = {})
|
1132
|
+
req = build_request(:tag_resource, params)
|
1133
|
+
req.send_request(options)
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
# Untag an Amazon Bedrock Data Automation resource
|
1137
|
+
#
|
1138
|
+
# @option params [required, String] :resource_arn
|
1139
|
+
# ARN of a taggable resource
|
1140
|
+
#
|
1141
|
+
# @option params [required, Array<String>] :tag_keys
|
1142
|
+
# List of tag keys
|
1143
|
+
#
|
1144
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1145
|
+
#
|
1146
|
+
# @example Request syntax with placeholder values
|
1147
|
+
#
|
1148
|
+
# resp = client.untag_resource({
|
1149
|
+
# resource_arn: "TaggableResourceArn", # required
|
1150
|
+
# tag_keys: ["TagKey"], # required
|
1151
|
+
# })
|
1152
|
+
#
|
1153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UntagResource AWS API Documentation
|
1154
|
+
#
|
1155
|
+
# @overload untag_resource(params = {})
|
1156
|
+
# @param [Hash] params ({})
|
1157
|
+
def untag_resource(params = {}, options = {})
|
1158
|
+
req = build_request(:untag_resource, params)
|
1159
|
+
req.send_request(options)
|
1160
|
+
end
|
1161
|
+
|
1025
1162
|
# Updates an existing Amazon Bedrock Data Automation Blueprint
|
1026
1163
|
#
|
1027
1164
|
# @option params [required, String] :blueprint_arn
|
@@ -1033,6 +1170,9 @@ module Aws::BedrockDataAutomation
|
|
1033
1170
|
# @option params [String] :blueprint_stage
|
1034
1171
|
# Stage of the Blueprint
|
1035
1172
|
#
|
1173
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
1174
|
+
# KMS Encryption Configuration
|
1175
|
+
#
|
1036
1176
|
# @return [Types::UpdateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1037
1177
|
#
|
1038
1178
|
# * {Types::UpdateBlueprintResponse#blueprint #blueprint} => Types::Blueprint
|
@@ -1043,6 +1183,12 @@ module Aws::BedrockDataAutomation
|
|
1043
1183
|
# blueprint_arn: "BlueprintArn", # required
|
1044
1184
|
# schema: "BlueprintSchema", # required
|
1045
1185
|
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
1186
|
+
# encryption_configuration: {
|
1187
|
+
# kms_key_id: "KmsKeyId", # required
|
1188
|
+
# kms_encryption_context: {
|
1189
|
+
# "EncryptionContextKey" => "EncryptionContextValue",
|
1190
|
+
# },
|
1191
|
+
# },
|
1046
1192
|
# })
|
1047
1193
|
#
|
1048
1194
|
# @example Response structure
|
@@ -1057,7 +1203,7 @@ module Aws::BedrockDataAutomation
|
|
1057
1203
|
# resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
1058
1204
|
# resp.blueprint.kms_key_id #=> String
|
1059
1205
|
# resp.blueprint.kms_encryption_context #=> Hash
|
1060
|
-
# resp.blueprint.kms_encryption_context["
|
1206
|
+
# resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
|
1061
1207
|
#
|
1062
1208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UpdateBlueprint AWS API Documentation
|
1063
1209
|
#
|
@@ -1089,6 +1235,9 @@ module Aws::BedrockDataAutomation
|
|
1089
1235
|
# @option params [Types::OverrideConfiguration] :override_configuration
|
1090
1236
|
# Override configuration
|
1091
1237
|
#
|
1238
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
1239
|
+
# KMS Encryption Configuration
|
1240
|
+
#
|
1092
1241
|
# @return [Types::UpdateDataAutomationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1093
1242
|
#
|
1094
1243
|
# * {Types::UpdateDataAutomationProjectResponse#project_arn #project_arn} => String
|
@@ -1127,7 +1276,7 @@ module Aws::BedrockDataAutomation
|
|
1127
1276
|
# extraction: {
|
1128
1277
|
# category: { # required
|
1129
1278
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
1130
|
-
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION
|
1279
|
+
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, LOGOS
|
1131
1280
|
# },
|
1132
1281
|
# bounding_box: { # required
|
1133
1282
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
@@ -1142,7 +1291,7 @@ module Aws::BedrockDataAutomation
|
|
1142
1291
|
# extraction: {
|
1143
1292
|
# category: { # required
|
1144
1293
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
1145
|
-
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT
|
1294
|
+
# types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT, LOGOS
|
1146
1295
|
# },
|
1147
1296
|
# bounding_box: { # required
|
1148
1297
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
@@ -1150,19 +1299,19 @@ module Aws::BedrockDataAutomation
|
|
1150
1299
|
# },
|
1151
1300
|
# generative_field: {
|
1152
1301
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
1153
|
-
# types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY,
|
1302
|
+
# types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, IAB, CHAPTER_SUMMARY
|
1154
1303
|
# },
|
1155
1304
|
# },
|
1156
1305
|
# audio: {
|
1157
1306
|
# extraction: {
|
1158
1307
|
# category: { # required
|
1159
1308
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
1160
|
-
# types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION,
|
1309
|
+
# types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, TRANSCRIPT, TOPIC_CONTENT_MODERATION
|
1161
1310
|
# },
|
1162
1311
|
# },
|
1163
1312
|
# generative_field: {
|
1164
1313
|
# state: "ENABLED", # required, accepts ENABLED, DISABLED
|
1165
|
-
# types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY,
|
1314
|
+
# types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, IAB, TOPIC_SUMMARY
|
1166
1315
|
# },
|
1167
1316
|
# },
|
1168
1317
|
# },
|
@@ -1180,6 +1329,36 @@ module Aws::BedrockDataAutomation
|
|
1180
1329
|
# splitter: {
|
1181
1330
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1182
1331
|
# },
|
1332
|
+
# modality_processing: {
|
1333
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1334
|
+
# },
|
1335
|
+
# },
|
1336
|
+
# image: {
|
1337
|
+
# modality_processing: {
|
1338
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1339
|
+
# },
|
1340
|
+
# },
|
1341
|
+
# video: {
|
1342
|
+
# modality_processing: {
|
1343
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1344
|
+
# },
|
1345
|
+
# },
|
1346
|
+
# audio: {
|
1347
|
+
# modality_processing: {
|
1348
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1349
|
+
# },
|
1350
|
+
# },
|
1351
|
+
# modality_routing: {
|
1352
|
+
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1353
|
+
# png: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1354
|
+
# mp4: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1355
|
+
# mov: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1356
|
+
# },
|
1357
|
+
# },
|
1358
|
+
# encryption_configuration: {
|
1359
|
+
# kms_key_id: "KmsKeyId", # required
|
1360
|
+
# kms_encryption_context: {
|
1361
|
+
# "EncryptionContextKey" => "EncryptionContextValue",
|
1183
1362
|
# },
|
1184
1363
|
# },
|
1185
1364
|
# })
|
@@ -1217,7 +1396,7 @@ module Aws::BedrockDataAutomation
|
|
1217
1396
|
tracer: tracer
|
1218
1397
|
)
|
1219
1398
|
context[:gem_name] = 'aws-sdk-bedrockdataautomation'
|
1220
|
-
context[:gem_version] = '1.
|
1399
|
+
context[:gem_version] = '1.6.0'
|
1221
1400
|
Seahorse::Client::Request.new(handlers, context)
|
1222
1401
|
end
|
1223
1402
|
|