@aws-sdk/client-bedrock-agentcore-control 3.1027.0 → 3.1029.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.
Files changed (73) hide show
  1. package/README.md +84 -0
  2. package/dist-cjs/index.js +223 -0
  3. package/dist-cjs/schemas/schemas_0.js +502 -56
  4. package/dist-es/BedrockAgentCoreControl.js +28 -0
  5. package/dist-es/commands/CreateRegistryCommand.js +16 -0
  6. package/dist-es/commands/CreateRegistryRecordCommand.js +16 -0
  7. package/dist-es/commands/DeleteRegistryCommand.js +16 -0
  8. package/dist-es/commands/DeleteRegistryRecordCommand.js +16 -0
  9. package/dist-es/commands/GetRegistryCommand.js +16 -0
  10. package/dist-es/commands/GetRegistryRecordCommand.js +16 -0
  11. package/dist-es/commands/ListRegistriesCommand.js +16 -0
  12. package/dist-es/commands/ListRegistryRecordsCommand.js +16 -0
  13. package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +16 -0
  14. package/dist-es/commands/UpdateRegistryCommand.js +16 -0
  15. package/dist-es/commands/UpdateRegistryRecordCommand.js +16 -0
  16. package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +16 -0
  17. package/dist-es/commands/index.js +12 -0
  18. package/dist-es/models/enums.js +40 -0
  19. package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
  20. package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +2 -0
  22. package/dist-es/schemas/schemas_0.js +491 -46
  23. package/dist-types/BedrockAgentCoreControl.d.ts +99 -0
  24. package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
  25. package/dist-types/commands/CreatePolicyEngineCommand.d.ts +1 -2
  26. package/dist-types/commands/CreateRegistryCommand.d.ts +127 -0
  27. package/dist-types/commands/CreateRegistryRecordCommand.d.ts +159 -0
  28. package/dist-types/commands/DeleteRegistryCommand.d.ts +92 -0
  29. package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +91 -0
  30. package/dist-types/commands/GetRegistryCommand.d.ts +129 -0
  31. package/dist-types/commands/GetRegistryRecordCommand.d.ts +161 -0
  32. package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -1
  33. package/dist-types/commands/ListRegistriesCommand.d.ts +101 -0
  34. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +111 -0
  35. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +97 -0
  36. package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateRegistryCommand.d.ts +175 -0
  38. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +248 -0
  39. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +100 -0
  40. package/dist-types/commands/index.d.ts +12 -0
  41. package/dist-types/models/enums.d.ts +96 -0
  42. package/dist-types/models/models_0.d.ts +70 -176
  43. package/dist-types/models/models_1.d.ts +1438 -6
  44. package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
  45. package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
  46. package/dist-types/pagination/index.d.ts +2 -0
  47. package/dist-types/schemas/schemas_0.d.ts +71 -0
  48. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +219 -0
  49. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
  50. package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +50 -0
  52. package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +47 -0
  56. package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -4
  58. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +50 -0
  63. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +51 -0
  65. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  66. package/dist-types/ts3.4/models/enums.d.ts +54 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +18 -40
  68. package/dist-types/ts3.4/models/models_1.d.ts +378 -0
  69. package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
  70. package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
  71. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  72. package/dist-types/ts3.4/schemas/schemas_0.d.ts +71 -0
  73. package/package.json +1 -1
