aws-sdk-bedrockagentcorecontrol 1.52.0 → 1.53.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: f9bb24571b662426e0795090f4f485223f02b945339bf6e6e80be84a0a89c418
4
- data.tar.gz: dea863f38509950a0fe480ab1d841a64d5a33a6f3d56722b8e1e688c77c8f1cd
3
+ metadata.gz: 35779e58d13f5a154e8c931813608073fc821ae83622427b23e339abf8ac791d
4
+ data.tar.gz: 1bfa0d8090e3cb637962cc01e1155fb3d7bd564ded54d15acfc317e0683eba6f
5
5
  SHA512:
6
- metadata.gz: f469cb9cb35e653a3a8b23995f771736aba3178126ec755ae877b2edb5d3945260f1b4ca79e5a006c6e89a8788cbe87fb5d6eed90f87a845c31c3911a4075614
7
- data.tar.gz: ff497d93c3905659a7940ae812b53109ca28bda2e0be2dc05046aa57e52f030b2f3fba50edf1c824caff6751478bb0108a102a11713911f7347819e15ca89d3e
6
+ metadata.gz: bc74ad541a371165946d028d86963c13f9d14f2036ac599ad20aa2b658542beb1e72af24711537f85a257169edf42c68bc5c28b1eafbe3c1421087b7c27e72e9
7
+ data.tar.gz: f6c0fb59e53095e68445c0113d6d8c92f9d3bde2006af868cc6fe046b7fe75f42a4018b1f795d4987ae2af89f2e9c49b5d8b0c876b9883bfb61a53d1725bbdd6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2026-06-12)
5
+ ------------------
6
+
7
+ * Feature - Added tagging and CMK support for optimizations and an insights feature to identify failure patterns, extract user intents, and summarize execution behavior
8
+
4
9
  1.52.0 (2026-06-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -1188,6 +1188,9 @@ module Aws::BedrockAgentCoreControl
1188
1188
  # The source that created this version, including the source name and
1189
1189
  # optional ARN.
1190
1190
  #
1191
+ # @option params [String] :kms_key_arn
1192
+ # Optional KMS key ARN for encrypting component configurations.
1193
+ #
1191
1194
  # @option params [Hash<String,String>] :tags
1192
1195
  # A map of tag keys and values to assign to the configuration bundle.
1193
1196
  # Tags enable you to categorize your resources in different ways, for
@@ -1218,6 +1221,7 @@ module Aws::BedrockAgentCoreControl
1218
1221
  # name: "String", # required
1219
1222
  # arn: "String",
1220
1223
  # },
1224
+ # kms_key_arn: "KmsKeyArn",
1221
1225
  # tags: {
1222
1226
  # "TagKey" => "TagValue",
1223
1227
  # },
@@ -3574,11 +3578,18 @@ module Aws::BedrockAgentCoreControl
3574
3578
  # The data source configuration that specifies CloudWatch log groups and
3575
3579
  # service names to monitor for agent traces.
3576
3580
  #
3577
- # @option params [required, Array<Types::EvaluatorReference>] :evaluators
3581
+ # @option params [Array<Types::EvaluatorReference>] :evaluators
3578
3582
  # The list of evaluators to apply during online evaluation. Can include
3579
3583
  # both built-in evaluators and custom evaluators created with
3580
3584
  # `CreateEvaluator`.
3581
3585
  #
3586
+ # @option params [Array<Types::Insight>] :insights
3587
+ # The list of insight types to run against agent sessions.
3588
+ #
3589
+ # @option params [Types::ClusteringConfig] :clustering_config
3590
+ # Configuration for periodic batch evaluation clustering of insight
3591
+ # results.
3592
+ #
3582
3593
  # @option params [required, String] :evaluation_execution_role_arn
3583
3594
  # The Amazon Resource Name (ARN) of the IAM role that grants permissions
3584
3595
  # to read from CloudWatch logs, write evaluation results, and invoke
@@ -3642,11 +3653,19 @@ module Aws::BedrockAgentCoreControl
3642
3653
  # service_names: ["ServiceName"], # required
3643
3654
  # },
3644
3655
  # },
3645
- # evaluators: [ # required
3656
+ # evaluators: [
3646
3657
  # {
3647
3658
  # evaluator_id: "EvaluatorId",
3648
3659
  # },
3649
3660
  # ],
3661
+ # insights: [
3662
+ # {
3663
+ # insight_id: "InsightId", # required
3664
+ # },
3665
+ # ],
3666
+ # clustering_config: {
3667
+ # frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
3668
+ # },
3650
3669
  # evaluation_execution_role_arn: "RoleArn", # required
3651
3670
  # enable_on_create: false, # required
3652
3671
  # tags: {
@@ -6098,6 +6117,7 @@ module Aws::BedrockAgentCoreControl
6098
6117
  # * {Types::GetConfigurationBundleResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
6099
6118
  # * {Types::GetConfigurationBundleResponse#created_at #created_at} => Time
6100
6119
  # * {Types::GetConfigurationBundleResponse#updated_at #updated_at} => Time
6120
+ # * {Types::GetConfigurationBundleResponse#kms_key_arn #kms_key_arn} => String
6101
6121
  #
6102
6122
  # @example Request syntax with placeholder values
6103
6123
  #
@@ -6122,6 +6142,7 @@ module Aws::BedrockAgentCoreControl
6122
6142
  # resp.lineage_metadata.commit_message #=> String
6123
6143
  # resp.created_at #=> Time
6124
6144
  # resp.updated_at #=> Time
6145
+ # resp.kms_key_arn #=> String
6125
6146
  #
6126
6147
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundle AWS API Documentation
6127
6148
  #
@@ -6153,6 +6174,7 @@ module Aws::BedrockAgentCoreControl
6153
6174
  # * {Types::GetConfigurationBundleVersionResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
6154
6175
  # * {Types::GetConfigurationBundleVersionResponse#created_at #created_at} => Time
6155
6176
  # * {Types::GetConfigurationBundleVersionResponse#version_created_at #version_created_at} => Time
6177
+ # * {Types::GetConfigurationBundleVersionResponse#kms_key_arn #kms_key_arn} => String
6156
6178
  #
6157
6179
  # @example Request syntax with placeholder values
6158
6180
  #
@@ -6177,6 +6199,7 @@ module Aws::BedrockAgentCoreControl
6177
6199
  # resp.lineage_metadata.commit_message #=> String
6178
6200
  # resp.created_at #=> Time
6179
6201
  # resp.version_created_at #=> Time
6202
+ # resp.kms_key_arn #=> String
6180
6203
  #
6181
6204
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersion AWS API Documentation
6182
6205
  #
@@ -7119,6 +7142,8 @@ module Aws::BedrockAgentCoreControl
7119
7142
  # * {Types::GetOnlineEvaluationConfigResponse#rule #rule} => Types::Rule
7120
7143
  # * {Types::GetOnlineEvaluationConfigResponse#data_source_config #data_source_config} => Types::DataSourceConfig
7121
7144
  # * {Types::GetOnlineEvaluationConfigResponse#evaluators #evaluators} => Array&lt;Types::EvaluatorReference&gt;
7145
+ # * {Types::GetOnlineEvaluationConfigResponse#insights #insights} => Array&lt;Types::Insight&gt;
7146
+ # * {Types::GetOnlineEvaluationConfigResponse#clustering_config #clustering_config} => Types::ClusteringConfig
7122
7147
  # * {Types::GetOnlineEvaluationConfigResponse#output_config #output_config} => Types::OutputConfig
7123
7148
  # * {Types::GetOnlineEvaluationConfigResponse#evaluation_execution_role_arn #evaluation_execution_role_arn} => String
7124
7149
  # * {Types::GetOnlineEvaluationConfigResponse#status #status} => String
@@ -7153,6 +7178,10 @@ module Aws::BedrockAgentCoreControl
7153
7178
  # resp.data_source_config.cloud_watch_logs.service_names[0] #=> String
7154
7179
  # resp.evaluators #=> Array
7155
7180
  # resp.evaluators[0].evaluator_id #=> String
7181
+ # resp.insights #=> Array
7182
+ # resp.insights[0].insight_id #=> String
7183
+ # resp.clustering_config.frequencies #=> Array
7184
+ # resp.clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
7156
7185
  # resp.output_config.cloud_watch_config.log_group_name #=> String
7157
7186
  # resp.evaluation_execution_role_arn #=> String
7158
7187
  # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
@@ -8951,6 +8980,10 @@ module Aws::BedrockAgentCoreControl
8951
8980
  # resp.online_evaluation_configs[0].created_at #=> Time
8952
8981
  # resp.online_evaluation_configs[0].updated_at #=> Time
8953
8982
  # resp.online_evaluation_configs[0].failure_reason #=> String
8983
+ # resp.online_evaluation_configs[0].insights #=> Array
8984
+ # resp.online_evaluation_configs[0].insights[0].insight_id #=> String
8985
+ # resp.online_evaluation_configs[0].clustering_config.frequencies #=> Array
8986
+ # resp.online_evaluation_configs[0].clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
8954
8987
  # resp.next_token #=> String
8955
8988
  #
8956
8989
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs AWS API Documentation
@@ -10559,6 +10592,11 @@ module Aws::BedrockAgentCoreControl
10559
10592
  # The source that created this version, including the source name and
10560
10593
  # optional ARN.
10561
10594
  #
10595
+ # @option params [String] :kms_key_arn
10596
+ # Optional KMS key ARN for encrypting component configurations. If
10597
+ # provided, components will be encrypted with this key. If the bundle
10598
+ # already has a KMS key, this rotates to the new key.
10599
+ #
10562
10600
  # @return [Types::UpdateConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10563
10601
  #
10564
10602
  # * {Types::UpdateConfigurationBundleResponse#bundle_arn #bundle_arn} => String
@@ -10586,6 +10624,7 @@ module Aws::BedrockAgentCoreControl
10586
10624
  # name: "String", # required
10587
10625
  # arn: "String",
10588
10626
  # },
10627
+ # kms_key_arn: "KmsKeyArn",
10589
10628
  # })
10590
10629
  #
10591
10630
  # @example Response structure
@@ -13008,6 +13047,12 @@ module Aws::BedrockAgentCoreControl
13008
13047
  # @option params [Array<Types::EvaluatorReference>] :evaluators
13009
13048
  # The updated list of evaluators to apply during online evaluation.
13010
13049
  #
13050
+ # @option params [Array<Types::Insight>] :insights
13051
+ # The updated list of insight types to run against agent sessions.
13052
+ #
13053
+ # @option params [Types::ClusteringConfig] :clustering_config
13054
+ # The updated clustering configuration for periodic batch evaluation.
13055
+ #
13011
13056
  # @option params [String] :evaluation_execution_role_arn
13012
13057
  # The updated Amazon Resource Name (ARN) of the IAM role used for
13013
13058
  # evaluation execution.
@@ -13061,6 +13106,14 @@ module Aws::BedrockAgentCoreControl
13061
13106
  # evaluator_id: "EvaluatorId",
13062
13107
  # },
13063
13108
  # ],
13109
+ # insights: [
13110
+ # {
13111
+ # insight_id: "InsightId", # required
13112
+ # },
13113
+ # ],
13114
+ # clustering_config: {
13115
+ # frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
13116
+ # },
13064
13117
  # evaluation_execution_role_arn: "RoleArn",
13065
13118
  # execution_status: "ENABLED", # accepts ENABLED, DISABLED
13066
13119
  # })
@@ -14027,7 +14080,7 @@ module Aws::BedrockAgentCoreControl
14027
14080
  tracer: tracer
14028
14081
  )
