aws-sdk-bedrockagentcorecontrol 1.67.0 → 1.68.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: 770a7151d77e06bb0ce0dad02c2c2ed80aea83855a33bd019f46b093550f5754
4
- data.tar.gz: cef87f2f155e7607e03286ddff6c8d6de8d6acf2309fbfee3d80315640e4be9a
3
+ metadata.gz: df3dca5e59c839473d19f04538f2240737e16f411fb95740412d585b04c03b28
4
+ data.tar.gz: 5901740c794fa61d97dbbe1c7d4d34be65db54a6ca66acb0fd0083c7d3ebffa6
5
5
  SHA512:
6
- metadata.gz: ee0fa98a56e78bbfc31f7d13e5ca03159d283cdb0d82e7c7f440a70da7c1ae76841b24f95e276e8cc20a4a988fd53787a7ea84a54b7a05925fd59932c3846b82
7
- data.tar.gz: baeec973e943b23323bfd18d1213fa9214bf1486965cbd2ee2158965ef548e9e8e854967a4cfdc396505e4f5f050cdbe4e37a0b8d0c8b51377dd0835caa04125
6
+ metadata.gz: ef977f9ac563b15e15ad31c63d34e836817e493917066027d62b0c630b55c8494f3fc650419f96177283ed8b91144efa747acab4deea03470df1659482cffb38
7
+ data.tar.gz: 522256650b8c5bee01a83f765b41d7e78048494c529372c314a77f3d8648bb6c630d05555a5979f42b31729284fd86809a6717cfaf81c8b61572d1b815ccecaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2026-09-01)
5
+ ------------------
6
+
7
+ * Feature - Online evaluation configurations now support up to 25 evaluators. CloudWatch Logs data sources for online evaluation now support up to 10 log groups.
8
+
4
9
  1.67.0 (2026-08-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -4891,15 +4891,15 @@ module Aws::BedrockAgentCoreControl
4891
4891
 
4892
4892
  # Creates a policy within the AgentCore Policy system. Policies provide
4893
4893
  # real-time, deterministic control over agentic interactions with
4894
- # AgentCore Gateway. Using the Cedar policy language, you can define
4895
- # fine-grained policies that specify which interactions with Gateway
4896
- # tools are permitted based on input parameters and OAuth claims,
4897
- # ensuring agents operate within defined boundaries and business rules.
4898
- # The policy is validated during creation against the Cedar schema
4899
- # generated from the Gateway's tools' input schemas, which defines the
4900
- # available tools, their parameters, and expected data types. This is an
4901
- # asynchronous operation. Use the [GetPolicy][1] operation to poll the
4902
- # `status` field to track completion.
4894
+ # AgentCore Gateway. Using Cedar or Dogwood, you can define fine-grained
4895
+ # policies that specify which interactions with Gateway tools are
4896
+ # permitted based on input parameters and OAuth claims, ensuring agents
4897
+ # operate within defined boundaries and business rules. The policy is
4898
+ # validated during creation against the Cedar schema generated from the
4899
+ # Gateway's tools' input schemas, which defines the available tools,
4900
+ # their parameters, and expected data types. This is an asynchronous
4901
+ # operation. Use the [GetPolicy][1] operation to poll the `status` field
4902
+ # to track completion.
4903
4903
  #
4904
4904
  # If the new policy is a temporal policy, creating it invalidates the
4905
4905
  # policy engine's active temporal sessions. For more information about
@@ -4919,10 +4919,10 @@ module Aws::BedrockAgentCoreControl
4919
4919
  # cannot be changed after creation.
4920
4920
  #
4921
4921
  # @option params [required, Types::PolicyDefinition] :definition
4922
- # The Cedar policy statement that defines the access control rules. This
4923
- # contains the actual policy logic written in Cedar policy language,
4924
- # specifying effect (permit or forbid), principals, actions, resources,
4925
- # and conditions for agent behavior control.
4922
+ # The Cedar or Dogwood policy statement that defines the access control
4923
+ # rules. This contains the actual policy logic written in Cedar or
4924
+ # Dogwood, specifying effect (permit or forbid), principals, actions,
4925
+ # resources, and conditions for agent behavior control.
4926
4926
  #
4927
4927
  # @option params [String] :description
4928
4928
  # A human-readable description of the policy's purpose and
@@ -8921,7 +8921,7 @@ module Aws::BedrockAgentCoreControl
8921
8921
 
8922
8922
  # Retrieves information about a policy generation request within the
8923
8923
  # AgentCore Policy system. Policy generation converts natural language
8924
- # descriptions into Cedar policy statements using AI-powered
8924
+ # descriptions into Dogwood policy statements using AI-powered
8925
8925
  # translation, enabling non-technical users to create policies.
8926
8926
  #
8927
8927
  # @option params [required, String] :policy_generation_id
@@ -10975,9 +10975,9 @@ module Aws::BedrockAgentCoreControl
10975
10975
 
10976
10976
  # Retrieves a list of generated policy assets from a policy generation
10977
10977
  # request within the AgentCore Policy system. This operation returns the
10978
- # actual Cedar policies and related artifacts produced by the AI-powered
10979
- # policy generation process, allowing users to review and select from
10980
- # multiple generated policy options.
10978
+ # actual Dogwood policies and related artifacts produced by the
10979
+ # AI-powered policy generation process, allowing users to review and
10980
+ # select from multiple generated policy options.
10981
10981
  #
10982
10982
  # @option params [required, String] :policy_generation_id
10983
10983
  # The unique identifier of the policy generation request whose assets
@@ -11532,20 +11532,20 @@ module Aws::BedrockAgentCoreControl
11532
11532
  req.send_request(options)
11533
11533
  end
11534
11534
 
11535
- # Initiates the AI-powered generation of Cedar policies from natural
11535
+ # Initiates the AI-powered generation of Dogwood policies from natural
11536
11536
  # language descriptions within the AgentCore Policy system. This feature
11537
11537
  # enables both technical and non-technical users to create policies by
11538
11538
  # describing their authorization requirements in plain English, which is
11539
- # then automatically translated into formal Cedar policy statements. The
11540
- # generation process analyzes the natural language input along with the
11541
- # Gateway's tool context to produce validated policy options. Generated
11542
- # policy assets are automatically deleted after 7 days, so you should
11543
- # review and create policies from the generated assets within this
11544
- # timeframe. Once created, policies are permanent and not subject to
11545
- # this expiration. Generated policies should be reviewed and tested in
11546
- # log-only mode before deploying to production. Use this when you want
11547
- # to describe policy intent naturally rather than learning Cedar syntax,
11548
- # though generated policies may require refinement for complex
11539
+ # then automatically translated into formal Dogwood policy statements.
11540
+ # The generation process analyzes the natural language input along with
11541
+ # the Gateway's tool context to produce validated policy options.
11542
+ # Generated policy assets are automatically deleted after 7 days, so you
11543
+ # should review and create policies from the generated assets within
11544
+ # this timeframe. Once created, policies are permanent and not subject
11545
+ # to this expiration. Generated policies should be reviewed and tested
11546
+ # in log-only mode before deploying to production. Use this when you
11547
+ # want to describe policy intent naturally rather than learning Dogwood
11548
+ # syntax, though generated policies may require refinement for complex
11549
11549
  # scenarios.
11550
11550
  #
11551
11551
  # @option params [required, String] :policy_engine_id
@@ -11560,7 +11560,7 @@ module Aws::BedrockAgentCoreControl
11560
11560
  #
11561
11561
  # @option params [required, Types::Content] :content
11562
11562
  # The natural language description of the desired policy behavior. This
11563
- # content is processed by AI to generate corresponding Cedar policy
11563
+ # content is processed by AI to generate corresponding Dogwood policy
11564
11564
  # statements that match the described intent.
11565
11565
  #
11566
11566
  # @option params [required, String] :name
@@ -12347,7 +12347,7 @@ module Aws::BedrockAgentCoreControl
12347
12347
  # The updated component configurations. Creates a new version of the
12348
12348
  # bundle.
12349
12349
  #
12350
- # @option params [Array<String>] :parent_version_ids
12350
+ # @option params [required, Array<String>] :parent_version_ids
12351
12351
  # A list of parent version identifiers for lineage tracking. Regular
12352
12352
  # commits have a single parent. Merge commits have two parents: the
12353
12353
  # target branch parent and the source branch parent. If the branch
@@ -12390,7 +12390,7 @@ module Aws::BedrockAgentCoreControl
12390
12390
  # },
12391
12391
  # },
12392
12392
  # },
12393
- # parent_version_ids: ["ConfigurationBundleVersion"],
12393
+ # parent_version_ids: ["ConfigurationBundleVersion"], # required
12394
12394
  # branch_name: "BranchName",
12395
12395
  # commit_message: "UpdateConfigurationBundleRequestCommitMessageString",
12396
12396
  # created_by: {
@@ -15716,9 +15716,9 @@ module Aws::BedrockAgentCoreControl
15716
15716
  # policy logic.
15717
15717
  #
15718
15718
  # @option params [Types::PolicyDefinition] :definition
15719
- # The new Cedar policy statement that defines the access control rules.
15720
- # This replaces the existing policy definition with new logic while
15721
- # maintaining the policy's identity.
15719
+ # The new Cedar or Dogwood policy statement that defines the access
15720
+ # control rules. This replaces the existing policy definition with new
15721
+ # logic while maintaining the policy's identity.
15722
15722
  #
15723
15723
  # @option params [String] :validation_mode
15724
15724
  # The validation mode for the policy update. Determines how Cedar
@@ -16361,7 +16361,7 @@ module Aws::BedrockAgentCoreControl
16361
16361
  tracer: tracer
16362
16362
  )
