aws-sdk-bedrockruntime 1.33.0 → 1.35.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: 8bbc17a1fbd97da1acd484adbc61927d5bbf2eef3e3f39dccef313d420962a3e
4
- data.tar.gz: 1530c4064531caf174c0e7e3385b2745799bcf4722fd7f7b6d35ba17092b20b9
3
+ metadata.gz: 56ebcbbbb4d6a6e14eb42e90d76e38cfa85aa0072d78a3c05cfd6686e01b5b55
4
+ data.tar.gz: 1572552fecfdc052fd917bbf55b1c70e3c49ff49d6c26a4a15bdf436d8e81070
5
5
  SHA512:
6
- metadata.gz: 35933276e18f6001f41bdac6f18e073a0e320771e869353dd9d8d31d4ba399d42990c8aee9c3d48de9ee314ebb7dcdf6bde6e61278872c03e73f31230cb05114
7
- data.tar.gz: '09e726ff79649735fea3656a4bae10a6dc8496234ac891d8062b1a219535e09b8318165e9a653f884c44abb83c5fe3eda42af801afb3ef7c97acbf678d095b95'
6
+ metadata.gz: 6b4a05f1e644da035e7fc735f324d7835cbee381e0f31bc2e7da435e7e864bd12a650b1e17bb9106ca9ebb800a09e58fe4cb845f09ef87a60107363f948c0726
7
+ data.tar.gz: 6b42e37305cfde08a6ee1ef67e49fb59857dea9148b57d670e57ac445ea3e6a5824a2f8234ab48e372a2ed13f9a29c42cb2c41da1594afd7d00522dd76f95b6a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.34.0 (2024-12-04)
10
+ ------------------
11
+
12
+ * Feature - Added support for Intelligent Prompt Router in Invoke, InvokeStream, Converse and ConverseStream. Add support for Bedrock Guardrails image content filter. New Bedrock Marketplace feature enabling a wider range of bedrock compatible models with self-hosted capability.
13
+
4
14
  1.33.0 (2024-12-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.35.0
@@ -268,11 +268,34 @@ module Aws::BedrockRuntime
268
268
  # Used when loading credentials from the shared credentials file
269
269
  # at HOME/.aws/credentials. When not specified, 'default' is used.
270
270
  #
271
+ # @option options [String] :request_checksum_calculation ("when_supported")
272
+ # Determines when a checksum will be calculated for request payloads. Values are:
273
+ #
274
+ # * `when_supported` - (default) When set, a checksum will be
275
+ # calculated for all request payloads of operations modeled with the
276
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
277
+ # `requestAlgorithmMember` is modeled.
278
+ # * `when_required` - When set, a checksum will only be calculated for
279
+ # request payloads of operations modeled with the `httpChecksum` trait where
280
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
281
+ # is modeled and supplied.
282
+ #
271
283
  # @option options [Integer] :request_min_compression_size_bytes (10240)
272
284
  # The minimum size in bytes that triggers compression for request
273
285
  # bodies. The value must be non-negative integer value between 0
274
286
  # and 10485780 bytes inclusive.
275
287
  #
288
+ # @option options [String] :response_checksum_validation ("when_supported")
289
+ # Determines when checksum validation will be performed on response payloads. Values are:
290
+ #
291
+ # * `when_supported` - (default) When set, checksum validation is performed on all
292
+ # response payloads of operations modeled with the `httpChecksum` trait where
293
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
294
+ # are supported.
295
+ # * `when_required` - When set, checksum validation is not performed on
296
+ # response payloads of operations unless the checksum algorithm is supported and
297
+ # the `requestValidationModeMember` member is set to `ENABLED`.
298
+ #
276
299
  # @option options [Proc] :retry_backoff
277
300
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
278
301
  # This option is only used in the `legacy` retry mode.
@@ -500,6 +523,12 @@ module Aws::BedrockRuntime
500
523
  # text: "String", # required
501
524
  # qualifiers: ["grounding_source"], # accepts grounding_source, query, guard_content
502
525
  # },
526
+ # image: {
527
+ # format: "png", # required, accepts png, jpeg
528
+ # source: { # required
529
+ # bytes: "data",
530
+ # },
531
+ # },
503
532
  # },
504
533
  # ],
505
534
  # })
@@ -555,8 +584,12 @@ module Aws::BedrockRuntime
555
584
  # resp.assessments[0].invocation_metrics.usage.contextual_grounding_policy_units #=> Integer
556
585
  # resp.assessments[0].invocation_metrics.guardrail_coverage.text_characters.guarded #=> Integer
557
586
  # resp.assessments[0].invocation_metrics.guardrail_coverage.text_characters.total #=> Integer
587
+ # resp.assessments[0].invocation_metrics.guardrail_coverage.images.guarded #=> Integer
588
+ # resp.assessments[0].invocation_metrics.guardrail_coverage.images.total #=> Integer
558
589
  # resp.guardrail_coverage.text_characters.guarded #=> Integer
559
590
  # resp.guardrail_coverage.text_characters.total #=> Integer
591
+ # resp.guardrail_coverage.images.guarded #=> Integer
592
+ # resp.guardrail_coverage.images.total #=> Integer
560
593
  #
561
594
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ApplyGuardrail AWS API Documentation
562
595
  #
@@ -827,6 +860,12 @@ module Aws::BedrockRuntime
827
860
  # text: "String", # required
828
861
  # qualifiers: ["grounding_source"], # accepts grounding_source, query, guard_content
829
862
  # },
863
+ # image: {
864
+ # format: "png", # required, accepts png, jpeg
865
+ # source: { # required
866
+ # bytes: "data",
867
+ # },
868
+ # },
830
869
  # },
831
870
  # },
832
871
  # ],
@@ -840,6 +879,12 @@ module Aws::BedrockRuntime
840
879
  # text: "String", # required
841
880
  # qualifiers: ["grounding_source"], # accepts grounding_source, query, guard_content
842
881
  # },
882
+ # image: {
883
+ # format: "png", # required, accepts png, jpeg
884
+ # source: { # required
885
+ # bytes: "data",
886
+ # },
887
+ # },
843
888
  # },
844
889
  # },
845
890
  # ],
@@ -925,6 +970,8 @@ module Aws::BedrockRuntime
925
970
  # resp.output.message.content[0].guard_content.text.text #=> String
926
971
  # resp.output.message.content[0].guard_content.text.qualifiers #=> Array
927
972
  # resp.output.message.content[0].guard_content.text.qualifiers[0] #=> String, one of "grounding_source", "query", "guard_content"
973
+ # resp.output.message.content[0].guard_content.image.format #=> String, one of "png", "jpeg"
974
+ # resp.output.message.content[0].guard_content.image.source.bytes #=> String
928
975
  # resp.stop_reason #=> String, one of "end_turn", "tool_use", "max_tokens", "stop_sequence", "guardrail_intervened", "content_filtered"
929
976
  # resp.usage.input_tokens #=> Integer
930
977
  # resp.usage.output_tokens #=> Integer
@@ -972,6 +1019,8 @@ module Aws::BedrockRuntime
972
1019
  # resp.trace.guardrail.input_assessment["String"].invocation_metrics.usage.contextual_grounding_policy_units #=> Integer
973
1020
  # resp.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.text_characters.guarded #=> Integer
974
1021
  # resp.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.text_characters.total #=> Integer
1022
+ # resp.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.images.guarded #=> Integer
1023
+ # resp.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.images.total #=> Integer
975
1024
  # resp.trace.guardrail.output_assessments #=> Hash
976
1025
  # resp.trace.guardrail.output_assessments["String"] #=> Array
977
1026
  # resp.trace.guardrail.output_assessments["String"][0].topic_policy.topics #=> Array
@@ -1013,6 +1062,9 @@ module Aws::BedrockRuntime
1013
1062
  # resp.trace.guardrail.output_assessments["String"][0].invocation_metrics.usage.contextual_grounding_policy_units #=> Integer
1014
1063
  # resp.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.text_characters.guarded #=> Integer
1015
1064
  # resp.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.text_characters.total #=> Integer
1065
+ # resp.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.images.guarded #=> Integer
1066
+ # resp.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.images.total #=> Integer
1067
+ # resp.trace.prompt_router.invoked_model_id #=> String
1016
1068
  # resp.performance_config.latency #=> String, one of "standard", "optimized"
1017
1069
  #
1018
1070
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/Converse AWS API Documentation
@@ -1462,6 +1514,12 @@ module Aws::BedrockRuntime
1462
1514
  # text: "String", # required
1463
1515
  # qualifiers: ["grounding_source"], # accepts grounding_source, query, guard_content
1464
1516
  # },
1517
+ # image: {
1518
+ # format: "png", # required, accepts png, jpeg
1519
+ # source: { # required
1520
+ # bytes: "data",
1521
+ # },
1522
+ # },
1465
1523
  # },
1466
1524
  # },
1467
1525
  # ],
@@ -1475,6 +1533,12 @@ module Aws::BedrockRuntime
1475
1533
  # text: "String", # required
1476
1534
  # qualifiers: ["grounding_source"], # accepts grounding_source, query, guard_content
1477
1535
  # },
1536
+ # image: {
1537
+ # format: "png", # required, accepts png, jpeg
1538
+ # source: { # required
1539
+ # bytes: "data",
1540
+ # },
1541
+ # },
1478
1542
  # },
1479
1543
  # },
1480
1544
  # ],
@@ -1601,6 +1665,8 @@ module Aws::BedrockRuntime
1601
1665
  # event.trace.guardrail.input_assessment["String"].invocation_metrics.usage.contextual_grounding_policy_units #=> Integer
1602
1666
  # event.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.text_characters.guarded #=> Integer
1603
1667
  # event.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.text_characters.total #=> Integer
1668
+ # event.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.images.guarded #=> Integer
1669
+ # event.trace.guardrail.input_assessment["String"].invocation_metrics.guardrail_coverage.images.total #=> Integer
1604
1670
  # event.trace.guardrail.output_assessments #=> Hash
1605
1671
  # event.trace.guardrail.output_assessments["String"] #=> Array
1606
1672
  # event.trace.guardrail.output_assessments["String"][0].topic_policy.topics #=> Array
@@ -1642,6 +1708,9 @@ module Aws::BedrockRuntime
1642
1708
  # event.trace.guardrail.output_assessments["String"][0].invocation_metrics.usage.contextual_grounding_policy_units #=> Integer
1643
1709
  # event.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.text_characters.guarded #=> Integer
1644
1710
  # event.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.text_characters.total #=> Integer
1711
+ # event.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.images.guarded #=> Integer
1712
+ # event.trace.guardrail.output_assessments["String"][0].invocation_metrics.guardrail_coverage.images.total #=> Integer
1713
+ # event.trace.prompt_router.invoked_model_id #=> String
1645
1714
  # event.performance_config.latency #=> String, one of "standard", "optimized"
1646
1715
  #
1647
1716
  # For :internal_server_exception event available at #on_internal_server_exception_event callback and response eventstream enumerator:
@@ -2380,7 +2449,7 @@ module Aws::BedrockRuntime
2380
2449
  tracer: tracer
2381
2450
  )