14029
14082
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
14030
- context[:gem_version] = '1.52.0'
14083
+ context[:gem_version] = '1.53.0'
14031
14084
  Seahorse::Client::Request.new(handlers, context)
14032
14085
  end
14033
14086
 
@@ -117,6 +117,9 @@ module Aws::BedrockAgentCoreControl
117
117
  CloudWatchLogsInputConfigLogGroupNamesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigLogGroupNamesList')
118
118
  CloudWatchLogsInputConfigServiceNamesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigServiceNamesList')
119
119
  CloudWatchOutputConfig = Shapes::StructureShape.new(name: 'CloudWatchOutputConfig')
120
+ ClusteringConfig = Shapes::StructureShape.new(name: 'ClusteringConfig')
121
+ ClusteringFrequency = Shapes::StringShape.new(name: 'ClusteringFrequency')
122
+ ClusteringFrequencyList = Shapes::ListShape.new(name: 'ClusteringFrequencyList')
120
123
  Code = Shapes::UnionShape.new(name: 'Code')
121
124
  CodeBasedEvaluatorConfig = Shapes::UnionShape.new(name: 'CodeBasedEvaluatorConfig')
122
125
  CodeConfiguration = Shapes::StructureShape.new(name: 'CodeConfiguration')
@@ -565,6 +568,9 @@ module Aws::BedrockAgentCoreControl
565
568
  InlineExamplesSource = Shapes::StructureShape.new(name: 'InlineExamplesSource')
