@aws-sdk/client-bedrock-agentcore-control 3.1039.0 → 3.1041.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.
- package/dist-cjs/index.js +24 -0
- package/dist-cjs/schemas/schemas_0.js +154 -49
- package/dist-es/models/enums.js +20 -0
- package/dist-es/schemas/schemas_0.js +144 -40
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +233 -2
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/commands/DeleteHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +69 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +10 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMemoryCommand.d.ts +235 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/models/enums.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +240 -250
- package/dist-types/models/models_1.d.ts +340 -4
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +28 -0
- package/dist-types/ts3.4/models/models_0.d.ts +90 -103
- package/dist-types/ts3.4/models/models_1.d.ts +130 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +5 -5
|
@@ -1,5 +1,259 @@
|
|
|
1
|
-
import type { CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SchemaType, Status, SynchronizationType, TargetProtocolType, TargetStatus } from "./enums";
|
|
2
|
-
import type { A2aDescriptor, AgentSkillsDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, AuthorizerConfiguration,
|
|
1
|
+
import type { ActorTokenContentType, ClientAuthenticationMethodType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SchemaType, Status, SynchronizationType, TargetProtocolType, TargetStatus } from "./enums";
|
|
2
|
+
import type { A2aDescriptor, AgentSkillsDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, AuthorizerConfiguration, ContentConfiguration, CredentialProviderConfiguration, EpisodicOverrideConsolidationConfigurationInput, EpisodicOverrideExtractionConfigurationInput, EpisodicOverrideReflectionConfigurationInput, EpisodicReflectionConfigurationInput, HttpTargetConfiguration, IndexedKey, KmsConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MemoryRecordSchema, MemoryStrategyInput, MetadataConfiguration, PrivateEndpoint, PrivateEndpointOverride, S3Configuration, Secret, SemanticOverrideConsolidationConfigurationInput, SemanticOverrideExtractionConfigurationInput, SkillDefinition, SkillMdDefinition, SummaryOverrideConsolidationConfigurationInput, TriggerConditionInput, UpdatedAuthorizerConfiguration, UserPreferenceOverrideConsolidationConfigurationInput, UserPreferenceOverrideExtractionConfigurationInput } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Configuration for Kinesis Data Stream delivery.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface KinesisResource {
|
|
8
|
+
/**
|
|
9
|
+
* <p>ARN of the Kinesis Data Stream.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
dataStreamArn: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>Content configurations for stream delivery.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
contentConfigurations: ContentConfiguration[] | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* <p>Supported stream delivery resource types.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type StreamDeliveryResource = StreamDeliveryResource.KinesisMember | StreamDeliveryResource.$UnknownMember;
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export declare namespace StreamDeliveryResource {
|
|
28
|
+
/**
|
|
29
|
+
* <p>Kinesis Data Stream configuration.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
interface KinesisMember {
|
|
33
|
+
kinesis: KinesisResource;
|
|
34
|
+
$unknown?: never;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
interface $UnknownMember {
|
|
40
|
+
kinesis?: never;
|
|
41
|
+
$unknown: [string, any];
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @deprecated unused in schema-serde mode.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
interface Visitor<T> {
|
|
48
|
+
kinesis: (value: KinesisResource) => T;
|
|
49
|
+
_: (name: string, value: any) => T;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>Configuration for streaming memory record data to external resources.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export interface StreamDeliveryResources {
|
|
57
|
+
/**
|
|
58
|
+
* <p>List of stream delivery resource configurations.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
resources: StreamDeliveryResource[] | undefined;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export interface CreateMemoryInput {
|
|
67
|
+
/**
|
|
68
|
+
* <p>A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request but does not return an error.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
clientToken?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The name of the memory. The name must be unique within your account.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
name: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The description of the memory.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
description?: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the memory data.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
encryptionKeyArn?: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the memory to access Amazon Web Services services.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
memoryExecutionRoleArn?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The duration after which memory events expire. Specified as an ISO 8601 duration.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
eventExpiryDuration: number | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The memory strategies to use for this memory. Strategies define how information is extracted, processed, and consolidated.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
memoryStrategies?: MemoryStrategyInput[] | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>Metadata keys to index for filtering. Once declared, indexed keys cannot be removed.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
indexedKeys?: IndexedKey[] | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>Configuration for streaming memory record data to external resources.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
streamDeliveryResources?: StreamDeliveryResources | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>A map of tag keys and values to assign to an AgentCore Memory. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
tags?: Record<string, string> | undefined;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* <p>Contains configurations to override the default consolidation step for the episodic memory strategy.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export interface EpisodicConsolidationOverride {
|
|
123
|
+
/**
|
|
124
|
+
* <p>The text appended to the prompt for the consolidation step of the episodic memory strategy.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
appendToPrompt: string | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* <p>The model ID used for the consolidation step of the episodic memory strategy.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
modelId: string | undefined;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* <p>Contains semantic consolidation override configuration.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
export interface SemanticConsolidationOverride {
|
|
139
|
+
/**
|
|
140
|
+
* <p>The text to append to the prompt for semantic consolidation.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
appendToPrompt: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>The model ID to use for semantic consolidation.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
modelId: string | undefined;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* <p>Contains summary consolidation override configuration.</p>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
export interface SummaryConsolidationOverride {
|
|
155
|
+
/**
|
|
156
|
+
* <p>The text to append to the prompt for summary consolidation.</p>
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
appendToPrompt: string | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* <p>The model ID to use for summary consolidation.</p>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
modelId: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* <p>Contains user preference consolidation override configuration.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
export interface UserPreferenceConsolidationOverride {
|
|
171
|
+
/**
|
|
172
|
+
* <p>The text to append to the prompt for user preference consolidation.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
appendToPrompt: string | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* <p>The model ID to use for user preference consolidation.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
modelId: string | undefined;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* <p>Contains custom consolidation configuration information.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type CustomConsolidationConfiguration = CustomConsolidationConfiguration.EpisodicConsolidationOverrideMember | CustomConsolidationConfiguration.SemanticConsolidationOverrideMember | CustomConsolidationConfiguration.SummaryConsolidationOverrideMember | CustomConsolidationConfiguration.UserPreferenceConsolidationOverrideMember | CustomConsolidationConfiguration.$UnknownMember;
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export declare namespace CustomConsolidationConfiguration {
|
|
191
|
+
/**
|
|
192
|
+
* <p>The semantic consolidation override configuration.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
interface SemanticConsolidationOverrideMember {
|
|
196
|
+
semanticConsolidationOverride: SemanticConsolidationOverride;
|
|
197
|
+
summaryConsolidationOverride?: never;
|
|
198
|
+
userPreferenceConsolidationOverride?: never;
|
|
199
|
+
episodicConsolidationOverride?: never;
|
|
200
|
+
$unknown?: never;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* <p>The summary consolidation override configuration.</p>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
interface SummaryConsolidationOverrideMember {
|
|
207
|
+
semanticConsolidationOverride?: never;
|
|
208
|
+
summaryConsolidationOverride: SummaryConsolidationOverride;
|
|
209
|
+
userPreferenceConsolidationOverride?: never;
|
|
210
|
+
episodicConsolidationOverride?: never;
|
|
211
|
+
$unknown?: never;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* <p>The user preference consolidation override configuration.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
interface UserPreferenceConsolidationOverrideMember {
|
|
218
|
+
semanticConsolidationOverride?: never;
|
|
219
|
+
summaryConsolidationOverride?: never;
|
|
220
|
+
userPreferenceConsolidationOverride: UserPreferenceConsolidationOverride;
|
|
221
|
+
episodicConsolidationOverride?: never;
|
|
222
|
+
$unknown?: never;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* <p>The configurations to override the default consolidation step for the episodic memory strategy.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
interface EpisodicConsolidationOverrideMember {
|
|
229
|
+
semanticConsolidationOverride?: never;
|
|
230
|
+
summaryConsolidationOverride?: never;
|
|
231
|
+
userPreferenceConsolidationOverride?: never;
|
|
232
|
+
episodicConsolidationOverride: EpisodicConsolidationOverride;
|
|
233
|
+
$unknown?: never;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
interface $UnknownMember {
|
|
239
|
+
semanticConsolidationOverride?: never;
|
|
240
|
+
summaryConsolidationOverride?: never;
|
|
241
|
+
userPreferenceConsolidationOverride?: never;
|
|
242
|
+
episodicConsolidationOverride?: never;
|
|
243
|
+
$unknown: [string, any];
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* @deprecated unused in schema-serde mode.
|
|
247
|
+
*
|
|
248
|
+
*/
|
|
249
|
+
interface Visitor<T> {
|
|
250
|
+
semanticConsolidationOverride: (value: SemanticConsolidationOverride) => T;
|
|
251
|
+
summaryConsolidationOverride: (value: SummaryConsolidationOverride) => T;
|
|
252
|
+
userPreferenceConsolidationOverride: (value: UserPreferenceConsolidationOverride) => T;
|
|
253
|
+
episodicConsolidationOverride: (value: EpisodicConsolidationOverride) => T;
|
|
254
|
+
_: (name: string, value: any) => T;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
3
257
|
/**
|
|
4
258
|
* <p>Contains consolidation configuration information for a memory strategy.</p>
|
|
5
259
|
* @public
|
|
@@ -200,6 +454,11 @@ export interface EpisodicReflectionOverride {
|
|
|
200
454
|
* @public
|
|
201
455
|
*/
|
|
202
456
|
namespaceTemplates?: string[] | undefined;
|
|
457
|
+
/**
|
|
458
|
+
* <p>Schema for metadata fields on records generated by this reflection override.</p>
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
memoryRecordSchema?: MemoryRecordSchema | undefined;
|
|
203
462
|
}
|
|
204
463
|
/**
|
|
205
464
|
* <p>Contains configurations for a custom reflection strategy.</p>
|
|
@@ -251,6 +510,11 @@ export interface EpisodicReflectionConfiguration {
|
|
|
251
510
|
* @public
|
|
252
511
|
*/
|
|
253
512
|
namespaceTemplates?: string[] | undefined;
|
|
513
|
+
/**
|
|
514
|
+
* <p>"Schema for metadata fields on records generated by reflections.</p>
|
|
515
|
+
* @public
|
|
516
|
+
*/
|
|
517
|
+
memoryRecordSchema?: MemoryRecordSchema | undefined;
|
|
254
518
|
}
|
|
255
519
|
/**
|
|
256
520
|
* <p>Contains reflection configuration information for a memory strategy.</p>
|
|
@@ -514,6 +778,11 @@ export interface MemoryStrategy {
|
|
|
514
778
|
* @public
|
|
515
779
|
*/
|
|
516
780
|
status?: MemoryStrategyStatus | undefined;
|
|
781
|
+
/**
|
|
782
|
+
* <p>Schema for metadata fields on records generated by this strategy.</p>
|
|
783
|
+
* @public
|
|
784
|
+
*/
|
|
785
|
+
memoryRecordSchema?: MemoryRecordSchema | undefined;
|
|
517
786
|
}
|
|
518
787
|
/**
|
|
519
788
|
* <p>Contains information about a memory resource.</p>
|
|
@@ -580,6 +849,11 @@ export interface Memory {
|
|
|
580
849
|
* @public
|
|
581
850
|
*/
|
|
582
851
|
strategies?: MemoryStrategy[] | undefined;
|
|
852
|
+
/**
|
|
853
|
+
* <p>The indexed metadata keys for this memory. Only indexed keys can be used in metadata filters.</p>
|
|
854
|
+
* @public
|
|
855
|
+
*/
|
|
856
|
+
indexedKeys?: IndexedKey[] | undefined;
|
|
583
857
|
/**
|
|
584
858
|
* <p>Configuration for streaming memory record data to external resources.</p>
|
|
585
859
|
* @public
|
|
@@ -1096,6 +1370,11 @@ export interface ModifyMemoryStrategyInput {
|
|
|
1096
1370
|
* @public
|
|
1097
1371
|
*/
|
|
1098
1372
|
configuration?: ModifyStrategyConfiguration | undefined;
|
|
1373
|
+
/**
|
|
1374
|
+
* <p>Updated metadata schema for records generated by this strategy.</p>
|
|
1375
|
+
* @public
|
|
1376
|
+
*/
|
|
1377
|
+
memoryRecordSchema?: MemoryRecordSchema | undefined;
|
|
1099
1378
|
}
|
|
1100
1379
|
/**
|
|
1101
1380
|
* <p>Contains information for modifying memory strategies.</p>
|
|
@@ -1152,6 +1431,11 @@ export interface UpdateMemoryInput {
|
|
|
1152
1431
|
* @public
|
|
1153
1432
|
*/
|
|
1154
1433
|
memoryStrategies?: ModifyMemoryStrategies | undefined;
|
|
1434
|
+
/**
|
|
1435
|
+
* <p>Additional metadata keys to index. Previously indexed keys cannot be removed.</p>
|
|
1436
|
+
* @public
|
|
1437
|
+
*/
|
|
1438
|
+
addIndexedKeys?: IndexedKey[] | undefined;
|
|
1155
1439
|
/**
|
|
1156
1440
|
* <p>Configuration for streaming memory record data to external resources.</p>
|
|
1157
1441
|
* @public
|
|
@@ -1260,6 +1544,38 @@ export declare namespace Oauth2Discovery {
|
|
|
1260
1544
|
_: (name: string, value: any) => T;
|
|
1261
1545
|
}
|
|
1262
1546
|
}
|
|
1547
|
+
/**
|
|
1548
|
+
* Configuration for RFC 8693 Token Exchange
|
|
1549
|
+
* @public
|
|
1550
|
+
*/
|
|
1551
|
+
export interface TokenExchangeGrantTypeConfigType {
|
|
1552
|
+
/**
|
|
1553
|
+
* <p>The content type for the actor token in the token exchange.</p>
|
|
1554
|
+
* @public
|
|
1555
|
+
*/
|
|
1556
|
+
actorTokenContent: ActorTokenContentType | undefined;
|
|
1557
|
+
/**
|
|
1558
|
+
* Only valid when actorTokenContent is M2M
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1561
|
+
actorTokenScopes?: string[] | undefined;
|
|
1562
|
+
}
|
|
1563
|
+
/**
|
|
1564
|
+
* Configuration for on-behalf-of token exchange
|
|
1565
|
+
* @public
|
|
1566
|
+
*/
|
|
1567
|
+
export interface OnBehalfOfTokenExchangeConfigType {
|
|
1568
|
+
/**
|
|
1569
|
+
* <p>The grant type for the on-behalf-of token exchange.</p>
|
|
1570
|
+
* @public
|
|
1571
|
+
*/
|
|
1572
|
+
grantType: OnBehalfOfTokenExchangeGrantTypeType | undefined;
|
|
1573
|
+
/**
|
|
1574
|
+
* Configuration specific to TOKEN_EXCHANGE grant type (RFC 8693)
|
|
1575
|
+
* @public
|
|
1576
|
+
*/
|
|
1577
|
+
tokenExchangeGrantTypeConfig?: TokenExchangeGrantTypeConfigType | undefined;
|
|
1578
|
+
}
|
|
1263
1579
|
/**
|
|
1264
1580
|
* <p>Input configuration for a custom OAuth2 provider.</p>
|
|
1265
1581
|
* @public
|
|
@@ -1274,12 +1590,12 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
1274
1590
|
* <p>The client ID for the custom OAuth2 provider.</p>
|
|
1275
1591
|
* @public
|
|
1276
1592
|
*/
|
|
1277
|
-
clientId
|
|
1593
|
+
clientId?: string | undefined;
|
|
1278
1594
|
/**
|
|
1279
1595
|
* <p>The client secret for the custom OAuth2 provider.</p>
|
|
1280
1596
|
* @public
|
|
1281
1597
|
*/
|
|
1282
|
-
clientSecret
|
|
1598
|
+
clientSecret?: string | undefined;
|
|
1283
1599
|
/**
|
|
1284
1600
|
* <p>The default private endpoint for the custom OAuth2 provider, enabling secure connectivity through a VPC Lattice resource configuration.</p>
|
|
1285
1601
|
* @public
|
|
@@ -1290,6 +1606,16 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
1290
1606
|
* @public
|
|
1291
1607
|
*/
|
|
1292
1608
|
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
1609
|
+
/**
|
|
1610
|
+
* <p>The configuration for on-behalf-of token exchange. This enables authentication flows that use RFC 8693 token exchange or RFC 7523 JWT authorization grants.</p>
|
|
1611
|
+
* @public
|
|
1612
|
+
*/
|
|
1613
|
+
onBehalfOfTokenExchangeConfig?: OnBehalfOfTokenExchangeConfigType | undefined;
|
|
1614
|
+
/**
|
|
1615
|
+
* <p>The client authentication method to use when authenticating with the token endpoint.</p>
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
|
|
1293
1619
|
}
|
|
1294
1620
|
/**
|
|
1295
1621
|
* <p>Input configuration for a GitHub OAuth2 provider.</p>
|
|
@@ -1674,6 +2000,16 @@ export interface CustomOauth2ProviderConfigOutput {
|
|
|
1674
2000
|
* @public
|
|
1675
2001
|
*/
|
|
1676
2002
|
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
2003
|
+
/**
|
|
2004
|
+
* <p>The configuration for on-behalf-of token exchange.</p>
|
|
2005
|
+
* @public
|
|
2006
|
+
*/
|
|
2007
|
+
onBehalfOfTokenExchangeConfig?: OnBehalfOfTokenExchangeConfigType | undefined;
|
|
2008
|
+
/**
|
|
2009
|
+
* <p>The client authentication method used when authenticating with the token endpoint.</p>
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
2012
|
+
clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
|
|
1677
2013
|
}
|
|
1678
2014
|
/**
|
|
1679
2015
|
* <p>Output configuration for a GitHub OAuth2 provider.</p>
|
|
@@ -241,6 +241,7 @@ export declare var IamCredentialProvider$: StaticStructureSchema;
|
|
|
241
241
|
export declare var IamPrincipal$: StaticStructureSchema;
|
|
242
242
|
export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
243
243
|
export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
244
|
+
export declare var IndexedKey$: StaticStructureSchema;
|
|
244
245
|
export declare var InferenceConfiguration$: StaticStructureSchema;
|
|
245
246
|
export declare var InterceptorInputConfiguration$: StaticStructureSchema;
|
|
246
247
|
export declare var InvocationConfiguration$: StaticStructureSchema;
|
|
@@ -303,6 +304,7 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
303
304
|
export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
|
|
304
305
|
export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
|
|
305
306
|
export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
|
|
307
|
+
export declare var LlmExtractionConfig$: StaticStructureSchema;
|
|
306
308
|
export declare var ManagedResourceDetails$: StaticStructureSchema;
|
|
307
309
|
export declare var ManagedVpcResource$: StaticStructureSchema;
|
|
308
310
|
export declare var MatchPaths$: StaticStructureSchema;
|
|
@@ -312,11 +314,13 @@ export declare var MCPGatewayConfiguration$: StaticStructureSchema;
|
|
|
312
314
|
export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
|
|
313
315
|
export declare var McpServerTargetConfiguration$: StaticStructureSchema;
|
|
314
316
|
export declare var Memory$: StaticStructureSchema;
|
|
317
|
+
export declare var MemoryRecordSchema$: StaticStructureSchema;
|
|
315
318
|
export declare var MemoryStrategy$: StaticStructureSchema;
|
|
316
319
|
export declare var MemorySummary$: StaticStructureSchema;
|
|
317
320
|
export declare var MessageBasedTrigger$: StaticStructureSchema;
|
|
318
321
|
export declare var MessageBasedTriggerInput$: StaticStructureSchema;
|
|
319
322
|
export declare var MetadataConfiguration$: StaticStructureSchema;
|
|
323
|
+
export declare var MetadataSchemaEntry$: StaticStructureSchema;
|
|
320
324
|
export declare var MicrosoftOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
321
325
|
export declare var MicrosoftOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
322
326
|
export declare var ModifyInvocationConfigurationInput$: StaticStructureSchema;
|
|
@@ -325,11 +329,13 @@ export declare var ModifyMemoryStrategyInput$: StaticStructureSchema;
|
|
|
325
329
|
export declare var ModifySelfManagedConfiguration$: StaticStructureSchema;
|
|
326
330
|
export declare var ModifyStrategyConfiguration$: StaticStructureSchema;
|
|
327
331
|
export declare var NetworkConfiguration$: StaticStructureSchema;
|
|
332
|
+
export declare var NumberValidation$: StaticStructureSchema;
|
|
328
333
|
export declare var NumericalScaleDefinition$: StaticStructureSchema;
|
|
329
334
|
export declare var OAuth2AuthorizationData$: StaticStructureSchema;
|
|
330
335
|
export declare var Oauth2AuthorizationServerMetadata$: StaticStructureSchema;
|
|
331
336
|
export declare var Oauth2CredentialProviderItem$: StaticStructureSchema;
|
|
332
337
|
export declare var OAuthCredentialProvider$: StaticStructureSchema;
|
|
338
|
+
export declare var OnBehalfOfTokenExchangeConfigType$: StaticStructureSchema;
|
|
333
339
|
export declare var OnlineEvaluationConfigSummary$: StaticStructureSchema;
|
|
334
340
|
export declare var OutputConfig$: StaticStructureSchema;
|
|
335
341
|
export declare var Policy$: StaticStructureSchema;
|
|
@@ -381,6 +387,8 @@ export declare var StaticOverride$: StaticStructureSchema;
|
|
|
381
387
|
export declare var StaticRoute$: StaticStructureSchema;
|
|
382
388
|
export declare var StrategyConfiguration$: StaticStructureSchema;
|
|
383
389
|
export declare var StreamDeliveryResources$: StaticStructureSchema;
|
|
390
|
+
export declare var StringListValidation$: StaticStructureSchema;
|
|
391
|
+
export declare var StringValidation$: StaticStructureSchema;
|
|
384
392
|
export declare var SubmitRegistryRecordForApprovalRequest$: StaticStructureSchema;
|
|
385
393
|
export declare var SubmitRegistryRecordForApprovalResponse$: StaticStructureSchema;
|
|
386
394
|
export declare var SummaryConsolidationOverride$: StaticStructureSchema;
|
|
@@ -399,6 +407,7 @@ export declare var TimeBasedTrigger$: StaticStructureSchema;
|
|
|
399
407
|
export declare var TimeBasedTriggerInput$: StaticStructureSchema;
|
|
400
408
|
export declare var TokenBasedTrigger$: StaticStructureSchema;
|
|
401
409
|
export declare var TokenBasedTriggerInput$: StaticStructureSchema;
|
|
410
|
+
export declare var TokenExchangeGrantTypeConfigType$: StaticStructureSchema;
|
|
402
411
|
export declare var ToolDefinition$: StaticStructureSchema;
|
|
403
412
|
export declare var ToolsDefinition$: StaticStructureSchema;
|
|
404
413
|
export declare var TrafficSplitEntry$: StaticStructureSchema;
|
|
@@ -499,6 +508,7 @@ export declare var DataSourceConfig$: StaticUnionSchema;
|
|
|
499
508
|
export declare var EvaluatorConfig$: StaticUnionSchema;
|
|
500
509
|
export declare var EvaluatorModelConfig$: StaticUnionSchema;
|
|
501
510
|
export declare var EvaluatorReference$: StaticUnionSchema;
|
|
511
|
+
export declare var ExtractionConfig$: StaticUnionSchema;
|
|
502
512
|
export declare var ExtractionConfiguration$: StaticUnionSchema;
|
|
503
513
|
export declare var FilesystemConfiguration$: StaticUnionSchema;
|
|
504
514
|
export declare var FilterValue$: StaticUnionSchema;
|
|
@@ -540,6 +550,7 @@ export declare var TargetConfiguration$: StaticUnionSchema;
|
|
|
540
550
|
export declare var ToolSchema$: StaticUnionSchema;
|
|
541
551
|
export declare var TriggerCondition$: StaticUnionSchema;
|
|
542
552
|
export declare var TriggerConditionInput$: StaticUnionSchema;
|
|
553
|
+
export declare var Validation$: StaticUnionSchema;
|
|
543
554
|
export declare var CreateAgentRuntime$: StaticOperationSchema;
|
|
544
555
|
export declare var CreateAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
545
556
|
export declare var CreateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreControlClient";
|
|
8
|
-
import { CreateMemoryInput } from "../models/
|
|
9
|
-
import { CreateMemoryOutput } from "../models/models_1";
|
|
8
|
+
import { CreateMemoryInput, CreateMemoryOutput } from "../models/models_1";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface CreateMemoryCommandInput extends CreateMemoryInput {}
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
export declare const ActorTokenContentType: {
|
|
2
|
+
readonly AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT";
|
|
3
|
+
readonly M2M: "M2M";
|
|
4
|
+
readonly NONE: "NONE";
|
|
5
|
+
};
|
|
6
|
+
export type ActorTokenContentType =
|
|
7
|
+
(typeof ActorTokenContentType)[keyof typeof ActorTokenContentType];
|
|
1
8
|
export declare const AgentRuntimeEndpointStatus: {
|
|
2
9
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
3
10
|
readonly CREATING: "CREATING";
|
|
@@ -225,6 +232,7 @@ export type ApiKeyCredentialLocation =
|
|
|
225
232
|
export declare const OAuthGrantType: {
|
|
226
233
|
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
227
234
|
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
235
|
+
readonly TOKEN_EXCHANGE: "TOKEN_EXCHANGE";
|
|
228
236
|
};
|
|
229
237
|
export type OAuthGrantType =
|
|
230
238
|
(typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
@@ -312,6 +320,13 @@ export declare const HarnessStatus: {
|
|
|
312
320
|
readonly UPDATING: "UPDATING";
|
|
313
321
|
};
|
|
314
322
|
export type HarnessStatus = (typeof HarnessStatus)[keyof typeof HarnessStatus];
|
|
323
|
+
export declare const MetadataValueType: {
|
|
324
|
+
readonly NUMBER: "NUMBER";
|
|
325
|
+
readonly STRING: "STRING";
|
|
326
|
+
readonly STRINGLIST: "STRINGLIST";
|
|
327
|
+
};
|
|
328
|
+
export type MetadataValueType =
|
|
329
|
+
(typeof MetadataValueType)[keyof typeof MetadataValueType];
|
|
315
330
|
export declare const ContentLevel: {
|
|
316
331
|
readonly FULL_CONTENT: "FULL_CONTENT";
|
|
317
332
|
readonly METADATA_ONLY: "METADATA_ONLY";
|
|
@@ -387,6 +402,19 @@ export declare const CredentialProviderVendorType: {
|
|
|
387
402
|
};
|
|
388
403
|
export type CredentialProviderVendorType =
|
|
389
404
|
(typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
|
|
405
|
+
export declare const ClientAuthenticationMethodType: {
|
|
406
|
+
readonly AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT";
|
|
407
|
+
readonly CLIENT_SECRET_BASIC: "CLIENT_SECRET_BASIC";
|
|
408
|
+
readonly CLIENT_SECRET_POST: "CLIENT_SECRET_POST";
|
|
409
|
+
};
|
|
410
|
+
export type ClientAuthenticationMethodType =
|
|
411
|
+
(typeof ClientAuthenticationMethodType)[keyof typeof ClientAuthenticationMethodType];
|
|
412
|
+
export declare const OnBehalfOfTokenExchangeGrantTypeType: {
|
|
413
|
+
readonly JWT_AUTHORIZATION_GRANT: "JWT_AUTHORIZATION_GRANT";
|
|
414
|
+
readonly TOKEN_EXCHANGE: "TOKEN_EXCHANGE";
|
|
415
|
+
};
|
|
416
|
+
export type OnBehalfOfTokenExchangeGrantTypeType =
|
|
417
|
+
(typeof OnBehalfOfTokenExchangeGrantTypeType)[keyof typeof OnBehalfOfTokenExchangeGrantTypeType];
|
|
390
418
|
export declare const Status: {
|
|
391
419
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
392
420
|
readonly CREATING: "CREATING";
|