2382
2451
  context[:gem_name] = 'aws-sdk-bedrockruntime'
2383
- context[:gem_version] = '1.33.0'
2452
+ context[:gem_version] = '1.35.0'
2384
2453
  Seahorse::Client::Request.new(handlers, context)
2385
2454
  end
2386
2455
 
@@ -93,11 +93,20 @@ module Aws::BedrockRuntime
93
93
  GuardrailConverseContentBlock = Shapes::UnionShape.new(name: 'GuardrailConverseContentBlock')
94
94
  GuardrailConverseContentQualifier = Shapes::StringShape.new(name: 'GuardrailConverseContentQualifier')
95
95
  GuardrailConverseContentQualifierList = Shapes::ListShape.new(name: 'GuardrailConverseContentQualifierList')
96
+ GuardrailConverseImageBlock = Shapes::StructureShape.new(name: 'GuardrailConverseImageBlock')
97
+ GuardrailConverseImageFormat = Shapes::StringShape.new(name: 'GuardrailConverseImageFormat')
98
+ GuardrailConverseImageSource = Shapes::UnionShape.new(name: 'GuardrailConverseImageSource')
99
+ GuardrailConverseImageSourceBytesBlob = Shapes::BlobShape.new(name: 'GuardrailConverseImageSourceBytesBlob')
96
100
  GuardrailConverseTextBlock = Shapes::StructureShape.new(name: 'GuardrailConverseTextBlock')