566
569
  InlineExamplesSourceExamplesList = Shapes::ListShape.new(name: 'InlineExamplesSourceExamplesList')
567
570
  InlinePayload = Shapes::StringShape.new(name: 'InlinePayload')
571
+ Insight = Shapes::StructureShape.new(name: 'Insight')
572
+ InsightId = Shapes::StringShape.new(name: 'InsightId')
573
+ InsightList = Shapes::ListShape.new(name: 'InsightList')
568
574
  Integer = Shapes::IntegerShape.new(name: 'Integer')
569
575
  InterceptorConfiguration = Shapes::UnionShape.new(name: 'InterceptorConfiguration')
570
576
  InterceptorInputConfiguration = Shapes::StructureShape.new(name: 'InterceptorInputConfiguration')
@@ -1396,6 +1402,11 @@ module Aws::BedrockAgentCoreControl
1396
1402
  CloudWatchOutputConfig.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
1397
1403
  CloudWatchOutputConfig.struct_class = Types::CloudWatchOutputConfig
1398
1404
 
1405
+ ClusteringConfig.add_member(:frequencies, Shapes::ShapeRef.new(shape: ClusteringFrequencyList, required: true, location_name: "frequencies"))
1406
+ ClusteringConfig.struct_class = Types::ClusteringConfig
1407
+
1408
+ ClusteringFrequencyList.member = Shapes::ShapeRef.new(shape: ClusteringFrequency)
1409
+
1399
1410
  Code.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
1400
1411
  Code.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1401
1412
  Code.add_member_subclass(:s3, Types::Code::S3)
@@ -1627,6 +1638,7 @@ module Aws::BedrockAgentCoreControl
1627
1638
  CreateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
1628
1639
  CreateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: CreateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
1629
1640
  CreateConfigurationBundleRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: VersionCreatedBySource, location_name: "createdBy"))
1641
+ CreateConfigurationBundleRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
1630
1642
  CreateConfigurationBundleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
1631
1643
  CreateConfigurationBundleRequest.struct_class = Types::CreateConfigurationBundleRequest
1632
1644
 