16363
16363
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
16364
- context[:gem_version] = '1.67.0'
16364
+ context[:gem_version] = '1.68.0'
16365
16365
  Seahorse::Client::Request.new(handlers, context)
16366
16366
  end
16367
16367
 
@@ -5710,7 +5710,7 @@ module Aws::BedrockAgentCoreControl
5710
5710
  UpdateConfigurationBundleRequest.add_member(:bundle_name, Shapes::ShapeRef.new(shape: ConfigurationBundleName, location_name: "bundleName"))
5711
5711
  UpdateConfigurationBundleRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationBundleDescription, location_name: "description"))
5712
5712
  UpdateConfigurationBundleRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationMap, location_name: "components"))
5713
- UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, location_name: "parentVersionIds"))
5713
+ UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, required: true, location_name: "parentVersionIds"))
5714
5714
  UpdateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
5715
5715
  UpdateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: UpdateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
5716
5716
  UpdateConfigurationBundleRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: VersionCreatedBySource, location_name: "createdBy"))
@@ -1940,7 +1940,7 @@ module Aws::BedrockAgentCoreControl
1940
1940
  # @!attribute [rw] raw_text
1941
1941
  # The raw text content containing natural language descriptions of
1942
1942
  # desired policy behavior. This text is processed by AI to generate
1943
- # corresponding Cedar policy statements that match the described
1943
+ # corresponding Dogwood policy statements that match the described
1944
1944
  # intent.