97
101
  GuardrailCoverage = Shapes::StructureShape.new(name: 'GuardrailCoverage')
98
102
  GuardrailCustomWord = Shapes::StructureShape.new(name: 'GuardrailCustomWord')
99
103
  GuardrailCustomWordList = Shapes::ListShape.new(name: 'GuardrailCustomWordList')
100
104
  GuardrailIdentifier = Shapes::StringShape.new(name: 'GuardrailIdentifier')
105
+ GuardrailImageBlock = Shapes::StructureShape.new(name: 'GuardrailImageBlock')
106
+ GuardrailImageCoverage = Shapes::StructureShape.new(name: 'GuardrailImageCoverage')
107
+ GuardrailImageFormat = Shapes::StringShape.new(name: 'GuardrailImageFormat')
108
+ GuardrailImageSource = Shapes::UnionShape.new(name: 'GuardrailImageSource')
109
+ GuardrailImageSourceBytesBlob = Shapes::BlobShape.new(name: 'GuardrailImageSourceBytesBlob')
101
110
  GuardrailInvocationMetrics = Shapes::StructureShape.new(name: 'GuardrailInvocationMetrics')
102
111
  GuardrailManagedWord = Shapes::StructureShape.new(name: 'GuardrailManagedWord')
103
112
  GuardrailManagedWordList = Shapes::ListShape.new(name: 'GuardrailManagedWordList')
@@ -136,6 +145,8 @@ module Aws::BedrockRuntime
136
145
  ImageFormat = Shapes::StringShape.new(name: 'ImageFormat')
137
146
  ImageSource = Shapes::UnionShape.new(name: 'ImageSource')
138
147
  ImageSourceBytesBlob = Shapes::BlobShape.new(name: 'ImageSourceBytesBlob')
148
+ ImagesGuarded = Shapes::IntegerShape.new(name: 'ImagesGuarded')
149
+ ImagesTotal = Shapes::IntegerShape.new(name: 'ImagesTotal')
139
150
  InferenceConfiguration = Shapes::StructureShape.new(name: 'InferenceConfiguration')
140
151
  InferenceConfigurationMaxTokensInteger = Shapes::IntegerShape.new(name: 'InferenceConfigurationMaxTokensInteger')
141
152
  InferenceConfigurationStopSequencesList = Shapes::ListShape.new(name: 'InferenceConfigurationStopSequencesList')
@@ -148,6 +159,7 @@ module Aws::BedrockRuntime
148
159
  InvokeModelResponse = Shapes::StructureShape.new(name: 'InvokeModelResponse')
149
160
  InvokeModelWithResponseStreamRequest = Shapes::StructureShape.new(name: 'InvokeModelWithResponseStreamRequest')
150
161
  InvokeModelWithResponseStreamResponse = Shapes::StructureShape.new(name: 'InvokeModelWithResponseStreamResponse')
162
+ InvokedModelId = Shapes::StringShape.new(name: 'InvokedModelId')
151
163
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
152
164
  ListAsyncInvokesRequest = Shapes::StructureShape.new(name: 'ListAsyncInvokesRequest')
153
165
  ListAsyncInvokesResponse = Shapes::StructureShape.new(name: 'ListAsyncInvokesResponse')
@@ -172,6 +184,7 @@ module Aws::BedrockRuntime
172
184
  PayloadPart = Shapes::StructureShape.new(name: 'PayloadPart')