@@ -1819,7 +1831,9 @@ module Aws::BedrockAgentCoreControl
1819
1831
  CreateOnlineEvaluationConfigRequest.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationConfigDescription, location_name: "description"))
1820
1832
  CreateOnlineEvaluationConfigRequest.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, required: true, location_name: "rule"))
1821
1833
  CreateOnlineEvaluationConfigRequest.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, required: true, location_name: "dataSourceConfig"))
1822
- CreateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, required: true, location_name: "evaluators"))
1834
+ CreateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, location_name: "evaluators"))
1835
+ CreateOnlineEvaluationConfigRequest.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
1836
+ CreateOnlineEvaluationConfigRequest.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
1823
1837
  CreateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "evaluationExecutionRoleArn"))
1824
1838
  CreateOnlineEvaluationConfigRequest.add_member(:enable_on_create, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableOnCreate"))
1825
1839
  CreateOnlineEvaluationConfigRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
@@ -2710,6 +2724,7 @@ module Aws::BedrockAgentCoreControl
2710
2724
  GetConfigurationBundleResponse.add_member(:lineage_metadata, Shapes::ShapeRef.new(shape: VersionLineageMetadata, location_name: "lineageMetadata"))
2711
2725
  GetConfigurationBundleResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
2712
2726
  GetConfigurationBundleResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
2727
+ GetConfigurationBundleResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
2713
2728
  GetConfigurationBundleResponse.struct_class = Types::GetConfigurationBundleResponse
2714
2729
 
2715
2730
  GetConfigurationBundleVersionRequest.add_member(:bundle_id, Shapes::ShapeRef.new(shape: ConfigurationBundleId, required: true, location: "uri", location_name: "bundleId"))
@@ -2725,6 +2740,7 @@ module Aws::BedrockAgentCoreControl
2725
2740
  GetConfigurationBundleVersionResponse.add_member(:lineage_metadata, Shapes::ShapeRef.new(shape: VersionLineageMetadata, location_name: "lineageMetadata"))
2726
2741
  GetConfigurationBundleVersionResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
2727
2742
  GetConfigurationBundleVersionResponse.add_member(:version_created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "versionCreatedAt"))
2743
+ GetConfigurationBundleVersionResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
2728
2744
  GetConfigurationBundleVersionResponse.struct_class = Types::GetConfigurationBundleVersionResponse
2729
2745
 
2730
2746
  GetDatasetRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
@@ -2867,7 +2883,9 @@ module Aws::BedrockAgentCoreControl
2867
2883
  GetOnlineEvaluationConfigResponse.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationConfigDescription, location_name: "description"))
2868
2884
  GetOnlineEvaluationConfigResponse.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, required: true, location_name: "rule"))
2869
2885
  GetOnlineEvaluationConfigResponse.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, required: true, location_name: "dataSourceConfig"))
2870
- GetOnlineEvaluationConfigResponse.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, required: true, location_name: "evaluators"))
2886
+ GetOnlineEvaluationConfigResponse.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, location_name: "evaluators"))
2887
+ GetOnlineEvaluationConfigResponse.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
2888
+ GetOnlineEvaluationConfigResponse.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
2871
2889
  GetOnlineEvaluationConfigResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, location_name: "outputConfig"))
2872
2890
  GetOnlineEvaluationConfigResponse.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "evaluationExecutionRoleArn"))
2873
2891
  GetOnlineEvaluationConfigResponse.add_member(:status, Shapes::ShapeRef.new(shape: OnlineEvaluationConfigStatus, required: true, location_name: "status"))
@@ -3369,6 +3387,11 @@ module Aws::BedrockAgentCoreControl
3369
3387
 
3370
3388
  InlineExamplesSourceExamplesList.member = Shapes::ShapeRef.new(shape: SensitiveJson)
3371
3389
 
3390
+ Insight.add_member(:insight_id, Shapes::ShapeRef.new(shape: InsightId, required: true, location_name: "insightId"))
3391
+ Insight.struct_class = Types::Insight
3392
+
3393
+ InsightList.member = Shapes::ShapeRef.new(shape: Insight)
3394
+
3372
3395
  InterceptorConfiguration.add_member(:lambda, Shapes::ShapeRef.new(shape: LambdaInterceptorConfiguration, location_name: "lambda"))
3373
3396
  InterceptorConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
3374
3397
  InterceptorConfiguration.add_member_subclass(:lambda, Types::InterceptorConfiguration::Lambda)
@@ -4059,6 +4082,8 @@ module Aws::BedrockAgentCoreControl
4059
4082
  OnlineEvaluationConfigSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
4060
4083
  OnlineEvaluationConfigSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
4061
4084
  OnlineEvaluationConfigSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
4085
+ OnlineEvaluationConfigSummary.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
4086
+ OnlineEvaluationConfigSummary.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
4062
4087
  OnlineEvaluationConfigSummary.struct_class = Types::OnlineEvaluationConfigSummary
4063
4088
 
4064
4089
  OnlineEvaluationConfigSummaryList.member = Shapes::ShapeRef.new(shape: OnlineEvaluationConfigSummary)
@@ -4829,6 +4854,7 @@ module Aws::BedrockAgentCoreControl
4829
4854
  UpdateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