1945
1945
  # @return [String]
1946
1946
  #
@@ -4499,10 +4499,10 @@ module Aws::BedrockAgentCoreControl
4499
4499
  # @return [String]
4500
4500
  #
4501
4501
  # @!attribute [rw] definition
4502
- # The Cedar policy statement that defines the access control rules.
4503
- # This contains the actual policy logic written in Cedar policy
4504
- # language, specifying effect (permit or forbid), principals, actions,
4505
- # resources, and conditions for agent behavior control.
4502
+ # The Cedar or Dogwood policy statement that defines the access
4503
+ # control rules. This contains the actual policy logic written in
4504
+ # Cedar or Dogwood, specifying effect (permit or forbid), principals,
4505
+ # actions, resources, and conditions for agent behavior control.
4506
4506
  # @return [Types::PolicyDefinition]
4507
4507
  #
4508
4508
  # @!attribute [rw] description
@@ -4612,9 +4612,9 @@ module Aws::BedrockAgentCoreControl
4612
4612
  # @return [String]
4613
4613
  #
4614
4614
  # @!attribute [rw] definition
4615
- # The Cedar policy statement that was created. This is the validated
4616
- # policy definition that will be used for agent behavior control and
4617
- # access decisions.
4615
+ # The Cedar or Dogwood policy statement that was created. This is the
4616
+ # validated policy definition that will be used for agent behavior
4617
+ # control and access decisions.
4618
4618
  # @return [Types::PolicyDefinition]