173
185
  PerformanceConfigLatency = Shapes::StringShape.new(name: 'PerformanceConfigLatency')
174
186
  PerformanceConfiguration = Shapes::StructureShape.new(name: 'PerformanceConfiguration')
187
+ PromptRouterTrace = Shapes::StructureShape.new(name: 'PromptRouterTrace')
175
188
  PromptVariableMap = Shapes::MapShape.new(name: 'PromptVariableMap')
176
189
  PromptVariableValues = Shapes::UnionShape.new(name: 'PromptVariableValues')
177
190
  RequestMetadata = Shapes::MapShape.new(name: 'RequestMetadata')
@@ -395,9 +408,11 @@ module Aws::BedrockRuntime
395
408
  ConverseStreamResponse[:payload_member] = ConverseStreamResponse.member(:stream)
396
409
 
397
410
  ConverseStreamTrace.add_member(:guardrail, Shapes::ShapeRef.new(shape: GuardrailTraceAssessment, location_name: "guardrail"))
411
+ ConverseStreamTrace.add_member(:prompt_router, Shapes::ShapeRef.new(shape: PromptRouterTrace, location_name: "promptRouter"))
398
412
  ConverseStreamTrace.struct_class = Types::ConverseStreamTrace
399
413
 
400
414
  ConverseTrace.add_member(:guardrail, Shapes::ShapeRef.new(shape: GuardrailTraceAssessment, location_name: "guardrail"))
415
+ ConverseTrace.add_member(:prompt_router, Shapes::ShapeRef.new(shape: PromptRouterTrace, location_name: "promptRouter"))
401
416
  ConverseTrace.struct_class = Types::ConverseTrace
402
417
 
403
418
  DocumentBlock.add_member(:format, Shapes::ShapeRef.new(shape: DocumentFormat, required: true, location_name: "format"))
@@ -447,8 +462,10 @@ module Aws::BedrockRuntime
447
462
  GuardrailConfiguration.struct_class = Types::GuardrailConfiguration
448
463
 
449
464
  GuardrailContentBlock.add_member(:text, Shapes::ShapeRef.new(shape: GuardrailTextBlock, location_name: "text"))
465
+ GuardrailContentBlock.add_member(:image, Shapes::ShapeRef.new(shape: GuardrailImageBlock, location_name: "image"))
450
466
  GuardrailContentBlock.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
451
467
  GuardrailContentBlock.add_member_subclass(:text, Types::GuardrailContentBlock::Text)
468
+ GuardrailContentBlock.add_member_subclass(:image, Types::GuardrailContentBlock::Image)
452
469
  GuardrailContentBlock.add_member_subclass(:unknown, Types::GuardrailContentBlock::Unknown)
453
470
  GuardrailContentBlock.struct_class = Types::GuardrailContentBlock
454
471
 
@@ -479,18 +496,31 @@ module Aws::BedrockRuntime
479
496
  GuardrailContextualGroundingPolicyAssessment.struct_class = Types::GuardrailContextualGroundingPolicyAssessment
480
497
 
481
498
  GuardrailConverseContentBlock.add_member(:text, Shapes::ShapeRef.new(shape: GuardrailConverseTextBlock, location_name: "text"))
499
+ GuardrailConverseContentBlock.add_member(:image, Shapes::ShapeRef.new(shape: GuardrailConverseImageBlock, location_name: "image"))
482
500
  GuardrailConverseContentBlock.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
483
501
  GuardrailConverseContentBlock.add_member_subclass(:text, Types::GuardrailConverseContentBlock::Text)
502
+ GuardrailConverseContentBlock.add_member_subclass(:image, Types::GuardrailConverseContentBlock::Image)
484
503
  GuardrailConverseContentBlock.add_member_subclass(:unknown, Types::GuardrailConverseContentBlock::Unknown)
485
504
  GuardrailConverseContentBlock.struct_class = Types::GuardrailConverseContentBlock
486
505
 
487
506
  GuardrailConverseContentQualifierList.member = Shapes::ShapeRef.new(shape: GuardrailConverseContentQualifier)
488
507
 
508
+ GuardrailConverseImageBlock.add_member(:format, Shapes::ShapeRef.new(shape: GuardrailConverseImageFormat, required: true, location_name: "format"))
509
+ GuardrailConverseImageBlock.add_member(:source, Shapes::ShapeRef.new(shape: GuardrailConverseImageSource, required: true, location_name: "source"))
510
+ GuardrailConverseImageBlock.struct_class = Types::GuardrailConverseImageBlock
511
+
512
+ GuardrailConverseImageSource.add_member(:bytes, Shapes::ShapeRef.new(shape: GuardrailConverseImageSourceBytesBlob, location_name: "bytes"))
513
+ GuardrailConverseImageSource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
514
+ GuardrailConverseImageSource.add_member_subclass(:bytes, Types::GuardrailConverseImageSource::Bytes)
515
+ GuardrailConverseImageSource.add_member_subclass(:unknown, Types::GuardrailConverseImageSource::Unknown)
516
+ GuardrailConverseImageSource.struct_class = Types::GuardrailConverseImageSource
517
+
489
518
  GuardrailConverseTextBlock.add_member(:text, Shapes::ShapeRef.new(shape: String, required: true, location_name: "text"))