4830
4855
  UpdateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: UpdateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
4831
4856
  UpdateConfigurationBundleRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: VersionCreatedBySource, location_name: "createdBy"))
4857
+ UpdateConfigurationBundleRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
4832
4858
  UpdateConfigurationBundleRequest.struct_class = Types::UpdateConfigurationBundleRequest
4833
4859
 
4834
4860
  UpdateConfigurationBundleResponse.add_member(:bundle_arn, Shapes::ShapeRef.new(shape: ConfigurationBundleArn, required: true, location_name: "bundleArn"))
@@ -5017,6 +5043,8 @@ module Aws::BedrockAgentCoreControl
5017
5043
  UpdateOnlineEvaluationConfigRequest.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, location_name: "rule"))
5018
5044
  UpdateOnlineEvaluationConfigRequest.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, location_name: "dataSourceConfig"))
5019
5045
  UpdateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, location_name: "evaluators"))
5046
+ UpdateOnlineEvaluationConfigRequest.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
5047
+ UpdateOnlineEvaluationConfigRequest.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
5020
5048
  UpdateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "evaluationExecutionRoleArn"))
5021
5049
  UpdateOnlineEvaluationConfigRequest.add_member(:execution_status, Shapes::ShapeRef.new(shape: OnlineEvaluationExecutionStatus, location_name: "executionStatus"))
5022
5050
  UpdateOnlineEvaluationConfigRequest.struct_class = Types::UpdateOnlineEvaluationConfigRequest
@@ -1040,6 +1040,22 @@ module Aws::BedrockAgentCoreControl
1040
1040
  include Aws::Structure
1041
1041
  end
1042
1042
 
1043
+ # Configuration for periodic batch evaluation clustering, specifying how
1044
+ # often clustering jobs run.
1045
+ #
1046
+ # @!attribute [rw] frequencies
1047
+ # The list of frequencies at which clustering batch evaluations are
1048
+ # triggered.
1049
+ # @return [Array<String>]
1050
+ #
1051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ClusteringConfig AWS API Documentation
1052
+ #
1053
+ class ClusteringConfig < Struct.new(
1054
+ :frequencies)
1055
+ SENSITIVE = []
1056
+ include Aws::Structure
1057
+ end
1058
+
1043
1059
  # The source code configuration that specifies the location and details
1044
1060
  # of the code to be executed.
1045
1061
  #
@@ -2138,6 +2154,10 @@ module Aws::BedrockAgentCoreControl
2138
2154
  # optional ARN.
2139
2155
  # @return [Types::VersionCreatedBySource]
2140
2156
  #
2157
+ # @!attribute [rw] kms_key_arn
2158
+ # Optional KMS key ARN for encrypting component configurations.
2159
+ # @return [String]
2160
+ #
2141
2161
  # @!attribute [rw] tags
2142
2162
  # A map of tag keys and values to assign to the configuration bundle.
2143
2163
  # Tags enable you to categorize your resources in different ways, for
@@ -2154,6 +2174,7 @@ module Aws::BedrockAgentCoreControl
2154
2174
  :branch_name,
2155
2175
  :commit_message,
2156
2176
  :created_by,
2177
+ :kms_key_arn,
2157
2178
  :tags)
2158
2179
  SENSITIVE = [:description, :components]
2159
2180
  include Aws::Structure
@@ -3257,6 +3278,15 @@ module Aws::BedrockAgentCoreControl
3257
3278
  # `CreateEvaluator`.
3258
3279
  # @return [Array<Types::EvaluatorReference>]
3259
3280
  #
3281
+ # @!attribute [rw] insights
3282
+ # The list of insight types to run against agent sessions.
3283
+ # @return [Array<Types::Insight>]
3284
+ #
3285
+ # @!attribute [rw] clustering_config
3286
+ # Configuration for periodic batch evaluation clustering of insight
3287
+ # results.
3288
+ # @return [Types::ClusteringConfig]
3289
+ #
3260
3290
  # @!attribute [rw] evaluation_execution_role_arn
3261
3291
  # The Amazon Resource Name (ARN) of the IAM role that grants
3262
3292
  # permissions to read from CloudWatch logs, write evaluation results,
@@ -3292,6 +3322,8 @@ module Aws::BedrockAgentCoreControl
3292
3322
  :rule,
3293
3323
  :data_source_config,
3294
3324
  :evaluators,
3325
+ :insights,
3326
+ :clustering_config,
3295
3327
  :evaluation_execution_role_arn,
3296
3328
  :enable_on_create,
3297
3329
  :tags)
@@ -7459,6 +7491,11 @@ module Aws::BedrockAgentCoreControl
7459
7491
  # The timestamp when the configuration bundle was last updated.
7460
7492
  # @return [Time]
7461
7493
  #
7494
+ # @!attribute [rw] kms_key_arn
7495
+ # KMS key ARN used to encrypt component configurations, if CMK was
7496
+ # provided.
7497
+ # @return [String]
7498
+ #
7462
7499
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleResponse AWS API Documentation
7463
7500
  #