4619
4619
  #
4620
4620
  # @!attribute [rw] description
@@ -7880,10 +7880,10 @@ module Aws::BedrockAgentCoreControl
7880
7880
  # allow or deny each action based on the defined policies.
7881
7881
  #
7882
7882
  # @!attribute [rw] arn
7883
- # The ARN of the policy engine. The policy engine contains Cedar
7884
- # policies that define fine-grained authorization rules specifying who
7885
- # can perform what actions on which resources as agents interact
7886
- # through the gateway.
7883
+ # The ARN of the policy engine. The policy engine contains Cedar or
7884
+ # Dogwood policies that define fine-grained authorization rules
7885
+ # specifying who can perform what actions on which resources as agents
7886
+ # interact through the gateway.
7887
7887
  # @return [String]
7888
7888
  #
7889
7889
  # @!attribute [rw] mode
@@ -10449,9 +10449,9 @@ module Aws::BedrockAgentCoreControl
10449
10449
  # @return [String]
10450
10450
  #
10451
10451
  # @!attribute [rw] definition
10452
- # The Cedar policy statement that defines the access control rules.
10453
- # This contains the actual policy logic used for agent behavior
10454
- # control and access decisions.
10452
+ # The Cedar or Dogwood policy statement that defines the access
10453
+ # control rules. This contains the actual policy logic used for agent
10454
+ # behavior control and access decisions.
10455
10455
  # @return [Types::PolicyDefinition]
10456
10456
  #
10457
10457
  # @!attribute [rw] description
@@ -14480,7 +14480,7 @@ module Aws::BedrockAgentCoreControl
14480
14480
  end
14481
14481
 
14482
14482
  # @!attribute [rw] policy_generation_assets
14483
- # An array of generated policy assets including Cedar policies and
14483
+ # An array of generated policy assets including Dogwood policies and
14484
14484
  # related artifacts from the AI-powered policy generation process.
14485
14485
  # Each asset represents a different policy option or variation
14486
14486
  # generated from the original natural language input.
@@ -16762,17 +16762,17 @@ module Aws::BedrockAgentCoreControl
16762
16762
  end
16763
16763
 
16764
16764
  # Represents a complete policy resource within the AgentCore Policy
16765
- # system. Policies are ARN-able resources that contain Cedar policy
16766
- # statements and associated metadata for controlling agent behavior and
16767
- # access decisions. Each policy belongs to a policy engine and defines
16768
- # fine-grained authorization rules that are evaluated in real-time as
16769
- # agents interact with tools through Gateway. Policies use the Cedar
16770
- # policy language to specify who (principals based on OAuth claims like
16765
+ # system. Policies are ARN-able resources that contain Cedar or Dogwood
16766
+ # policy statements and associated metadata for controlling agent
16767
+ # behavior and access decisions. Each policy belongs to a policy engine
16768
+ # and defines fine-grained authorization rules that are evaluated in
16769
+ # real-time as agents interact with tools through Gateway. Policies use
16770
+ # Cedar or Dogwood to specify who (principals based on OAuth claims like
16771
16771
  # username, role, or scope) can perform what actions (tool calls) on