490
519
  GuardrailConverseTextBlock.add_member(:qualifiers, Shapes::ShapeRef.new(shape: GuardrailConverseContentQualifierList, location_name: "qualifiers"))
491
520
  GuardrailConverseTextBlock.struct_class = Types::GuardrailConverseTextBlock
492
521
 
493
522
  GuardrailCoverage.add_member(:text_characters, Shapes::ShapeRef.new(shape: GuardrailTextCharactersCoverage, location_name: "textCharacters"))
523
+ GuardrailCoverage.add_member(:images, Shapes::ShapeRef.new(shape: GuardrailImageCoverage, location_name: "images"))
494
524
  GuardrailCoverage.struct_class = Types::GuardrailCoverage
495
525
 
496
526
  GuardrailCustomWord.add_member(:match, Shapes::ShapeRef.new(shape: String, required: true, location_name: "match"))
@@ -499,6 +529,20 @@ module Aws::BedrockRuntime
499
529
 
500
530
  GuardrailCustomWordList.member = Shapes::ShapeRef.new(shape: GuardrailCustomWord)
501
531
 
532
+ GuardrailImageBlock.add_member(:format, Shapes::ShapeRef.new(shape: GuardrailImageFormat, required: true, location_name: "format"))
533
+ GuardrailImageBlock.add_member(:source, Shapes::ShapeRef.new(shape: GuardrailImageSource, required: true, location_name: "source"))
534
+ GuardrailImageBlock.struct_class = Types::GuardrailImageBlock
535
+
536
+ GuardrailImageCoverage.add_member(:guarded, Shapes::ShapeRef.new(shape: ImagesGuarded, location_name: "guarded"))
537
+ GuardrailImageCoverage.add_member(:total, Shapes::ShapeRef.new(shape: ImagesTotal, location_name: "total"))
538
+ GuardrailImageCoverage.struct_class = Types::GuardrailImageCoverage
539
+
540
+ GuardrailImageSource.add_member(:bytes, Shapes::ShapeRef.new(shape: GuardrailImageSourceBytesBlob, location_name: "bytes"))
541
+ GuardrailImageSource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
542
+ GuardrailImageSource.add_member_subclass(:bytes, Types::GuardrailImageSource::Bytes)
543
+ GuardrailImageSource.add_member_subclass(:unknown, Types::GuardrailImageSource::Unknown)
544
+ GuardrailImageSource.struct_class = Types::GuardrailImageSource
545
+
502
546
  GuardrailInvocationMetrics.add_member(:guardrail_processing_latency, Shapes::ShapeRef.new(shape: GuardrailProcessingLatency, location_name: "guardrailProcessingLatency"))
503
547
  GuardrailInvocationMetrics.add_member(:usage, Shapes::ShapeRef.new(shape: GuardrailUsage, location_name: "usage"))
504
548
  GuardrailInvocationMetrics.add_member(:guardrail_coverage, Shapes::ShapeRef.new(shape: GuardrailCoverage, location_name: "guardrailCoverage"))
@@ -685,6 +729,9 @@ module Aws::BedrockRuntime
685
729
  PerformanceConfiguration.add_member(:latency, Shapes::ShapeRef.new(shape: PerformanceConfigLatency, location_name: "latency"))
686
730
  PerformanceConfiguration.struct_class = Types::PerformanceConfiguration
687
731
 
732
+ PromptRouterTrace.add_member(:invoked_model_id, Shapes::ShapeRef.new(shape: InvokedModelId, location_name: "invokedModelId"))
733
+ PromptRouterTrace.struct_class = Types::PromptRouterTrace
734
+
688
735
  PromptVariableMap.key = Shapes::ShapeRef.new(shape: String)
689
736
  PromptVariableMap.value = Shapes::ShapeRef.new(shape: PromptVariableValues)
690
737
 
@@ -843,10 +843,15 @@ module Aws::BedrockRuntime
843
843
  # The guardrail trace object.
844
844
  # @return [Types::GuardrailTraceAssessment]
845
845
  #
846
+ # @!attribute [rw] prompt_router
847
+ # The request's prompt router.
848
+ # @return [Types::PromptRouterTrace]
849
+ #
846
850
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ConverseStreamTrace AWS API Documentation
847
851
  #
848
852
  class ConverseStreamTrace < Struct.new(
849
- :guardrail)
853
+ :guardrail,
854
+ :prompt_router)
850
855
  SENSITIVE = []
851
856
  include Aws::Structure
852
857
  end
@@ -862,10 +867,15 @@ module Aws::BedrockRuntime
862
867
  # The guardrail trace object.
863
868
  # @return [Types::GuardrailTraceAssessment]
864
869
  #
870
+ # @!attribute [rw] prompt_router
871
+ # The request's prompt router.
872
+ # @return [Types::PromptRouterTrace]
873
+ #
865
874
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/ConverseTrace AWS API Documentation
866
875
  #
867
876
  class ConverseTrace < Struct.new(
868
- :guardrail)
877
+ :guardrail,
878
+ :prompt_router)
869
879
  SENSITIVE = []
870
880
  include Aws::Structure
871
881
  end
@@ -1076,16 +1086,23 @@ module Aws::BedrockRuntime
1076
1086
  # Text within content block to be evaluated by the guardrail.
1077
1087
  # @return [Types::GuardrailTextBlock]
1078
1088
  #