@@ -0,0 +1,100 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { UpdateRegistryRecordStatusRequest, UpdateRegistryRecordStatusResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateRegistryRecordStatusCommand}.
14
+ */
15
+ export interface UpdateRegistryRecordStatusCommandInput extends UpdateRegistryRecordStatusRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateRegistryRecordStatusCommand}.
21
+ */
22
+ export interface UpdateRegistryRecordStatusCommandOutput extends UpdateRegistryRecordStatusResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateRegistryRecordStatusCommand_base: {
25
+ new (input: UpdateRegistryRecordStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRegistryRecordStatusCommandInput, UpdateRegistryRecordStatusCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateRegistryRecordStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRegistryRecordStatusCommandInput, UpdateRegistryRecordStatusCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the status of a registry record. Use this operation to approve, reject, or deprecate a registry record.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, UpdateRegistryRecordStatusCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, UpdateRegistryRecordStatusCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // UpdateRegistryRecordStatusRequest
40
+ * registryId: "STRING_VALUE", // required
41
+ * recordId: "STRING_VALUE", // required
42
+ * status: "DRAFT" || "PENDING_APPROVAL" || "APPROVED" || "REJECTED" || "DEPRECATED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED", // required
43
+ * statusReason: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new UpdateRegistryRecordStatusCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // UpdateRegistryRecordStatusResponse
48
+ * // registryArn: "STRING_VALUE", // required
49
+ * // recordArn: "STRING_VALUE", // required
50
+ * // recordId: "STRING_VALUE", // required
51
+ * // status: "DRAFT" || "PENDING_APPROVAL" || "APPROVED" || "REJECTED" || "DEPRECATED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED", // required
52
+ * // statusReason: "STRING_VALUE", // required
53
+ * // updatedAt: new Date("TIMESTAMP"), // required
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param UpdateRegistryRecordStatusCommandInput - {@link UpdateRegistryRecordStatusCommandInput}
59
+ * @returns {@link UpdateRegistryRecordStatusCommandOutput}
60
+ * @see {@link UpdateRegistryRecordStatusCommandInput} for command's `input` shape.
61
+ * @see {@link UpdateRegistryRecordStatusCommandOutput} for command's `response` shape.
62
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>This exception is thrown when a request is denied per access permissions</p>
66
+ *
67
+ * @throws {@link ConflictException} (client fault)
68
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
81
+ *
82
+ * @throws {@link BedrockAgentCoreControlServiceException}
83
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
84
+ *
85
+ *
86
+ * @public
87
+ */
88
+ export declare class UpdateRegistryRecordStatusCommand extends UpdateRegistryRecordStatusCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: UpdateRegistryRecordStatusRequest;
93
+ output: UpdateRegistryRecordStatusResponse;
94
+ };
95
+ sdk: {
96
+ input: UpdateRegistryRecordStatusCommandInput;
97
+ output: UpdateRegistryRecordStatusCommandOutput;
98
+ };
99
+ };
100
+ }
@@ -12,6 +12,8 @@ export * from "./CreateOauth2CredentialProviderCommand";
12
12
  export * from "./CreateOnlineEvaluationConfigCommand";
13
13
  export * from "./CreatePolicyCommand";
14
14
  export * from "./CreatePolicyEngineCommand";
15
+ export * from "./CreateRegistryCommand";
16
+ export * from "./CreateRegistryRecordCommand";
15
17
  export * from "./CreateWorkloadIdentityCommand";
16
18
  export * from "./DeleteAgentRuntimeCommand";
17
19
  export * from "./DeleteAgentRuntimeEndpointCommand";
@@ -27,6 +29,8 @@ export * from "./DeleteOauth2CredentialProviderCommand";
27
29
  export * from "./DeleteOnlineEvaluationConfigCommand";
28
30
  export * from "./DeletePolicyCommand";
29
31
  export * from "./DeletePolicyEngineCommand";
32
+ export * from "./DeleteRegistryCommand";
33
+ export * from "./DeleteRegistryRecordCommand";
30
34
  export * from "./DeleteResourcePolicyCommand";
31
35
  export * from "./DeleteWorkloadIdentityCommand";
32
36
  export * from "./GetAgentRuntimeCommand";
@@ -44,6 +48,8 @@ export * from "./GetOnlineEvaluationConfigCommand";
44
48
  export * from "./GetPolicyCommand";
45
49
  export * from "./GetPolicyEngineCommand";
46
50
  export * from "./GetPolicyGenerationCommand";
51
+ export * from "./GetRegistryCommand";
52
+ export * from "./GetRegistryRecordCommand";
47
53
  export * from "./GetResourcePolicyCommand";
48
54
  export * from "./GetTokenVaultCommand";
49
55
  export * from "./GetWorkloadIdentityCommand";
@@ -64,11 +70,14 @@ export * from "./ListPoliciesCommand";
64
70
  export * from "./ListPolicyEnginesCommand";