7464
7501
  class GetConfigurationBundleResponse < Struct.new(
@@ -7470,7 +7507,8 @@ module Aws::BedrockAgentCoreControl
7470
7507
  :components,
7471
7508
  :lineage_metadata,
7472
7509
  :created_at,
7473
- :updated_at)
7510
+ :updated_at,
7511
+ :kms_key_arn)
7474
7512
  SENSITIVE = [:description, :components]
7475
7513
  include Aws::Structure
7476
7514
  end
@@ -7531,6 +7569,11 @@ module Aws::BedrockAgentCoreControl
7531
7569
  # The timestamp when this specific version was created.
7532
7570
  # @return [Time]
7533
7571
  #
7572
+ # @!attribute [rw] kms_key_arn
7573
+ # KMS key ARN used to encrypt component configurations, if CMK was
7574
+ # provided.
7575
+ # @return [String]
7576
+ #
7534
7577
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionResponse AWS API Documentation
7535
7578
  #
7536
7579
  class GetConfigurationBundleVersionResponse < Struct.new(
@@ -7542,7 +7585,8 @@ module Aws::BedrockAgentCoreControl
7542
7585
  :components,
7543
7586
  :lineage_metadata,
7544
7587
  :created_at,
7545
- :version_created_at)
7588
+ :version_created_at,
7589
+ :kms_key_arn)
7546
7590
  SENSITIVE = [:description, :components]
7547
7591
  include Aws::Structure
7548
7592
  end
@@ -8245,6 +8289,14 @@ module Aws::BedrockAgentCoreControl
8245
8289
  # The list of evaluators applied during online evaluation.
8246
8290
  # @return [Array<Types::EvaluatorReference>]
8247
8291
  #
8292
+ # @!attribute [rw] insights
8293
+ # The list of insight types configured for this evaluation.
8294
+ # @return [Array<Types::Insight>]
8295
+ #
8296
+ # @!attribute [rw] clustering_config
8297
+ # The clustering configuration for periodic batch evaluation.
8298
+ # @return [Types::ClusteringConfig]
8299
+ #
8248
8300
  # @!attribute [rw] output_config
8249
8301
  # The output configuration specifying where evaluation results are
8250
8302
  # written.
@@ -8288,6 +8340,8 @@ module Aws::BedrockAgentCoreControl
8288
8340
  :rule,
8289
8341
  :data_source_config,
8290
8342
  :evaluators,
8343
+ :insights,
8344
+ :clustering_config,
8291
8345
  :output_config,
8292
8346
  :evaluation_execution_role_arn,
8293
8347
  :status,
@@ -10585,6 +10639,22 @@ module Aws::BedrockAgentCoreControl
10585
10639
  include Aws::Structure
10586
10640
  end
10587
10641
 
10642
+ # A reference to an insight analysis to run against sessions.
10643
+ #
10644
+ # @!attribute [rw] insight_id
10645
+ # Canonical insight identifiers using the Builtin.Insight.* naming
10646
+ # convention. Used by BatchEvaluate, InternalEvaluate, and
10647
+ # ServiceEngineEvaluate flows.
10648
+ # @return [String]
10649
+ #
10650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Insight AWS API Documentation
10651
+ #
10652
+ class Insight < Struct.new(
10653
+ :insight_id)
10654
+ SENSITIVE = []
10655
+ include Aws::Structure
10656
+ end
10657
+
10588
10658
  # The interceptor configuration.
10589
10659
  #
10590
10660
  # @note InterceptorConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -13791,6 +13861,14 @@ module Aws::BedrockAgentCoreControl
13791
13861
  # execution failed.
13792
13862
  # @return [String]
13793
13863
  #
13864
+ # @!attribute [rw] insights
13865
+ # The list of insight types configured for this evaluation.
13866
+ # @return [Array<Types::Insight>]
13867
+ #
13868
+ # @!attribute [rw] clustering_config
13869
+ # The clustering configuration for periodic batch evaluation.
13870
+ # @return [Types::ClusteringConfig]
13871
+ #
13794
13872
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnlineEvaluationConfigSummary AWS API Documentation
13795
13873
  #
13796
13874
  class OnlineEvaluationConfigSummary < Struct.new(
@@ -13802,7 +13880,9 @@ module Aws::BedrockAgentCoreControl
13802
13880
  :execution_status,
13803
13881
  :created_at,
13804
13882
  :updated_at,
13805
- :failure_reason)
13883
+ :failure_reason,
13884
+ :insights,
13885
+ :clustering_config)
13806
13886
  SENSITIVE = [:description]
13807
13887
  include Aws::Structure
13808
13888
  end
@@ -17240,6 +17320,12 @@ module Aws::BedrockAgentCoreControl
17240
17320
  # optional ARN.
17241
17321
  # @return [Types::VersionCreatedBySource]
17242
17322
  #
17323
+ # @!attribute [rw] kms_key_arn
17324
+ # Optional KMS key ARN for encrypting component configurations. If
17325
+ # provided, components will be encrypted with this key. If the bundle
17326
+ # already has a KMS key, this rotates to the new key.
17327
+ # @return [String]
17328
+ #
17243
17329
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleRequest AWS API Documentation
17244
17330
  #