1089
+ # @!attribute [rw] image
1090
+ # Image within guardrail content block to be evaluated by the
1091
+ # guardrail.
1092
+ # @return [Types::GuardrailImageBlock]
1093
+ #
1079
1094
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailContentBlock AWS API Documentation
1080
1095
  #
1081
1096
  class GuardrailContentBlock < Struct.new(
1082
1097
  :text,
1098
+ :image,
1083
1099
  :unknown)
1084
- SENSITIVE = []
1100
+ SENSITIVE = [:image]
1085
1101
  include Aws::Structure
1086
1102
  include Aws::Structure::Union
1087
1103
 
1088
1104
  class Text < GuardrailContentBlock; end
1105
+ class Image < GuardrailContentBlock; end
1089
1106
  class Unknown < GuardrailContentBlock; end
1090
1107
  end
1091
1108
 
@@ -1193,19 +1210,71 @@ module Aws::BedrockRuntime
1193
1210
  # The text to guard.
1194
1211
  # @return [Types::GuardrailConverseTextBlock]
1195
1212
  #
1213
+ # @!attribute [rw] image
1214
+ # Image within converse content block to be evaluated by the
1215
+ # guardrail.
1216
+ # @return [Types::GuardrailConverseImageBlock]
1217
+ #
1196
1218
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailConverseContentBlock AWS API Documentation
1197
1219
  #
1198
1220
  class GuardrailConverseContentBlock < Struct.new(
1199
1221
  :text,
1222
+ :image,
1200
1223
  :unknown)
1201
- SENSITIVE = []
1224
+ SENSITIVE = [:image]
1202
1225
  include Aws::Structure
1203
1226
  include Aws::Structure::Union
1204
1227
 
1205
1228
  class Text < GuardrailConverseContentBlock; end
1229
+ class Image < GuardrailConverseContentBlock; end
1206
1230
  class Unknown < GuardrailConverseContentBlock; end
1207
1231
  end
1208
1232
 
1233
+ # An image block that contains images that you want to assess with a
1234
+ # guardrail.
1235
+ #
1236
+ # @!attribute [rw] format
1237
+ # The format details for the image type of the guardrail converse
1238
+ # image block.
1239
+ # @return [String]
1240
+ #
1241
+ # @!attribute [rw] source
1242
+ # The image source (image bytes) of the guardrail converse image
1243
+ # block.
1244
+ # @return [Types::GuardrailConverseImageSource]
1245
+ #
1246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailConverseImageBlock AWS API Documentation
1247
+ #
1248
+ class GuardrailConverseImageBlock < Struct.new(
1249
+ :format,
1250
+ :source)
1251
+ SENSITIVE = [:source]
1252
+ include Aws::Structure
1253
+ end
1254
+
1255
+ # The image source (image bytes) of the guardrail converse image source.
1256
+ #
1257
+ # @note GuardrailConverseImageSource is a union - when making an API calls you must set exactly one of the members.
1258
+ #
1259
+ # @note GuardrailConverseImageSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GuardrailConverseImageSource corresponding to the set member.
1260
+ #
1261
+ # @!attribute [rw] bytes
1262
+ # The raw image bytes for the image.
1263
+ # @return [String]
1264
+ #
1265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailConverseImageSource AWS API Documentation
1266
+ #
1267
+ class GuardrailConverseImageSource < Struct.new(
1268
+ :bytes,
1269
+ :unknown)
1270
+ SENSITIVE = []
1271
+ include Aws::Structure
1272
+ include Aws::Structure::Union
1273
+
1274
+ class Bytes < GuardrailConverseImageSource; end
1275
+ class Unknown < GuardrailConverseImageSource; end
1276
+ end
1277
+
1209
1278
  # A text block that contains text that you want to assess with a
1210
1279
  # guardrail. For more information, see GuardrailConverseContentBlock.
1211
1280
  #
@@ -1233,10 +1302,16 @@ module Aws::BedrockRuntime
1233
1302
  # The text characters of the guardrail coverage details.
1234
1303
  # @return [Types::GuardrailTextCharactersCoverage]
1235
1304
  #
1305
+ # @!attribute [rw] images
1306
+ # The guardrail coverage for images (the number of images that
1307
+ # guardrails guarded).
1308
+ # @return [Types::GuardrailImageCoverage]
1309
+ #
1236
1310
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailCoverage AWS API Documentation
1237
1311
  #
1238
1312
  class GuardrailCoverage < Struct.new(
1239
- :text_characters)
1313
+ :text_characters,
1314
+ :images)
1240
1315
  SENSITIVE = []
1241
1316
  include Aws::Structure
1242
1317
  end
@@ -1260,6 +1335,71 @@ module Aws::BedrockRuntime
1260
1335
  include Aws::Structure
1261
1336
  end
1262
1337
 