65
71
  export * from "./ListPolicyGenerationAssetsCommand";
66
72
  export * from "./ListPolicyGenerationsCommand";
73
+ export * from "./ListRegistriesCommand";
74
+ export * from "./ListRegistryRecordsCommand";
67
75
  export * from "./ListTagsForResourceCommand";
68
76
  export * from "./ListWorkloadIdentitiesCommand";
69
77
  export * from "./PutResourcePolicyCommand";
70
78
  export * from "./SetTokenVaultCMKCommand";
71
79
  export * from "./StartPolicyGenerationCommand";
80
+ export * from "./SubmitRegistryRecordForApprovalCommand";
72
81
  export * from "./SynchronizeGatewayTargetsCommand";
73
82
  export * from "./TagResourceCommand";
74
83
  export * from "./UntagResourceCommand";
@@ -83,4 +92,7 @@ export * from "./UpdateOauth2CredentialProviderCommand";
83
92
  export * from "./UpdateOnlineEvaluationConfigCommand";
84
93
  export * from "./UpdatePolicyCommand";
85
94
  export * from "./UpdatePolicyEngineCommand";
95
+ export * from "./UpdateRegistryCommand";
96
+ export * from "./UpdateRegistryRecordCommand";
97
+ export * from "./UpdateRegistryRecordStatusCommand";
86
98
  export * from "./UpdateWorkloadIdentityCommand";