17245
17331
  class UpdateConfigurationBundleRequest < Struct.new(
@@ -17251,7 +17337,8 @@ module Aws::BedrockAgentCoreControl
17251
17337
  :parent_version_ids,
17252
17338
  :branch_name,
17253
17339
  :commit_message,
17254
- :created_by)
17340
+ :created_by,
17341
+ :kms_key_arn)
17255
17342
  SENSITIVE = [:description, :components]
17256
17343
  include Aws::Structure
17257
17344
  end
@@ -18258,6 +18345,14 @@ module Aws::BedrockAgentCoreControl
18258
18345
  # The updated list of evaluators to apply during online evaluation.
18259
18346
  # @return [Array<Types::EvaluatorReference>]
18260
18347
  #
18348
+ # @!attribute [rw] insights
18349
+ # The updated list of insight types to run against agent sessions.
18350
+ # @return [Array<Types::Insight>]
18351
+ #
18352
+ # @!attribute [rw] clustering_config
18353
+ # The updated clustering configuration for periodic batch evaluation.
18354
+ # @return [Types::ClusteringConfig]
18355
+ #
18261
18356
  # @!attribute [rw] evaluation_execution_role_arn
18262
18357
  # The updated Amazon Resource Name (ARN) of the IAM role used for
18263
18358
  # evaluation execution.
@@ -18277,6 +18372,8 @@ module Aws::BedrockAgentCoreControl
18277
18372
  :rule,
18278
18373
  :data_source_config,
18279
18374
  :evaluators,
18375
+ :insights,
18376
+ :clustering_config,
18280
18377
  :evaluation_execution_role_arn,
18281
18378
  :execution_status)
18282
18379
  SENSITIVE = [: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.52.0'
58
+ GEM_VERSION = '1.53.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -302,6 +302,7 @@ module Aws
302
302
  name: ::String,
303
303
  arn: ::String?
304
304
  },
305
+ ?kms_key_arn: ::String,
305
306
  ?tags: Hash[::String, ::String]
306
307
  ) -> _CreateConfigurationBundleResponseSuccess
307
308
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
@@ -576,11 +577,19 @@ module Aws
576
577
  service_names: Array[::String]
577
578
  }?
578
579
  },
579
- evaluators: Array[
580
+ ?evaluators: Array[
580
581
  {
581
582
  evaluator_id: ::String?
582
583
  }
583
584
  ],
585
+ ?insights: Array[
586
+ {
587
+ insight_id: ::String
588
+ }
589
+ ],
590
+ ?clustering_config: {
591
+ frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
592
+ },
584
593
  evaluation_execution_role_arn: ::String,
585
594
  enable_on_create: bool,
586
595
  ?tags: Hash[::String, ::String]
@@ -1238,6 +1247,7 @@ module Aws
1238
1247
  def lineage_metadata: () -> Types::VersionLineageMetadata
1239
1248
  def created_at: () -> ::Time
1240
1249
  def updated_at: () -> ::Time
1250
+ def kms_key_arn: () -> ::String
1241
1251
  end
1242
1252
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle-instance_method
1243
1253
  def get_configuration_bundle: (
@@ -1257,6 +1267,7 @@ module Aws
1257
1267
  def lineage_metadata: () -> Types::VersionLineageMetadata
1258
1268
  def created_at: () -> ::Time
1259
1269
  def version_created_at: () -> ::Time
1270
+ def kms_key_arn: () -> ::String
1260
1271
  end
1261
1272
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle_version-instance_method
1262
1273
  def get_configuration_bundle_version: (
@@ -1437,6 +1448,8 @@ module Aws
1437
1448
  def rule: () -> Types::Rule
1438
1449
  def data_source_config: () -> Types::DataSourceConfig
1439
1450
  def evaluators: () -> ::Array[Types::EvaluatorReference]
1451
+ def insights: () -> ::Array[Types::Insight]
1452
+ def clustering_config: () -> Types::ClusteringConfig
1440
1453
  def output_config: () -> Types::OutputConfig
1441
1454
  def evaluation_execution_role_arn: () -> ::String
1442
1455
  def status: () -> ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ERROR")
@@ -2340,7 +2353,8 @@ module Aws
2340
2353
  ?created_by: {
2341
2354
  name: ::String,
2342
2355
  arn: ::String?
2343
- }
2356
+ },
2357
+ ?kms_key_arn: ::String
2344
2358
  ) -> _UpdateConfigurationBundleResponseSuccess
2345
2359
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
2346
2360
 
@@ -2689,6 +2703,14 @@ module Aws
2689
2703
  evaluator_id: ::String?
2690
2704
  }
2691
2705
  ],
2706
+ ?insights: Array[
2707
+ {
2708
+ insight_id: ::String
2709
+ }
2710
+ ],
2711
+ ?clustering_config: {
2712
+ frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
2713
+ },
2692
2714
  ?evaluation_execution_role_arn: ::String,
2693
2715
  ?execution_status: ("ENABLED" | "DISABLED")
2694
2716
  ) -> _UpdateOnlineEvaluationConfigResponseSuccess
data/sig/types.rbs CHANGED
@@ -310,6 +310,11 @@ module Aws::BedrockAgentCoreControl
310
310
  SENSITIVE: []