1338
+ # Contain an image which user wants guarded. This block is accepted by
1339
+ # the guardrails independent API.
1340
+ #
1341
+ # @!attribute [rw] format
1342
+ # The format details for the file type of the image blocked by the
1343
+ # guardrail.
1344
+ # @return [String]
1345
+ #
1346
+ # @!attribute [rw] source
1347
+ # The image source (image bytes) details of the image blocked by the
1348
+ # guardrail.
1349
+ # @return [Types::GuardrailImageSource]
1350
+ #
1351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailImageBlock AWS API Documentation
1352
+ #
1353
+ class GuardrailImageBlock < Struct.new(
1354
+ :format,
1355
+ :source)
1356
+ SENSITIVE = [:source]
1357
+ include Aws::Structure
1358
+ end
1359
+
1360
+ # The details of the guardrail image coverage.
1361
+ #
1362
+ # @!attribute [rw] guarded
1363
+ # The count (integer) of images guardrails guarded.
1364
+ # @return [Integer]
1365
+ #
1366
+ # @!attribute [rw] total
1367
+ # Represents the total number of images (integer) that were in the
1368
+ # request (guarded and unguarded).
1369
+ # @return [Integer]
1370
+ #
1371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailImageCoverage AWS API Documentation
1372
+ #
1373
+ class GuardrailImageCoverage < Struct.new(
1374
+ :guarded,
1375
+ :total)
1376
+ SENSITIVE = []
1377
+ include Aws::Structure
1378
+ end
1379
+
1380
+ # The image source (image bytes) of the guardrail image source. Object
1381
+ # used in independent api.
1382
+ #
1383
+ # @note GuardrailImageSource is a union - when making an API calls you must set exactly one of the members.
1384
+ #
1385
+ # @!attribute [rw] bytes
1386
+ # The bytes details of the guardrail image source. Object used in
1387
+ # independent api.
1388
+ # @return [String]
1389
+ #
1390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/GuardrailImageSource AWS API Documentation
1391
+ #
1392
+ class GuardrailImageSource < Struct.new(
1393
+ :bytes,
1394
+ :unknown)
1395
+ SENSITIVE = []
1396
+ include Aws::Structure
1397
+ include Aws::Structure::Union
1398
+
1399
+ class Bytes < GuardrailImageSource; end
1400
+ class Unknown < GuardrailImageSource; end
1401
+ end
1402
+
1263
1403
  # The invocation metrics for the guardrail.
1264
1404
  #
1265
1405
  # @!attribute [rw] guardrail_processing_latency
@@ -2236,6 +2376,20 @@ module Aws::BedrockRuntime
2236
2376
  include Aws::Structure
2237
2377
  end
2238
2378
 
2379
+ # A prompt router trace.
2380
+ #
2381
+ # @!attribute [rw] invoked_model_id
2382
+ # The ID of the invoked model.
2383
+ # @return [String]
2384
+ #
2385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-runtime-2023-09-30/PromptRouterTrace AWS API Documentation
2386
+ #
2387
+ class PromptRouterTrace < Struct.new(
2388
+ :invoked_model_id)
2389
+ SENSITIVE = []
2390
+ include Aws::Structure
2391
+ end
2392
+
2239
2393
  # Contains a map of variables in a prompt from Prompt management to an
2240
2394
  # object containing the values to fill in for them when running model
2241
2395
  # invocation. For more information, see [How Prompt management
@@ -56,7 +56,7 @@ module Aws::BedrockRuntime
56
56
  autoload :Endpoints, 'aws-sdk-bedrockruntime/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-bedrockruntime/event_streams'
58
58
 
59
- GEM_VERSION = '1.33.0'
59
+ GEM_VERSION = '1.35.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -42,7 +42,9 @@ module Aws
42
42
  ?max_attempts: Integer,
43
43
  ?output_event_stream_handler: Proc,
44
44
  ?profile: String,
45
+ ?request_checksum_calculation: String,
45
46
  ?request_min_compression_size_bytes: Integer,
47
+ ?response_checksum_validation: String,
46
48
  ?retry_backoff: Proc,
47
49
  ?retry_base_delay: Float,
48
50
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -96,6 +98,12 @@ module Aws
96
98
  text: {
97
99
  text: ::String,
98
100
  qualifiers: Array[("grounding_source" | "query" | "guard_content")]?
101
+ }?,
102
+ image: {
103
+ format: ("png" | "jpeg"),
104
+ source: {
105
+ bytes: ::String?
106
+ }
99
107
  }?
100
108
  },
101
109
  ]
@@ -188,6 +196,12 @@ module Aws
188
196
  text: {
189
197
  text: ::String,
190
198
  qualifiers: Array[("grounding_source" | "query" | "guard_content")]?
199
+ }?,
200
+ image: {
201
+ format: ("png" | "jpeg"),
202
+ source: {
203
+ bytes: ::String?
204
+ }
191
205
  }?
192
206
  }?
193
207
  },
@@ -201,6 +215,12 @@ module Aws
201
215
  text: {
202
216
  text: ::String,
203
217
  qualifiers: Array[("grounding_source" | "query" | "guard_content")]?
218
+ }?,
219
+ image: {
220
+ format: ("png" | "jpeg"),
221
+ source: {
222
+ bytes: ::String?
223
+ }
204
224
  }?
205
225
  }?
206
226
  },
@@ -332,6 +352,12 @@ module Aws
332
352
  text: {
333
353
  text: ::String,
334
354
  qualifiers: Array[("grounding_source" | "query" | "guard_content")]?
355
+ }?,
356
+ image: {
357
+ format: ("png" | "jpeg"),
358
+ source: {
359
+ bytes: ::String?
360
+ }
335
361
  }?
336
362
  }?
337
363
  },