16772
16772
  # which resources (Gateways), with optional conditions for
16773
16773
  # attribute-based access control. Multiple policies can apply to a
16774
- # single request, with Cedar's forbid-wins semantics ensuring that
16775
- # security restrictions are never accidentally overridden.
16774
+ # single request, with forbid-wins semantics ensuring that security
16775
+ # restrictions are never accidentally overridden.
16776
16776
  #
16777
16777
  # @!attribute [rw] policy_id
16778
16778
  # The unique identifier for the policy. This system-generated
@@ -16818,9 +16818,9 @@ module Aws::BedrockAgentCoreControl
16818
16818
  # @return [String]
16819
16819
  #
16820
16820
  # @!attribute [rw] definition
16821
- # The Cedar policy statement that defines the access control rules.
16822
- # This contains the actual policy logic used for agent behavior
16823
- # control and access decisions.
16821
+ # The Cedar or Dogwood policy statement that defines the access
16822
+ # control rules. This contains the actual policy logic used for agent
16823
+ # behavior control and access decisions.
16824
16824
  # @return [Types::PolicyDefinition]
16825
16825
  #
16826
16826
  # @!attribute [rw] description
@@ -16879,15 +16879,16 @@ module Aws::BedrockAgentCoreControl
16879
16879
  # The generated policy asset information within the policy definition
16880
16880
  # structure. This contains information identifying a generated policy
16881
16881
  # asset from the AI-powered policy generation process within the
16882
- # AgentCore Policy system. Each asset contains a Cedar policy
16882
+ # AgentCore Policy system. Each asset contains a Dogwood policy
16883
16883
  # statement generated from natural language input, along with
16884
16884
  # associated metadata and analysis findings to help users evaluate and
16885
16885
  # select the most appropriate policy option.
16886
16886
  # @return [Types::PolicyGenerationDetails]
16887
16887
  #
16888
16888
  # @!attribute [rw] policy
16889
- # An AgentCore policy statement that defines the access control rules.
16890
- # The statement can be a Cedar policy or a guardrails definition.
16889
+ # The Dogwood policy statement that defines the access control rules.
16890
+ # This policy definition can include Dogwood policies and supports
16891
+ # temporal conditions and information providers such as guardrails.
16891
16892
  # @return [Types::PolicyStatement]
16892
16893
  #
16893
16894
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyDefinition AWS API Documentation
@@ -17040,7 +17041,7 @@ module Aws::BedrockAgentCoreControl
17040
17041
 
17041
17042
  # Represents a policy generation request within the AgentCore Policy
17042
17043
  # system. Tracks the AI-powered conversion of natural language
17043
- # descriptions into Cedar policy statements, enabling users to author
17044
+ # descriptions into Dogwood policy statements, enabling users to author
17044
17045
  # policies by describing authorization requirements in plain English.
17045
17046
  # The generation process analyzes the natural language input along with
17046
17047
  # the Gateway's tool context and Cedar schema to produce one or more
@@ -17111,7 +17112,7 @@ module Aws::BedrockAgentCoreControl
17111
17112
 
17112
17113
  # Represents a generated policy asset from the AI-powered policy
17113
17114
  # generation process within the AgentCore Policy system. Each asset
17114
- # contains a Cedar policy statement generated from natural language
17115
+ # contains a Dogwood policy statement generated from natural language
17115
17116
  # input, along with associated metadata and analysis findings to help
17116
17117
  # users evaluate and select the most appropriate policy option.
17117
17118
  #
@@ -17133,13 +17134,13 @@ module Aws::BedrockAgentCoreControl
17133
17134
  # The portion of the original natural language input that this
17134
17135
  # generated policy asset addresses. This helps users understand which
17135
17136
  # part of their policy description was translated into this specific
17136
- # Cedar policy statement, enabling better policy selection and
17137
+ # Dogwood policy statement, enabling better policy selection and
17137
17138
  # refinement. When a single natural language input describes multiple
17138
17139
  # authorization requirements, the generation process creates separate