@@ -700,3 +700,99 @@ export declare const PolicyStatus: {
700
700
  * @public
701
701
  */
702
702
  export type PolicyStatus = (typeof PolicyStatus)[keyof typeof PolicyStatus];
703
+ /**
704
+ * @public
705
+ * @enum
706
+ */
707
+ export declare const DescriptorType: {
708
+ readonly A2A: "A2A";
709
+ readonly AGENT_SKILLS: "AGENT_SKILLS";
710
+ readonly CUSTOM: "CUSTOM";
711
+ readonly MCP: "MCP";
712
+ };
713
+ /**
714
+ * @public
715
+ */
716
+ export type DescriptorType = (typeof DescriptorType)[keyof typeof DescriptorType];
717
+ /**
718
+ * @public
719
+ * @enum
720
+ */
721
+ export declare const RegistryRecordOAuthGrantType: {
722
+ readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
723
+ };
724
+ /**
725
+ * @public
726
+ */
727
+ export type RegistryRecordOAuthGrantType = (typeof RegistryRecordOAuthGrantType)[keyof typeof RegistryRecordOAuthGrantType];
728
+ /**
729
+ * @public
730
+ * @enum
731
+ */
732
+ export declare const RegistryRecordCredentialProviderType: {
733
+ readonly IAM: "IAM";
734
+ readonly OAUTH: "OAUTH";
735
+ };
736
+ /**
737
+ * @public
738
+ */
739
+ export type RegistryRecordCredentialProviderType = (typeof RegistryRecordCredentialProviderType)[keyof typeof RegistryRecordCredentialProviderType];
740
+ /**
741
+ * @public
742
+ * @enum
743
+ */
744
+ export declare const SynchronizationType: {
745
+ readonly URL: "URL";
746
+ };
747
+ /**
748
+ * @public
749
+ */
750
+ export type SynchronizationType = (typeof SynchronizationType)[keyof typeof SynchronizationType];
751
+ /**
752
+ * @public
753
+ * @enum
754
+ */
755
+ export declare const RegistryRecordStatus: {
756
+ readonly APPROVED: "APPROVED";
757
+ readonly CREATE_FAILED: "CREATE_FAILED";
758
+ readonly CREATING: "CREATING";
759
+ readonly DEPRECATED: "DEPRECATED";
760
+ readonly DRAFT: "DRAFT";
761
+ readonly PENDING_APPROVAL: "PENDING_APPROVAL";
762
+ readonly REJECTED: "REJECTED";
763
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
764
+ readonly UPDATING: "UPDATING";
765
+ };
766
+ /**
767
+ * @public
768
+ */
769
+ export type RegistryRecordStatus = (typeof RegistryRecordStatus)[keyof typeof RegistryRecordStatus];
770
+ /**
771
+ * @public
772
+ * @enum
773
+ */
774
+ export declare const RegistryAuthorizerType: {
775
+ readonly AWS_IAM: "AWS_IAM";
776
+ readonly CUSTOM_JWT: "CUSTOM_JWT";
777
+ };
778
+ /**
779
+ * @public
780
+ */
781
+ export type RegistryAuthorizerType = (typeof RegistryAuthorizerType)[keyof typeof RegistryAuthorizerType];
782
+ /**
783
+ * @public
784
+ * @enum
785
+ */
786
+ export declare const RegistryStatus: {
787
+ readonly CREATE_FAILED: "CREATE_FAILED";
788
+ readonly CREATING: "CREATING";
789
+ readonly DELETE_FAILED: "DELETE_FAILED";
790
+ readonly DELETING: "DELETING";
791
+ readonly READY: "READY";
792
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
793
+ readonly UPDATING: "UPDATING";
794
+ };
795
+ /**
796
+ * @public
797
+ */
798
+ export type RegistryStatus = (typeof RegistryStatus)[keyof typeof RegistryStatus];
@@ -1,5 +1,32 @@
1
1
  import type { DocumentType as __DocumentType } from "@smithy/types";
2
2
  import type { AgentManagedRuntimeType, AgentRuntimeEndpointStatus, AgentRuntimeStatus, ApiKeyCredentialLocation, AuthorizerType, BrowserEnterprisePolicyType, BrowserNetworkMode, BrowserProfileStatus, BrowserStatus, ClaimMatchOperatorType, CodeInterpreterNetworkMode, CodeInterpreterStatus, ContentLevel, ContentType, CredentialProviderType, CredentialProviderVendorType, EndpointIpAddressType, EvaluatorLevel, EvaluatorStatus, EvaluatorType, ExceptionLevel, FilterOperator, GatewayInterceptionPoint, GatewayPolicyEngineMode, GatewayProtocolType, GatewayStatus, InboundTokenClaimValueType, KeyType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, NetworkMode, OAuthGrantType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, ResourceType, RestApiMethod, SearchType, ServerProtocol, TargetStatus } from "./enums";
3
+ /**
4
+ * <p>The agent card definition for an A2A descriptor. Contains the schema version and inline content for the agent card.</p>
5
+ * @public
6
+ */
7
+ export interface AgentCardDefinition {
8
+ /**
9
+ * <p>The schema version of the agent card based on the A2A protocol specification.</p>
10
+ * @public
11
+ */
12
+ schemaVersion?: string | undefined;
13
+ /**
14
+ * <p>The JSON content containing the A2A agent card definition, conforming to the A2A protocol specification.</p>
15
+ * @public
16
+ */
17
+ inlineContent?: string | undefined;
18
+ }
19
+ /**
20
+ * <p>The Agent-to-Agent (A2A) protocol descriptor for a registry record. Contains the agent card definition as defined by the A2A protocol specification.</p>
21
+ * @public
22
+ */
23
+ export interface A2aDescriptor {
24
+ /**
25
+ * <p>The agent card definition for the A2A agent, as defined by the A2A protocol specification.</p>
26
+ * @public
27
+ */
28
+ agentCard?: AgentCardDefinition | undefined;
29
+ }
3
30
  /**
4
31
  * @public
5
32
  */
@@ -1273,6 +1300,49 @@ export interface UpdateAgentRuntimeResponse {
1273
1300
  */
1274
1301
  status: AgentRuntimeStatus | undefined;
1275
1302
  }
1303
+ /**
1304
+ * <p>The structured skill definition with schema version and content.</p>
1305
+ * @public
1306
+ */
1307
+ export interface SkillDefinition {
1308
+ /**
1309
+ * <p>The version of the skill definition schema.</p>
1310
+ * @public
1311
+ */
1312
+ schemaVersion?: string | undefined;
1313
+ /**
1314
+ * <p>The JSON content containing the structured skill definition.</p>
1315
+ * @public
1316
+ */
1317
+ inlineContent?: string | undefined;
1318
+ }
1319
+ /**
1320
+ * <p>The skill markdown definition for an agent skills descriptor.</p>
1321
+ * @public
1322
+ */
1323
+ export interface SkillMdDefinition {
1324
+ /**
1325
+ * <p>The markdown content describing the agent's skills in a human-readable format.</p>
1326
+ * @public
1327
+ */
1328
+ inlineContent?: string | undefined;
1329
+ }
1330
+ /**
1331
+ * <p>The agent skills descriptor for a registry record. Contains an optional skill markdown definition in human-readable format and an optional structured skill definition.</p>
1332
+ * @public
1333
+ */
1334
+ export interface AgentSkillsDescriptor {
1335
+ /**
1336
+ * <p>The optional skill markdown definition describing the agent's skills in a human-readable format.</p>
1337
+ * @public
1338
+ */
1339
+ skillMd?: SkillMdDefinition | undefined;
1340
+ /**
1341
+ * <p>The structured skill definition with schema version and content.</p>
1342
+ * @public
1343
+ */
1344
+ skillDefinition?: SkillDefinition | undefined;
1345
+ }
1276
1346
  /**
1277
1347
  * @public
1278
1348
  */
@@ -8070,179 +8140,3 @@ export interface ListOnlineEvaluationConfigsRequest {
8070
8140
  */
8071
8141
  maxResults?: number | undefined;
8072
8142
  }
8073
- /**
8074
- * <p> The summary information about an online evaluation configuration, including basic metadata and execution status. </p>
8075
- * @public
8076
- */
8077
- export interface OnlineEvaluationConfigSummary {
8078
- /**
8079
- * <p> The Amazon Resource Name (ARN) of the online evaluation configuration. </p>
8080
- * @public
8081
- */
8082
- onlineEvaluationConfigArn: string | undefined;
8083
- /**
8084
- * <p> The unique identifier of the online evaluation configuration. </p>
8085
- * @public
8086
- */
8087
- onlineEvaluationConfigId: string | undefined;
8088
- /**
8089
- * <p> The name of the online evaluation configuration. </p>
8090
- * @public
8091
- */
8092
- onlineEvaluationConfigName: string | undefined;
8093
- /**
8094
- * <p> The description of the online evaluation configuration. </p>
8095
- * @public
8096
- */
8097
- description?: string | undefined;
8098
- /**
8099
- * <p> The status of the online evaluation configuration. </p>
8100
- * @public
8101
- */
8102
- status: OnlineEvaluationConfigStatus | undefined;
8103
- /**
8104
- * <p> The execution status indicating whether the online evaluation is currently running. </p>
8105
- * @public
8106
- */
8107
- executionStatus: OnlineEvaluationExecutionStatus | undefined;
8108
- /**
8109
- * <p> The timestamp when the online evaluation configuration was created. </p>
8110
- * @public
8111
- */
8112
- createdAt: Date | undefined;
8113
- /**
8114
- * <p> The timestamp when the online evaluation configuration was last updated. </p>
8115
- * @public
8116
- */
8117
- updatedAt: Date | undefined;
8118
- /**
8119
- * <p> The reason for failure if the online evaluation configuration execution failed. </p>
8120
- * @public
8121
- */
8122
- failureReason?: string | undefined;
8123
- }
8124
- /**
8125
- * @public
8126
- */
8127
- export interface ListOnlineEvaluationConfigsResponse {
8128
- /**
8129
- * <p> The list of online evaluation configuration summaries containing basic information about each configuration. </p>
8130
- * @public
8131
- */
8132
- onlineEvaluationConfigs: OnlineEvaluationConfigSummary[] | undefined;
8133
- /**
8134
- * <p> The pagination token to use in a subsequent request to retrieve the next page of results. </p>
8135
- * @public
8136
- */
8137
- nextToken?: string | undefined;
8138
- }
8139
- /**
8140
- * @public
8141
- */
8142
- export interface UpdateOnlineEvaluationConfigRequest {
8143
- /**
8144
- * <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If you don't specify this field, a value is randomly generated for you. If this token matches a previous request, the service ignores the request, but doesn't return an error. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p>
8145
- * @public
8146
- */
8147
- clientToken?: string | undefined;
8148
- /**
8149
- * <p> The unique identifier of the online evaluation configuration to update. </p>
8150
- * @public
8151
- */
8152
- onlineEvaluationConfigId: string | undefined;
8153
- /**
8154
- * <p> The updated description of the online evaluation configuration. </p>
8155
- * @public
8156
- */
8157
- description?: string | undefined;
8158
- /**
8159
- * <p> The updated evaluation rule containing sampling configuration, filters, and session settings. </p>
8160
- * @public
8161
- */
8162
- rule?: Rule | undefined;
8163
- /**
8164
- * <p> The updated data source configuration specifying CloudWatch log groups and service names to monitor. </p>
8165
- * @public
8166
- */
8167
- dataSourceConfig?: DataSourceConfig | undefined;
8168
- /**
8169
- * <p> The updated list of evaluators to apply during online evaluation. </p>
8170
- * @public
8171
- */
8172
- evaluators?: EvaluatorReference[] | undefined;
8173
- /**
8174
- * <p> The updated Amazon Resource Name (ARN) of the IAM role used for evaluation execution. </p>
8175
- * @public
8176
- */
8177
- evaluationExecutionRoleArn?: string | undefined;
8178
- /**
8179
- * <p> The updated execution status to enable or disable the online evaluation. </p>
8180
- * @public
8181
- */
8182
- executionStatus?: OnlineEvaluationExecutionStatus | undefined;
8183
- }
8184
- /**
8185
- * @public
8186
- */
8187
- export interface UpdateOnlineEvaluationConfigResponse {
8188
- /**
8189
- * <p> The Amazon Resource Name (ARN) of the updated online evaluation configuration. </p>
8190
- * @public
8191
- */
8192
- onlineEvaluationConfigArn: string | undefined;
8193
- /**
8194
- * <p> The unique identifier of the updated online evaluation configuration. </p>
8195
- * @public
8196
- */
8197
- onlineEvaluationConfigId: string | undefined;
8198
- /**
8199
- * <p> The timestamp when the online evaluation configuration was last updated. </p>
8200
- * @public
8201
- */
8202
- updatedAt: Date | undefined;
8203
- /**
8204
- * <p> The status of the online evaluation configuration. </p>
8205
- * @public
8206
- */
8207
- status: OnlineEvaluationConfigStatus | undefined;
8208
- /**
8209
- * <p> The execution status indicating whether the online evaluation is currently running. </p>
8210
- * @public
8211
- */
8212
- executionStatus: OnlineEvaluationExecutionStatus | undefined;
8213
- /**
8214
- * <p> The reason for failure if the online evaluation configuration update or execution failed. </p>
8215
- * @public
8216
- */
8217
- failureReason?: string | undefined;
8218
- }
8219
- /**
8220
- * @public
8221
- */
8222
- export interface CreatePolicyEngineRequest {
8223
- /**
8224
- * <p>The customer-assigned immutable name for the policy engine. This name identifies the policy engine and cannot be changed after creation.</p>
8225
- * @public
8226
- */
8227
- name: string | undefined;
8228
- /**
8229
- * <p>A human-readable description of the policy engine's purpose and scope (1-4,096 characters). This helps administrators understand the policy engine's role in the overall governance strategy. Document which Gateway this engine will be associated with, what types of tools or workflows it governs, and the team or service responsible for maintaining it. Clear descriptions are essential when managing multiple policy engines across different services or environments.</p>
8230
- * @public
8231
- */
8232
- description?: string | undefined;
8233
- /**
8234
- * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request with the same client token, the service returns the same response without creating a duplicate policy engine.</p>
8235
- * @public
8236
- */
8237
- clientToken?: string | undefined;
8238
- /**
8239
- * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.</p>
8240
- * @public
8241
- */
8242
- encryptionKeyArn?: string | undefined;
8243
- /**
8244
- * <p>A map of tag keys and values to assign to an AgentCore Policy. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
8245
- * @public
8246
- */
8247
- tags?: Record<string, string> | undefined;
8248
- }