@@ -345,6 +371,12 @@ module Aws
345
371
  text: {
346
372
  text: ::String,
347
373
  qualifiers: Array[("grounding_source" | "query" | "guard_content")]?
374
+ }?,
375
+ image: {
376
+ format: ("png" | "jpeg"),
377
+ source: {
378
+ bytes: ::String?
379
+ }
348
380
  }?
349
381
  }?
350
382
  },
data/sig/resource.rbs CHANGED
@@ -42,7 +42,9 @@ module Aws
42
42
  ?max_attempts: Integer,
43
43
  ?output_event_stream_handler: Proc,
44
44
  ?profile: String,
45
+ ?request_checksum_calculation: String,
45
46
  ?request_min_compression_size_bytes: Integer,
47
+ ?response_checksum_validation: String,
46
48
  ?retry_backoff: Proc,
47
49
  ?retry_base_delay: Float,
48
50
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -224,11 +224,13 @@ module Aws::BedrockRuntime
224
224
 
225
225
  class ConverseStreamTrace
226
226
  attr_accessor guardrail: Types::GuardrailTraceAssessment
227
+ attr_accessor prompt_router: Types::PromptRouterTrace
227
228
  SENSITIVE: []
228
229
  end
229
230
 
230
231
  class ConverseTrace
231
232
  attr_accessor guardrail: Types::GuardrailTraceAssessment
233
+ attr_accessor prompt_router: Types::PromptRouterTrace
232
234
  SENSITIVE: []
233
235
  end
234
236
 
@@ -287,11 +289,14 @@ module Aws::BedrockRuntime
287
289
 
288
290
  class GuardrailContentBlock
289
291
  attr_accessor text: Types::GuardrailTextBlock
292
+ attr_accessor image: Types::GuardrailImageBlock
290
293
  attr_accessor unknown: untyped
291
- SENSITIVE: []
294
+ SENSITIVE: [:image]
292
295
 
293
296
  class Text < GuardrailContentBlock
294
297
  end
298
+ class Image < GuardrailContentBlock
299
+ end
295
300
  class Unknown < GuardrailContentBlock
296
301
  end
297
302
  end
@@ -324,15 +329,35 @@ module Aws::BedrockRuntime
324
329
 
325
330
  class GuardrailConverseContentBlock
326
331
  attr_accessor text: Types::GuardrailConverseTextBlock
332
+ attr_accessor image: Types::GuardrailConverseImageBlock
327
333
  attr_accessor unknown: untyped
328
- SENSITIVE: []
334
+ SENSITIVE: [:image]
329
335
 
330
336
  class Text < GuardrailConverseContentBlock
331
337
  end
338
+ class Image < GuardrailConverseContentBlock
339
+ end
332
340
  class Unknown < GuardrailConverseContentBlock
333
341
  end
334
342
  end
335
343
 
344
+ class GuardrailConverseImageBlock
345
+ attr_accessor format: ("png" | "jpeg")
346
+ attr_accessor source: Types::GuardrailConverseImageSource
347
+ SENSITIVE: [:source]
348
+ end
349
+
350
+ class GuardrailConverseImageSource
351
+ attr_accessor bytes: ::String
352
+ attr_accessor unknown: untyped
353
+ SENSITIVE: []
354
+
355
+ class Bytes < GuardrailConverseImageSource
356
+ end
357
+ class Unknown < GuardrailConverseImageSource
358
+ end
359
+ end
360
+
336
361
  class GuardrailConverseTextBlock
337
362
  attr_accessor text: ::String
338
363
  attr_accessor qualifiers: ::Array[("grounding_source" | "query" | "guard_content")]
@@ -341,6 +366,7 @@ module Aws::BedrockRuntime
341
366
 
342
367
  class GuardrailCoverage
343
368
  attr_accessor text_characters: Types::GuardrailTextCharactersCoverage
369
+ attr_accessor images: Types::GuardrailImageCoverage
344
370
  SENSITIVE: []
345
371
  end
346
372
 
@@ -350,6 +376,29 @@ module Aws::BedrockRuntime
350
376
  SENSITIVE: []
351
377
  end
352
378
 
379
+ class GuardrailImageBlock
380
+ attr_accessor format: ("png" | "jpeg")
381
+ attr_accessor source: Types::GuardrailImageSource
382
+ SENSITIVE: [:source]
383
+ end
384
+
385
+ class GuardrailImageCoverage
386
+ attr_accessor guarded: ::Integer
387
+ attr_accessor total: ::Integer
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class GuardrailImageSource
392
+ attr_accessor bytes: ::String
393
+ attr_accessor unknown: untyped
394
+ SENSITIVE: []
395
+
396
+ class Bytes < GuardrailImageSource
397
+ end
398
+ class Unknown < GuardrailImageSource
399
+ end
400
+ end
401
+
353
402
  class GuardrailInvocationMetrics
354
403
  attr_accessor guardrail_processing_latency: ::Integer
355
404
  attr_accessor usage: Types::GuardrailUsage
@@ -587,6 +636,11 @@ module Aws::BedrockRuntime
587
636
  SENSITIVE: []
588
637
  end
589
638
 
639
+ class PromptRouterTrace
640
+ attr_accessor invoked_model_id: ::String
641
+ SENSITIVE: []
642
+ end
643
+
590
644
  class PromptVariableValues
591
645
  attr_accessor text: ::String
592
646
  attr_accessor unknown: untyped
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.35.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: 2024-12-03 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement