aws-sdk-bedrockagentcorecontrol 1.51.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +142 -170
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +32 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +155 -69
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +25 -3
- data/sig/params.rbs +1 -0
- data/sig/types.rbs +26 -3
- metadata +1 -1
|
@@ -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')
|
|
@@ -367,6 +370,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
367
370
|
ExceptionLevel = Shapes::StringShape.new(name: 'ExceptionLevel')
|
|
368
371
|
ExtractionConfig = Shapes::UnionShape.new(name: 'ExtractionConfig')
|
|
369
372
|
ExtractionConfiguration = Shapes::UnionShape.new(name: 'ExtractionConfiguration')
|
|
373
|
+
ExtractionType = Shapes::StringShape.new(name: 'ExtractionType')
|
|
370
374
|
FilesystemConfiguration = Shapes::UnionShape.new(name: 'FilesystemConfiguration')
|
|
371
375
|
FilesystemConfigurations = Shapes::ListShape.new(name: 'FilesystemConfigurations')
|
|
372
376
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
@@ -564,6 +568,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
564
568
|
InlineExamplesSource = Shapes::StructureShape.new(name: 'InlineExamplesSource')
|
|
565
569
|
InlineExamplesSourceExamplesList = Shapes::ListShape.new(name: 'InlineExamplesSourceExamplesList')
|
|
566
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')
|
|
567
574
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
568
575
|
InterceptorConfiguration = Shapes::UnionShape.new(name: 'InterceptorConfiguration')
|
|
569
576
|
InterceptorInputConfiguration = Shapes::StructureShape.new(name: 'InterceptorInputConfiguration')
|
|
@@ -1395,6 +1402,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1395
1402
|
CloudWatchOutputConfig.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
|
|
1396
1403
|
CloudWatchOutputConfig.struct_class = Types::CloudWatchOutputConfig
|
|
1397
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
|
+
|
|
1398
1410
|
Code.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
|
|
1399
1411
|
Code.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1400
1412
|
Code.add_member_subclass(:s3, Types::Code::S3)
|
|
@@ -1626,6 +1638,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1626
1638
|
CreateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
|
|
1627
1639
|
CreateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: CreateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
|
|
1628
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"))
|
|
1629
1642
|
CreateConfigurationBundleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
1630
1643
|
CreateConfigurationBundleRequest.struct_class = Types::CreateConfigurationBundleRequest
|
|
1631
1644
|
|
|
@@ -1818,7 +1831,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1818
1831
|
CreateOnlineEvaluationConfigRequest.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationConfigDescription, location_name: "description"))
|
|
1819
1832
|
CreateOnlineEvaluationConfigRequest.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, required: true, location_name: "rule"))
|
|
1820
1833
|
CreateOnlineEvaluationConfigRequest.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, required: true, location_name: "dataSourceConfig"))
|
|
1821
|
-
CreateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList,
|
|
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"))
|
|
1822
1837
|
CreateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "evaluationExecutionRoleArn"))
|
|
1823
1838
|
CreateOnlineEvaluationConfigRequest.add_member(:enable_on_create, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableOnCreate"))
|
|
1824
1839
|
CreateOnlineEvaluationConfigRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
@@ -2709,6 +2724,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2709
2724
|
GetConfigurationBundleResponse.add_member(:lineage_metadata, Shapes::ShapeRef.new(shape: VersionLineageMetadata, location_name: "lineageMetadata"))
|
|
2710
2725
|
GetConfigurationBundleResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
2711
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"))
|
|
2712
2728
|
GetConfigurationBundleResponse.struct_class = Types::GetConfigurationBundleResponse
|
|
2713
2729
|
|
|
2714
2730
|
GetConfigurationBundleVersionRequest.add_member(:bundle_id, Shapes::ShapeRef.new(shape: ConfigurationBundleId, required: true, location: "uri", location_name: "bundleId"))
|
|
@@ -2724,6 +2740,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2724
2740
|
GetConfigurationBundleVersionResponse.add_member(:lineage_metadata, Shapes::ShapeRef.new(shape: VersionLineageMetadata, location_name: "lineageMetadata"))
|
|
2725
2741
|
GetConfigurationBundleVersionResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
2726
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"))
|
|
2727
2744
|
GetConfigurationBundleVersionResponse.struct_class = Types::GetConfigurationBundleVersionResponse
|
|
2728
2745
|
|
|
2729
2746
|
GetDatasetRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
|
@@ -2866,7 +2883,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2866
2883
|
GetOnlineEvaluationConfigResponse.add_member(:description, Shapes::ShapeRef.new(shape: EvaluationConfigDescription, location_name: "description"))
|
|
2867
2884
|
GetOnlineEvaluationConfigResponse.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, required: true, location_name: "rule"))
|
|
2868
2885
|
GetOnlineEvaluationConfigResponse.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, required: true, location_name: "dataSourceConfig"))
|
|
2869
|
-
GetOnlineEvaluationConfigResponse.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList,
|
|
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"))
|
|
2870
2889
|
GetOnlineEvaluationConfigResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, location_name: "outputConfig"))
|
|
2871
2890
|
GetOnlineEvaluationConfigResponse.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "evaluationExecutionRoleArn"))
|
|
2872
2891
|
GetOnlineEvaluationConfigResponse.add_member(:status, Shapes::ShapeRef.new(shape: OnlineEvaluationConfigStatus, required: true, location_name: "status"))
|
|
@@ -3368,6 +3387,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3368
3387
|
|
|
3369
3388
|
InlineExamplesSourceExamplesList.member = Shapes::ShapeRef.new(shape: SensitiveJson)
|
|
3370
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
|
+
|
|
3371
3395
|
InterceptorConfiguration.add_member(:lambda, Shapes::ShapeRef.new(shape: LambdaInterceptorConfiguration, location_name: "lambda"))
|
|
3372
3396
|
InterceptorConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3373
3397
|
InterceptorConfiguration.add_member_subclass(:lambda, Types::InterceptorConfiguration::Lambda)
|
|
@@ -3877,6 +3901,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3877
3901
|
|
|
3878
3902
|
MetadataSchemaEntry.add_member(:key, Shapes::ShapeRef.new(shape: MetadataKey, required: true, location_name: "key"))
|
|
3879
3903
|
MetadataSchemaEntry.add_member(:type, Shapes::ShapeRef.new(shape: MetadataValueType, location_name: "type"))
|
|
3904
|
+
MetadataSchemaEntry.add_member(:extraction_type, Shapes::ShapeRef.new(shape: ExtractionType, location_name: "extractionType"))
|
|
3880
3905
|
MetadataSchemaEntry.add_member(:extraction_config, Shapes::ShapeRef.new(shape: ExtractionConfig, location_name: "extractionConfig"))
|
|
3881
3906
|
MetadataSchemaEntry.struct_class = Types::MetadataSchemaEntry
|
|
3882
3907
|
|
|
@@ -4057,6 +4082,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4057
4082
|
OnlineEvaluationConfigSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
4058
4083
|
OnlineEvaluationConfigSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
4059
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"))
|
|
4060
4087
|
OnlineEvaluationConfigSummary.struct_class = Types::OnlineEvaluationConfigSummary
|
|
4061
4088
|
|
|
4062
4089
|
OnlineEvaluationConfigSummaryList.member = Shapes::ShapeRef.new(shape: OnlineEvaluationConfigSummary)
|
|
@@ -4827,6 +4854,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4827
4854
|
UpdateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
|
|
4828
4855
|
UpdateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: UpdateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
|
|
4829
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"))
|
|
4830
4858
|
UpdateConfigurationBundleRequest.struct_class = Types::UpdateConfigurationBundleRequest
|
|
4831
4859
|
|
|
4832
4860
|
UpdateConfigurationBundleResponse.add_member(:bundle_arn, Shapes::ShapeRef.new(shape: ConfigurationBundleArn, required: true, location_name: "bundleArn"))
|
|
@@ -5015,6 +5043,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5015
5043
|
UpdateOnlineEvaluationConfigRequest.add_member(:rule, Shapes::ShapeRef.new(shape: Rule, location_name: "rule"))
|
|
5016
5044
|
UpdateOnlineEvaluationConfigRequest.add_member(:data_source_config, Shapes::ShapeRef.new(shape: DataSourceConfig, location_name: "dataSourceConfig"))
|
|
5017
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"))
|
|
5018
5048
|
UpdateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "evaluationExecutionRoleArn"))
|
|
5019
5049
|
UpdateOnlineEvaluationConfigRequest.add_member(:execution_status, Shapes::ShapeRef.new(shape: OnlineEvaluationExecutionStatus, location_name: "executionStatus"))
|
|
5020
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
|
|
@@ -2187,15 +2208,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
2187
2208
|
end
|
|
2188
2209
|
|
|
2189
2210
|
# @!attribute [rw] client_token
|
|
2190
|
-
#
|
|
2211
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
2212
|
+
# completes no more than one time. If you don't specify this field, a
|
|
2213
|
+
# value is randomly generated for you. If this token matches a
|
|
2214
|
+
# previous request, the service ignores the request, but doesn't
|
|
2215
|
+
# return an error. For more information, see [Ensuring
|
|
2216
|
+
# idempotency][1].
|
|
2191
2217
|
#
|
|
2192
2218
|
# **A suitable default value is auto-generated.** You should normally
|
|
2193
2219
|
# not need to pass this option.
|
|
2220
|
+
#
|
|
2221
|
+
#
|
|
2222
|
+
#
|
|
2223
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
2194
2224
|
# @return [String]
|
|
2195
2225
|
#
|
|
2196
2226
|
# @!attribute [rw] dataset_name
|
|
2197
|
-
# Human-readable name for the dataset.
|
|
2198
|
-
#
|
|
2227
|
+
# Human-readable name for the dataset. Must be unique within the
|
|
2228
|
+
# account. Immutable after creation.
|
|
2199
2229
|
# @return [String]
|
|
2200
2230
|
#
|
|
2201
2231
|
# @!attribute [rw] description
|
|
@@ -2213,7 +2243,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2213
2243
|
# @return [String]
|
|
2214
2244
|
#
|
|
2215
2245
|
# @!attribute [rw] kms_key_arn
|
|
2216
|
-
# Optional
|
|
2246
|
+
# Optional KMS key ARN for server-side encryption on service Amazon S3
|
|
2247
|
+
# writes.
|
|
2217
2248
|
# @return [String]
|
|
2218
2249
|
#
|
|
2219
2250
|
# @!attribute [rw] tags
|
|
@@ -2243,8 +2274,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2243
2274
|
# @return [String]
|
|
2244
2275
|
#
|
|
2245
2276
|
# @!attribute [rw] status
|
|
2246
|
-
# Always CREATING immediately after this call. Poll GetDataset until
|
|
2247
|
-
# status
|
|
2277
|
+
# Always CREATING immediately after this call. Poll `GetDataset` until
|
|
2278
|
+
# status transitions to ACTIVE or CREATE\_FAILED.
|
|
2248
2279
|
# @return [String]
|
|
2249
2280
|
#
|
|
2250
2281
|
# @!attribute [rw] created_at
|
|
@@ -2300,12 +2331,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2300
2331
|
# @return [String]
|
|
2301
2332
|
#
|
|
2302
2333
|
# @!attribute [rw] status
|
|
2303
|
-
# Always UPDATING immediately after this call. Poll GetDataset until
|
|
2304
|
-
# status
|
|
2334
|
+
# Always UPDATING immediately after this call. Poll `GetDataset` until
|
|
2335
|
+
# status transitions to ACTIVE or UPDATE\_FAILED.
|
|
2305
2336
|
# @return [String]
|
|
2306
2337
|
#
|
|
2307
2338
|
# @!attribute [rw] dataset_version
|
|
2308
|
-
# The version being created.
|
|
2339
|
+
# The version number being created.
|
|
2309
2340
|
# @return [String]
|
|
2310
2341
|
#
|
|
2311
2342
|
# @!attribute [rw] created_at
|
|
@@ -3247,6 +3278,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3247
3278
|
# `CreateEvaluator`.
|
|
3248
3279
|
# @return [Array<Types::EvaluatorReference>]
|
|
3249
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
|
+
#
|
|
3250
3290
|
# @!attribute [rw] evaluation_execution_role_arn
|
|
3251
3291
|
# The Amazon Resource Name (ARN) of the IAM role that grants
|
|
3252
3292
|
# permissions to read from CloudWatch logs, write evaluation results,
|
|
@@ -3282,6 +3322,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3282
3322
|
:rule,
|
|
3283
3323
|
:data_source_config,
|
|
3284
3324
|
:evaluators,
|
|
3325
|
+
:insights,
|
|
3326
|
+
:clustering_config,
|
|
3285
3327
|
:evaluation_execution_role_arn,
|
|
3286
3328
|
:enable_on_create,
|
|
3287
3329
|
:tags)
|
|
@@ -4710,8 +4752,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4710
4752
|
# @return [Types::InlineExamplesSource]
|
|
4711
4753
|
#
|
|
4712
4754
|
# @!attribute [rw] s3_source
|
|
4713
|
-
# S3 URI pointing to a JSONL file in the customer's bucket.
|
|
4714
|
-
# service reads this file using the caller's FAS credentials.
|
|
4755
|
+
# Amazon S3 URI pointing to a JSONL file in the customer's bucket.
|
|
4715
4756
|
# @return [Types::S3Source]
|
|
4716
4757
|
#
|
|
4717
4758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DataSourceType AWS API Documentation
|
|
@@ -4752,7 +4793,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4752
4793
|
# @return [String]
|
|
4753
4794
|
#
|
|
4754
4795
|
# @!attribute [rw] draft_status
|
|
4755
|
-
# Publish synchronization state. Only authoritative when status
|
|
4796
|
+
# Publish synchronization state. Only authoritative when status is
|
|
4756
4797
|
# ACTIVE.
|
|
4757
4798
|
# @return [String]
|
|
4758
4799
|
#
|
|
@@ -4792,23 +4833,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4792
4833
|
# Summary information about a published dataset version.
|
|
4793
4834
|
#
|
|
4794
4835
|
# @!attribute [rw] dataset_version
|
|
4795
|
-
#
|
|
4796
|
-
# integer string.
|
|
4797
|
-
#
|
|
4798
|
-
# "DRAFT" refers to the single mutable working copy of the dataset.
|
|
4799
|
-
#
|
|
4800
|
-
# * Always present after CreateDataset ingestion completes.
|
|
4801
|
-
# * Content changes in-place when examples are added, updated, or
|
|
4802
|
-
# deleted.
|
|
4803
|
-
# * NOT tracked as a DDB DatasetVersionItem — state lives in S3
|
|
4804
|
-
# (draft/manifest.json, draft/dataset.jsonl) and the
|
|
4805
|
-
# DatasetItem.exampleCount field.
|
|
4806
|
-
# * Default for read operations when ?datasetVersion is absent.
|
|
4807
|
-
#
|
|
4808
|
-
# An integer string (e.g. "1", "2", "3") refers to a published,
|
|
4809
|
-
# immutable snapshot created by CreateDatasetVersion. Once created, a
|
|
4810
|
-
# published version's content never changes. Stored as a DDB
|
|
4811
|
-
# DatasetVersionItem (SK=VERSION#\{zero-padded-N}).
|
|
4836
|
+
# The version number of this published snapshot.
|
|
4812
4837
|
# @return [String]
|
|
4813
4838
|
#
|
|
4814
4839
|
# @!attribute [rw] example_count
|
|
@@ -5187,9 +5212,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5187
5212
|
# @return [String]
|
|
5188
5213
|
#
|
|
5189
5214
|
# @!attribute [rw] dataset_version
|
|
5190
|
-
# Optional version to delete.
|
|
5191
|
-
#
|
|
5192
|
-
# exist.
|
|
5215
|
+
# Optional version to delete. If absent, deletes the entire dataset.
|
|
5216
|
+
# If provided, deletes only that specific version.
|
|
5193
5217
|
# @return [String]
|
|
5194
5218
|
#
|
|
5195
5219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteDatasetRequest AWS API Documentation
|
|
@@ -5214,7 +5238,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5214
5238
|
# @return [String]
|
|
5215
5239
|
#
|
|
5216
5240
|
# @!attribute [rw] dataset_version
|
|
5217
|
-
# The version deleted.
|
|
5241
|
+
# The version that was deleted.
|
|
5218
5242
|
# @return [String]
|
|
5219
5243
|
#
|
|
5220
5244
|
# @!attribute [rw] updated_at
|
|
@@ -7467,6 +7491,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7467
7491
|
# The timestamp when the configuration bundle was last updated.
|
|
7468
7492
|
# @return [Time]
|
|
7469
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
|
+
#
|
|
7470
7499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleResponse AWS API Documentation
|
|
7471
7500
|
#
|
|
7472
7501
|
class GetConfigurationBundleResponse < Struct.new(
|
|
@@ -7478,7 +7507,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7478
7507
|
:components,
|
|
7479
7508
|
:lineage_metadata,
|
|
7480
7509
|
:created_at,
|
|
7481
|
-
:updated_at
|
|
7510
|
+
:updated_at,
|
|
7511
|
+
:kms_key_arn)
|
|
7482
7512
|
SENSITIVE = [:description, :components]
|
|
7483
7513
|
include Aws::Structure
|
|
7484
7514
|
end
|
|
@@ -7539,6 +7569,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7539
7569
|
# The timestamp when this specific version was created.
|
|
7540
7570
|
# @return [Time]
|
|
7541
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
|
+
#
|
|
7542
7577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionResponse AWS API Documentation
|
|
7543
7578
|
#
|
|
7544
7579
|
class GetConfigurationBundleVersionResponse < Struct.new(
|
|
@@ -7550,7 +7585,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7550
7585
|
:components,
|
|
7551
7586
|
:lineage_metadata,
|
|
7552
7587
|
:created_at,
|
|
7553
|
-
:version_created_at
|
|
7588
|
+
:version_created_at,
|
|
7589
|
+
:kms_key_arn)
|
|
7554
7590
|
SENSITIVE = [:description, :components]
|
|
7555
7591
|
include Aws::Structure
|
|
7556
7592
|
end
|
|
@@ -7560,8 +7596,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7560
7596
|
# @return [String]
|
|
7561
7597
|
#
|
|
7562
7598
|
# @!attribute [rw] dataset_version
|
|
7563
|
-
# Version to retrieve: "DRAFT" or a version number. Defaults to
|
|
7564
|
-
# if absent.
|
|
7599
|
+
# Version to retrieve: "DRAFT" or a version number. Defaults to
|
|
7600
|
+
# DRAFT if absent.
|
|
7565
7601
|
# @return [String]
|
|
7566
7602
|
#
|
|
7567
7603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetDatasetRequest AWS API Documentation
|
|
@@ -7599,15 +7635,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
7599
7635
|
# @return [String]
|
|
7600
7636
|
#
|
|
7601
7637
|
# @!attribute [rw] draft_status
|
|
7602
|
-
# Publish synchronization state. Only authoritative when status
|
|
7603
|
-
# ACTIVE. MODIFIED
|
|
7604
|
-
#
|
|
7605
|
-
# version exactly.
|
|
7638
|
+
# Publish synchronization state. Only authoritative when status is
|
|
7639
|
+
# ACTIVE. MODIFIED indicates DRAFT has unpublished changes. UNMODIFIED
|
|
7640
|
+
# indicates DRAFT matches the latest published version.
|
|
7606
7641
|
# @return [String]
|
|
7607
7642
|
#
|
|
7608
7643
|
# @!attribute [rw] failure_reason
|
|
7609
7644
|
# Populated when status is CREATE\_FAILED, UPDATE\_FAILED, or
|
|
7610
|
-
# DELETE\_FAILED.
|
|
7645
|
+
# DELETE\_FAILED. Describes the reason for the failure.
|
|
7611
7646
|
# @return [String]
|
|
7612
7647
|
#
|
|
7613
7648
|
# @!attribute [rw] schema_type
|
|
@@ -7615,23 +7650,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
7615
7650
|
# @return [String]
|
|
7616
7651
|
#
|
|
7617
7652
|
# @!attribute [rw] kms_key_arn
|
|
7618
|
-
#
|
|
7619
|
-
# configured.
|
|
7653
|
+
# KMS key ARN used for server-side encryption on service Amazon S3
|
|
7654
|
+
# writes, if configured.
|
|
7620
7655
|
# @return [String]
|
|
7621
7656
|
#
|
|
7622
7657
|
# @!attribute [rw] example_count
|
|
7623
|
-
#
|
|
7658
|
+
# The number of examples in the DRAFT.
|
|
7624
7659
|
# @return [Integer]
|
|
7625
7660
|
#
|
|
7626
7661
|
# @!attribute [rw] download_url
|
|
7627
|
-
# Presigned S3 URL to download the consolidated dataset
|
|
7628
|
-
# the resolved version
|
|
7629
|
-
#
|
|
7630
|
-
# failure.
|
|
7662
|
+
# Presigned Amazon S3 URL to download the consolidated dataset file
|
|
7663
|
+
# for the resolved version. Expires after 5 minutes. Omitted if the
|
|
7664
|
+
# file does not yet exist.
|
|
7631
7665
|
# @return [String]
|
|
7632
7666
|
#
|
|
7633
7667
|
# @!attribute [rw] download_url_expires_at
|
|
7634
|
-
# Expiry timestamp for
|
|
7668
|
+
# Expiry timestamp for the download URL.
|
|
7635
7669
|
# @return [Time]
|
|
7636
7670
|
#
|
|
7637
7671
|
# @!attribute [rw] created_at
|
|
@@ -8255,6 +8289,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
8255
8289
|
# The list of evaluators applied during online evaluation.
|
|
8256
8290
|
# @return [Array<Types::EvaluatorReference>]
|
|
8257
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
|
+
#
|
|
8258
8300
|
# @!attribute [rw] output_config
|
|
8259
8301
|
# The output configuration specifying where evaluation results are
|
|
8260
8302
|
# written.
|
|
@@ -8298,6 +8340,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
8298
8340
|
:rule,
|
|
8299
8341
|
:data_source_config,
|
|
8300
8342
|
:evaluators,
|
|
8343
|
+
:insights,
|
|
8344
|
+
:clustering_config,
|
|
8301
8345
|
:output_config,
|
|
8302
8346
|
:evaluation_execution_role_arn,
|
|
8303
8347
|
:status,
|
|
@@ -10595,6 +10639,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
10595
10639
|
include Aws::Structure
|
|
10596
10640
|
end
|
|
10597
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
|
+
|
|
10598
10658
|
# The interceptor configuration.
|
|
10599
10659
|
#
|
|
10600
10660
|
# @note InterceptorConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -11218,17 +11278,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
11218
11278
|
# @return [String]
|
|
11219
11279
|
#
|
|
11220
11280
|
# @!attribute [rw] dataset_version
|
|
11221
|
-
# Version to paginate: "DRAFT" or a version number. Defaults to
|
|
11222
|
-
# if absent. Only used on the first request
|
|
11223
|
-
#
|
|
11224
|
-
# nextToken and this parameter is ignored.
|
|
11281
|
+
# Version to paginate: "DRAFT" or a version number. Defaults to
|
|
11282
|
+
# DRAFT if absent. Only used on the first request; for subsequent
|
|
11283
|
+
# pages, the version is extracted from the pagination token.
|
|
11225
11284
|
# @return [String]
|
|
11226
11285
|
#
|
|
11227
11286
|
# @!attribute [rw] max_results
|
|
11228
|
-
# Maximum number of examples to return per page.
|
|
11229
|
-
# 1, max: 1000. Response size is validated against 5 MB limit after
|
|
11230
|
-
# reading. For bulk access to all examples, use the `downloadUrl`
|
|
11231
|
-
# field from GetDataset.
|
|
11287
|
+
# Maximum number of examples to return per page.
|
|
11232
11288
|
# @return [Integer]
|
|
11233
11289
|
#
|
|
11234
11290
|
# @!attribute [rw] next_token
|
|
@@ -13077,9 +13133,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13077
13133
|
# The MetadataValueType.
|
|
13078
13134
|
# @return [String]
|
|
13079
13135
|
#
|
|
13136
|
+
# @!attribute [rw] extraction_type
|
|
13137
|
+
# Specifies whether the metadata value is extracted by the LLM or
|
|
13138
|
+
# passed through deterministically from the event.
|
|
13139
|
+
# @return [String]
|
|
13140
|
+
#
|
|
13080
13141
|
# @!attribute [rw] extraction_config
|
|
13081
13142
|
# Configuration for extracting this metadata value from conversational
|
|
13082
|
-
# content.
|
|
13143
|
+
# content. Applicable only if extractionType is LLM inferred.
|
|
13083
13144
|
# @return [Types::ExtractionConfig]
|
|
13084
13145
|
#
|
|
13085
13146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MetadataSchemaEntry AWS API Documentation
|
|
@@ -13087,6 +13148,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13087
13148
|
class MetadataSchemaEntry < Struct.new(
|
|
13088
13149
|
:key,
|
|
13089
13150
|
:type,
|
|
13151
|
+
:extraction_type,
|
|
13090
13152
|
:extraction_config)
|
|
13091
13153
|
SENSITIVE = []
|
|
13092
13154
|
include Aws::Structure
|
|
@@ -13799,6 +13861,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13799
13861
|
# execution failed.
|
|
13800
13862
|
# @return [String]
|
|
13801
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
|
+
#
|
|
13802
13872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnlineEvaluationConfigSummary AWS API Documentation
|
|
13803
13873
|
#
|
|
13804
13874
|
class OnlineEvaluationConfigSummary < Struct.new(
|
|
@@ -13810,7 +13880,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
13810
13880
|
:execution_status,
|
|
13811
13881
|
:created_at,
|
|
13812
13882
|
:updated_at,
|
|
13813
|
-
:failure_reason
|
|
13883
|
+
:failure_reason,
|
|
13884
|
+
:insights,
|
|
13885
|
+
:clustering_config)
|
|
13814
13886
|
SENSITIVE = [:description]
|
|
13815
13887
|
include Aws::Structure
|
|
13816
13888
|
end
|
|
@@ -15254,11 +15326,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
15254
15326
|
include Aws::Structure
|
|
15255
15327
|
end
|
|
15256
15328
|
|
|
15257
|
-
# S3 location of a JSONL file containing dataset examples.
|
|
15329
|
+
# Amazon S3 location of a JSONL file containing dataset examples.
|
|
15258
15330
|
#
|
|
15259
15331
|
# @!attribute [rw] s3_uri
|
|
15260
|
-
# S3 URI of the JSONL file (
|
|
15261
|
-
# s3://my-bucket/path/to/examples.jsonl).
|
|
15332
|
+
# Amazon S3 URI of the JSONL file (for example,
|
|
15333
|
+
# `s3://my-bucket/path/to/examples.jsonl`).
|
|
15262
15334
|
# @return [String]
|
|
15263
15335
|
#
|
|
15264
15336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3Source AWS API Documentation
|
|
@@ -17248,6 +17320,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
17248
17320
|
# optional ARN.
|
|
17249
17321
|
# @return [Types::VersionCreatedBySource]
|
|
17250
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
|
+
#
|
|
17251
17329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleRequest AWS API Documentation
|
|
17252
17330
|
#
|
|
17253
17331
|
class UpdateConfigurationBundleRequest < Struct.new(
|
|
@@ -17259,7 +17337,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
17259
17337
|
:parent_version_ids,
|
|
17260
17338
|
:branch_name,
|
|
17261
17339
|
:commit_message,
|
|
17262
|
-
:created_by
|
|
17340
|
+
:created_by,
|
|
17341
|
+
:kms_key_arn)
|
|
17263
17342
|
SENSITIVE = [:description, :components]
|
|
17264
17343
|
include Aws::Structure
|
|
17265
17344
|
end
|
|
@@ -17313,11 +17392,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
17313
17392
|
#
|
|
17314
17393
|
# @!attribute [rw] examples
|
|
17315
17394
|
# Examples to update. Each element is a JSON object containing a
|
|
17316
|
-
# required `exampleId`
|
|
17317
|
-
#
|
|
17318
|
-
# removed before persistence; the remaining document is validated
|
|
17319
|
-
# against the dataset's schemaType. Max 1000 examples per call. Total
|
|
17320
|
-
# request body must not exceed 5 MB.
|
|
17395
|
+
# required `exampleId` field identifying the existing example, plus
|
|
17396
|
+
# the replacement fields. Maximum 1000 examples per call.
|
|
17321
17397
|
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
|
17322
17398
|
#
|
|
17323
17399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateDatasetExamplesRequest AWS API Documentation
|
|
@@ -18269,6 +18345,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
18269
18345
|
# The updated list of evaluators to apply during online evaluation.
|
|
18270
18346
|
# @return [Array<Types::EvaluatorReference>]
|
|
18271
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
|
+
#
|
|
18272
18356
|
# @!attribute [rw] evaluation_execution_role_arn
|
|
18273
18357
|
# The updated Amazon Resource Name (ARN) of the IAM role used for
|
|
18274
18358
|
# evaluation execution.
|
|
@@ -18288,6 +18372,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
18288
18372
|
:rule,
|
|
18289
18373
|
:data_source_config,
|
|
18290
18374
|
:evaluators,
|
|
18375
|
+
:insights,
|
|
18376
|
+
:clustering_config,
|
|
18291
18377
|
:evaluation_execution_role_arn,
|
|
18292
18378
|
:execution_status)
|
|
18293
18379
|
SENSITIVE = [:description]
|