17139
17140
  # policy assets for each requirement, with each asset's
17140
17141
  # rawTextFragment showing which requirement it addresses. Use this
17141
17142
  # mapping to verify that all parts of your natural language input were
17142
- # correctly translated into Cedar policies.
17143
+ # correctly translated into Dogwood policies.
17143
17144
  # @return [String]
17144
17145
  #
17145
17146
  # @!attribute [rw] findings
@@ -17162,7 +17163,7 @@ module Aws::BedrockAgentCoreControl
17162
17163
 
17163
17164
  # Represents the information identifying a generated policy asset from
17164
17165
  # the AI-powered policy generation process within the AgentCore Policy
17165
- # system. Each asset contains a Cedar policy statement generated from
17166
+ # system. Each asset contains a Dogwood policy statement generated from
17166
17167
  # natural language input, along with associated metadata and analysis
17167
17168
  # findings to help users evaluate and select the most appropriate policy
17168
17169
  # option.
@@ -17244,12 +17245,13 @@ module Aws::BedrockAgentCoreControl
17244
17245
  include Aws::Structure
17245
17246
  end
17246
17247
 
17247
- # An AgentCore policy statement, which supports plain Cedar policies as
17248
- # well as guardrails definitions.
17248
+ # An AgentCore Cedar or Dogwood policy statement, which supports plain
17249
+ # Cedar policies, temporal policies, and guardrails definitions.
17249
17250
  #
17250
17251
  # @!attribute [rw] statement
17251
- # The body of the AgentCore policy statement. Contains the policy
17252
- # logic, which can be a Cedar policy or a guardrails definition.
17252
+ # The body of the AgentCore Cedar or Dogwood policy statement.
17253
+ # Contains the policy logic, which can be a Cedar policy, a temporal
17254
+ # policy, or a guardrails definition.
17253
17255
  # @return [String]
17254
17256
  #
17255
17257
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyStatement AWS API Documentation
@@ -18870,7 +18872,7 @@ module Aws::BedrockAgentCoreControl
18870
18872
  #
18871
18873
  # @!attribute [rw] content
18872
18874
  # The natural language description of the desired policy behavior.
18873
- # This content is processed by AI to generate corresponding Cedar
18875
+ # This content is processed by AI to generate corresponding Dogwood
18874
18876
  # policy statements that match the described intent.
18875
18877
  # @return [Types::Content]
18876
18878
  #
@@ -22079,9 +22081,9 @@ module Aws::BedrockAgentCoreControl
22079
22081
  # @return [Types::UpdatedDescription]
22080
22082
  #
22081
22083
  # @!attribute [rw] definition
22082
- # The new Cedar policy statement that defines the access control
22083
- # rules. This replaces the existing policy definition with new logic
22084
- # while maintaining the policy's identity.
22084
+ # The new Cedar or Dogwood policy statement that defines the access
22085
+ # control rules. This replaces the existing policy definition with new
22086
+ # logic while maintaining the policy's identity.
22085
22087
  # @return [Types::PolicyDefinition]
22086
22088
  #
22087
22089
  # @!attribute [rw] validation_mode
@@ -22149,7 +22151,7 @@ module Aws::BedrockAgentCoreControl
22149
22151
  # @return [String]
22150
22152
  #
22151
22153
  # @!attribute [rw] definition
22152
- # The updated Cedar policy statement.
22154
+ # The updated Cedar or Dogwood policy statement.
22153
22155
  # @return [Types::PolicyDefinition]
22154
22156
  #
22155
22157
  # @!attribute [rw] description
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.67.0'
58
+ GEM_VERSION = '1.68.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -2716,7 +2716,7 @@ module Aws
2716
2716
  configuration: {
2717
2717
  }
2718
2718
  }],
2719
- ?parent_version_ids: Array[::String],
2719
+ parent_version_ids: Array[::String],
2720
2720
  ?branch_name: ::String,
2721
2721
  ?commit_message: ::String,
2722
2722
  ?created_by: {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services