311
311
  end
312
312
 
313
+ class ClusteringConfig
314
+ attr_accessor frequencies: ::Array[("DAILY" | "WEEKLY" | "MONTHLY")]
315
+ SENSITIVE: []
316
+ end
317
+
313
318
  class Code
314
319
  attr_accessor s3: Types::S3Location
315
320
  attr_accessor unknown: untyped
@@ -609,6 +614,7 @@ module Aws::BedrockAgentCoreControl
609
614
  attr_accessor branch_name: ::String
610
615
  attr_accessor commit_message: ::String
611
616
  attr_accessor created_by: Types::VersionCreatedBySource
617
+ attr_accessor kms_key_arn: ::String
612
618
  attr_accessor tags: ::Hash[::String, ::String]
613
619
  SENSITIVE: [:description]
614
620
  end
@@ -842,6 +848,8 @@ module Aws::BedrockAgentCoreControl
842
848
  attr_accessor rule: Types::Rule
843
849
  attr_accessor data_source_config: Types::DataSourceConfig
844
850
  attr_accessor evaluators: ::Array[Types::EvaluatorReference]
851
+ attr_accessor insights: ::Array[Types::Insight]
852
+ attr_accessor clustering_config: Types::ClusteringConfig
845
853
  attr_accessor evaluation_execution_role_arn: ::String
846
854
  attr_accessor enable_on_create: bool
847
855
  attr_accessor tags: ::Hash[::String, ::String]
@@ -2032,6 +2040,7 @@ module Aws::BedrockAgentCoreControl
2032
2040
  attr_accessor lineage_metadata: Types::VersionLineageMetadata
2033
2041
  attr_accessor created_at: ::Time
2034
2042
  attr_accessor updated_at: ::Time
2043
+ attr_accessor kms_key_arn: ::String
2035
2044
  SENSITIVE: [:description]
2036
2045
  end
2037
2046
 
@@ -2051,6 +2060,7 @@ module Aws::BedrockAgentCoreControl
2051
2060
  attr_accessor lineage_metadata: Types::VersionLineageMetadata
2052
2061
  attr_accessor created_at: ::Time
2053
2062
  attr_accessor version_created_at: ::Time
2063
+ attr_accessor kms_key_arn: ::String
2054
2064
  SENSITIVE: [:description]
2055
2065
  end
2056
2066
 
@@ -2230,6 +2240,8 @@ module Aws::BedrockAgentCoreControl
2230
2240
  attr_accessor rule: Types::Rule
2231
2241
  attr_accessor data_source_config: Types::DataSourceConfig
2232
2242
  attr_accessor evaluators: ::Array[Types::EvaluatorReference]
2243
+ attr_accessor insights: ::Array[Types::Insight]
2244
+ attr_accessor clustering_config: Types::ClusteringConfig
2233
2245
  attr_accessor output_config: Types::OutputConfig
2234
2246
  attr_accessor evaluation_execution_role_arn: ::String
2235
2247
  attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ERROR")
@@ -2899,6 +2911,11 @@ module Aws::BedrockAgentCoreControl
2899
2911
  SENSITIVE: []
2900
2912
  end
2901
2913
 
2914
+ class Insight
2915
+ attr_accessor insight_id: ::String
2916
+ SENSITIVE: []
2917
+ end
2918
+
2902
2919
  class InterceptorConfiguration
2903
2920
  attr_accessor lambda: Types::LambdaInterceptorConfiguration
2904
2921
  attr_accessor unknown: untyped
@@ -3865,6 +3882,8 @@ module Aws::BedrockAgentCoreControl
3865
3882
  attr_accessor created_at: ::Time
3866
3883
  attr_accessor updated_at: ::Time
3867
3884
  attr_accessor failure_reason: ::String
3885
+ attr_accessor insights: ::Array[Types::Insight]
3886
+ attr_accessor clustering_config: Types::ClusteringConfig
3868
3887
  SENSITIVE: [:description]
3869
3888
  end
3870
3889
 
@@ -4854,6 +4873,7 @@ module Aws::BedrockAgentCoreControl
4854
4873
  attr_accessor branch_name: ::String
4855
4874
  attr_accessor commit_message: ::String
4856
4875
  attr_accessor created_by: Types::VersionCreatedBySource
4876
+ attr_accessor kms_key_arn: ::String
4857
4877
  SENSITIVE: [:description]
4858
4878
  end
4859
4879
 
@@ -5080,6 +5100,8 @@ module Aws::BedrockAgentCoreControl
5080
5100
  attr_accessor rule: Types::Rule
5081
5101
  attr_accessor data_source_config: Types::DataSourceConfig
5082
5102
  attr_accessor evaluators: ::Array[Types::EvaluatorReference]
5103
+ attr_accessor insights: ::Array[Types::Insight]
5104
+ attr_accessor clustering_config: Types::ClusteringConfig
5083
5105
  attr_accessor evaluation_execution_role_arn: ::String
5084
5106
  attr_accessor execution_status: ("ENABLED" | "DISABLED")
5085
5107
  SENSITIVE: [:description]
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.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services