@aws-sdk/client-bedrock-agentcore-control 3.1037.0 → 3.1039.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/README.md +84 -0
- package/dist-cjs/index.js +217 -2
- package/dist-cjs/schemas/schemas_0.js +529 -98
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
- package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
- package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
- package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +516 -86
- package/dist-es/waiters/waitForMemoryCreated.js +1 -1
- package/dist-es/waiters/waitForPolicyActive.js +1 -1
- package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
- package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
- package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
- package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
- package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
- package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +2866 -2901
- package/dist-types/models/models_1.d.ts +1406 -4
- package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +405 -571
- package/dist-types/ts3.4/models/models_1.d.ts +592 -7
- package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
- package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
- package/package.json +8 -8
|
@@ -3,8 +3,13 @@ import {
|
|
|
3
3
|
DescriptorType,
|
|
4
4
|
FilterOperator,
|
|
5
5
|
FindingType,
|
|
6
|
+
MemoryStatus,
|
|
7
|
+
MemoryStrategyStatus,
|
|
8
|
+
MemoryStrategyType,
|
|
9
|
+
MemoryView,
|
|
6
10
|
OnlineEvaluationConfigStatus,
|
|
7
11
|
OnlineEvaluationExecutionStatus,
|
|
12
|
+
OverrideType,
|
|
8
13
|
PolicyEngineStatus,
|
|
9
14
|
PolicyGenerationStatus,
|
|
10
15
|
PolicyStatus,
|
|
@@ -17,6 +22,7 @@ import {
|
|
|
17
22
|
SchemaType,
|
|
18
23
|
Status,
|
|
19
24
|
SynchronizationType,
|
|
25
|
+
TargetProtocolType,
|
|
20
26
|
TargetStatus,
|
|
21
27
|
} from "./enums";
|
|
22
28
|
import {
|
|
@@ -24,28 +30,594 @@ import {
|
|
|
24
30
|
AgentSkillsDescriptor,
|
|
25
31
|
ApiGatewayTargetConfiguration,
|
|
26
32
|
ApiSchemaConfiguration,
|
|
27
|
-
AtlassianOauth2ProviderConfigInput,
|
|
28
33
|
AuthorizationData,
|
|
29
34
|
AuthorizerConfiguration,
|
|
30
35
|
CredentialProviderConfiguration,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
CustomConsolidationConfiguration,
|
|
37
|
+
EpisodicOverrideConsolidationConfigurationInput,
|
|
38
|
+
EpisodicOverrideExtractionConfigurationInput,
|
|
39
|
+
EpisodicOverrideReflectionConfigurationInput,
|
|
40
|
+
EpisodicReflectionConfigurationInput,
|
|
41
|
+
HttpTargetConfiguration,
|
|
35
42
|
KmsConfiguration,
|
|
36
|
-
LinkedinOauth2ProviderConfigInput,
|
|
37
43
|
ManagedResourceDetails,
|
|
38
44
|
McpServerTargetConfiguration,
|
|
45
|
+
MemoryStrategyInput,
|
|
39
46
|
MetadataConfiguration,
|
|
40
|
-
Oauth2Discovery,
|
|
41
47
|
PrivateEndpoint,
|
|
42
48
|
PrivateEndpointOverride,
|
|
43
49
|
S3Configuration,
|
|
44
50
|
Secret,
|
|
51
|
+
SemanticOverrideConsolidationConfigurationInput,
|
|
52
|
+
SemanticOverrideExtractionConfigurationInput,
|
|
45
53
|
SkillDefinition,
|
|
46
54
|
SkillMdDefinition,
|
|
55
|
+
StreamDeliveryResources,
|
|
56
|
+
SummaryOverrideConsolidationConfigurationInput,
|
|
57
|
+
TriggerConditionInput,
|
|
47
58
|
UpdatedAuthorizerConfiguration,
|
|
59
|
+
UserPreferenceOverrideConsolidationConfigurationInput,
|
|
60
|
+
UserPreferenceOverrideExtractionConfigurationInput,
|
|
48
61
|
} from "./models_0";
|
|
62
|
+
export type ConsolidationConfiguration =
|
|
63
|
+
| ConsolidationConfiguration.CustomConsolidationConfigurationMember
|
|
64
|
+
| ConsolidationConfiguration.$UnknownMember;
|
|
65
|
+
export declare namespace ConsolidationConfiguration {
|
|
66
|
+
interface CustomConsolidationConfigurationMember {
|
|
67
|
+
customConsolidationConfiguration: CustomConsolidationConfiguration;
|
|
68
|
+
$unknown?: never;
|
|
69
|
+
}
|
|
70
|
+
interface $UnknownMember {
|
|
71
|
+
customConsolidationConfiguration?: never;
|
|
72
|
+
$unknown: [string, any];
|
|
73
|
+
}
|
|
74
|
+
interface Visitor<T> {
|
|
75
|
+
customConsolidationConfiguration: (
|
|
76
|
+
value: CustomConsolidationConfiguration
|
|
77
|
+
) => T;
|
|
78
|
+
_: (name: string, value: any) => T;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
export interface EpisodicExtractionOverride {
|
|
82
|
+
appendToPrompt: string | undefined;
|
|
83
|
+
modelId: string | undefined;
|
|
84
|
+
}
|
|
85
|
+
export interface SemanticExtractionOverride {
|
|
86
|
+
appendToPrompt: string | undefined;
|
|
87
|
+
modelId: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface UserPreferenceExtractionOverride {
|
|
90
|
+
appendToPrompt: string | undefined;
|
|
91
|
+
modelId: string | undefined;
|
|
92
|
+
}
|
|
93
|
+
export type CustomExtractionConfiguration =
|
|
94
|
+
| CustomExtractionConfiguration.EpisodicExtractionOverrideMember
|
|
95
|
+
| CustomExtractionConfiguration.SemanticExtractionOverrideMember
|
|
96
|
+
| CustomExtractionConfiguration.UserPreferenceExtractionOverrideMember
|
|
97
|
+
| CustomExtractionConfiguration.$UnknownMember;
|
|
98
|
+
export declare namespace CustomExtractionConfiguration {
|
|
99
|
+
interface SemanticExtractionOverrideMember {
|
|
100
|
+
semanticExtractionOverride: SemanticExtractionOverride;
|
|
101
|
+
userPreferenceExtractionOverride?: never;
|
|
102
|
+
episodicExtractionOverride?: never;
|
|
103
|
+
$unknown?: never;
|
|
104
|
+
}
|
|
105
|
+
interface UserPreferenceExtractionOverrideMember {
|
|
106
|
+
semanticExtractionOverride?: never;
|
|
107
|
+
userPreferenceExtractionOverride: UserPreferenceExtractionOverride;
|
|
108
|
+
episodicExtractionOverride?: never;
|
|
109
|
+
$unknown?: never;
|
|
110
|
+
}
|
|
111
|
+
interface EpisodicExtractionOverrideMember {
|
|
112
|
+
semanticExtractionOverride?: never;
|
|
113
|
+
userPreferenceExtractionOverride?: never;
|
|
114
|
+
episodicExtractionOverride: EpisodicExtractionOverride;
|
|
115
|
+
$unknown?: never;
|
|
116
|
+
}
|
|
117
|
+
interface $UnknownMember {
|
|
118
|
+
semanticExtractionOverride?: never;
|
|
119
|
+
userPreferenceExtractionOverride?: never;
|
|
120
|
+
episodicExtractionOverride?: never;
|
|
121
|
+
$unknown: [string, any];
|
|
122
|
+
}
|
|
123
|
+
interface Visitor<T> {
|
|
124
|
+
semanticExtractionOverride: (value: SemanticExtractionOverride) => T;
|
|
125
|
+
userPreferenceExtractionOverride: (
|
|
126
|
+
value: UserPreferenceExtractionOverride
|
|
127
|
+
) => T;
|
|
128
|
+
episodicExtractionOverride: (value: EpisodicExtractionOverride) => T;
|
|
129
|
+
_: (name: string, value: any) => T;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
export type ExtractionConfiguration =
|
|
133
|
+
| ExtractionConfiguration.CustomExtractionConfigurationMember
|
|
134
|
+
| ExtractionConfiguration.$UnknownMember;
|
|
135
|
+
export declare namespace ExtractionConfiguration {
|
|
136
|
+
interface CustomExtractionConfigurationMember {
|
|
137
|
+
customExtractionConfiguration: CustomExtractionConfiguration;
|
|
138
|
+
$unknown?: never;
|
|
139
|
+
}
|
|
140
|
+
interface $UnknownMember {
|
|
141
|
+
customExtractionConfiguration?: never;
|
|
142
|
+
$unknown: [string, any];
|
|
143
|
+
}
|
|
144
|
+
interface Visitor<T> {
|
|
145
|
+
customExtractionConfiguration: (value: CustomExtractionConfiguration) => T;
|
|
146
|
+
_: (name: string, value: any) => T;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
export interface EpisodicReflectionOverride {
|
|
150
|
+
appendToPrompt: string | undefined;
|
|
151
|
+
modelId: string | undefined;
|
|
152
|
+
namespaces?: string[] | undefined;
|
|
153
|
+
namespaceTemplates?: string[] | undefined;
|
|
154
|
+
}
|
|
155
|
+
export type CustomReflectionConfiguration =
|
|
156
|
+
| CustomReflectionConfiguration.EpisodicReflectionOverrideMember
|
|
157
|
+
| CustomReflectionConfiguration.$UnknownMember;
|
|
158
|
+
export declare namespace CustomReflectionConfiguration {
|
|
159
|
+
interface EpisodicReflectionOverrideMember {
|
|
160
|
+
episodicReflectionOverride: EpisodicReflectionOverride;
|
|
161
|
+
$unknown?: never;
|
|
162
|
+
}
|
|
163
|
+
interface $UnknownMember {
|
|
164
|
+
episodicReflectionOverride?: never;
|
|
165
|
+
$unknown: [string, any];
|
|
166
|
+
}
|
|
167
|
+
interface Visitor<T> {
|
|
168
|
+
episodicReflectionOverride: (value: EpisodicReflectionOverride) => T;
|
|
169
|
+
_: (name: string, value: any) => T;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
export interface EpisodicReflectionConfiguration {
|
|
173
|
+
namespaces?: string[] | undefined;
|
|
174
|
+
namespaceTemplates?: string[] | undefined;
|
|
175
|
+
}
|
|
176
|
+
export type ReflectionConfiguration =
|
|
177
|
+
| ReflectionConfiguration.CustomReflectionConfigurationMember
|
|
178
|
+
| ReflectionConfiguration.EpisodicReflectionConfigurationMember
|
|
179
|
+
| ReflectionConfiguration.$UnknownMember;
|
|
180
|
+
export declare namespace ReflectionConfiguration {
|
|
181
|
+
interface CustomReflectionConfigurationMember {
|
|
182
|
+
customReflectionConfiguration: CustomReflectionConfiguration;
|
|
183
|
+
episodicReflectionConfiguration?: never;
|
|
184
|
+
$unknown?: never;
|
|
185
|
+
}
|
|
186
|
+
interface EpisodicReflectionConfigurationMember {
|
|
187
|
+
customReflectionConfiguration?: never;
|
|
188
|
+
episodicReflectionConfiguration: EpisodicReflectionConfiguration;
|
|
189
|
+
$unknown?: never;
|
|
190
|
+
}
|
|
191
|
+
interface $UnknownMember {
|
|
192
|
+
customReflectionConfiguration?: never;
|
|
193
|
+
episodicReflectionConfiguration?: never;
|
|
194
|
+
$unknown: [string, any];
|
|
195
|
+
}
|
|
196
|
+
interface Visitor<T> {
|
|
197
|
+
customReflectionConfiguration: (value: CustomReflectionConfiguration) => T;
|
|
198
|
+
episodicReflectionConfiguration: (
|
|
199
|
+
value: EpisodicReflectionConfiguration
|
|
200
|
+
) => T;
|
|
201
|
+
_: (name: string, value: any) => T;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
export interface InvocationConfiguration {
|
|
205
|
+
topicArn: string | undefined;
|
|
206
|
+
payloadDeliveryBucketName: string | undefined;
|
|
207
|
+
}
|
|
208
|
+
export interface MessageBasedTrigger {
|
|
209
|
+
messageCount?: number | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface TimeBasedTrigger {
|
|
212
|
+
idleSessionTimeout?: number | undefined;
|
|
213
|
+
}
|
|
214
|
+
export interface TokenBasedTrigger {
|
|
215
|
+
tokenCount?: number | undefined;
|
|
216
|
+
}
|
|
217
|
+
export type TriggerCondition =
|
|
218
|
+
| TriggerCondition.MessageBasedTriggerMember
|
|
219
|
+
| TriggerCondition.TimeBasedTriggerMember
|
|
220
|
+
| TriggerCondition.TokenBasedTriggerMember
|
|
221
|
+
| TriggerCondition.$UnknownMember;
|
|
222
|
+
export declare namespace TriggerCondition {
|
|
223
|
+
interface MessageBasedTriggerMember {
|
|
224
|
+
messageBasedTrigger: MessageBasedTrigger;
|
|
225
|
+
tokenBasedTrigger?: never;
|
|
226
|
+
timeBasedTrigger?: never;
|
|
227
|
+
$unknown?: never;
|
|
228
|
+
}
|
|
229
|
+
interface TokenBasedTriggerMember {
|
|
230
|
+
messageBasedTrigger?: never;
|
|
231
|
+
tokenBasedTrigger: TokenBasedTrigger;
|
|
232
|
+
timeBasedTrigger?: never;
|
|
233
|
+
$unknown?: never;
|
|
234
|
+
}
|
|
235
|
+
interface TimeBasedTriggerMember {
|
|
236
|
+
messageBasedTrigger?: never;
|
|
237
|
+
tokenBasedTrigger?: never;
|
|
238
|
+
timeBasedTrigger: TimeBasedTrigger;
|
|
239
|
+
$unknown?: never;
|
|
240
|
+
}
|
|
241
|
+
interface $UnknownMember {
|
|
242
|
+
messageBasedTrigger?: never;
|
|
243
|
+
tokenBasedTrigger?: never;
|
|
244
|
+
timeBasedTrigger?: never;
|
|
245
|
+
$unknown: [string, any];
|
|
246
|
+
}
|
|
247
|
+
interface Visitor<T> {
|
|
248
|
+
messageBasedTrigger: (value: MessageBasedTrigger) => T;
|
|
249
|
+
tokenBasedTrigger: (value: TokenBasedTrigger) => T;
|
|
250
|
+
timeBasedTrigger: (value: TimeBasedTrigger) => T;
|
|
251
|
+
_: (name: string, value: any) => T;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
export interface SelfManagedConfiguration {
|
|
255
|
+
triggerConditions: TriggerCondition[] | undefined;
|
|
256
|
+
invocationConfiguration: InvocationConfiguration | undefined;
|
|
257
|
+
historicalContextWindowSize: number | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface StrategyConfiguration {
|
|
260
|
+
type?: OverrideType | undefined;
|
|
261
|
+
extraction?: ExtractionConfiguration | undefined;
|
|
262
|
+
consolidation?: ConsolidationConfiguration | undefined;
|
|
263
|
+
reflection?: ReflectionConfiguration | undefined;
|
|
264
|
+
selfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
265
|
+
}
|
|
266
|
+
export interface MemoryStrategy {
|
|
267
|
+
strategyId: string | undefined;
|
|
268
|
+
name: string | undefined;
|
|
269
|
+
description?: string | undefined;
|
|
270
|
+
configuration?: StrategyConfiguration | undefined;
|
|
271
|
+
type: MemoryStrategyType | undefined;
|
|
272
|
+
namespaces: string[] | undefined;
|
|
273
|
+
namespaceTemplates: string[] | undefined;
|
|
274
|
+
createdAt?: Date | undefined;
|
|
275
|
+
updatedAt?: Date | undefined;
|
|
276
|
+
status?: MemoryStrategyStatus | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface Memory {
|
|
279
|
+
arn: string | undefined;
|
|
280
|
+
id: string | undefined;
|
|
281
|
+
name: string | undefined;
|
|
282
|
+
description?: string | undefined;
|
|
283
|
+
encryptionKeyArn?: string | undefined;
|
|
284
|
+
memoryExecutionRoleArn?: string | undefined;
|
|
285
|
+
eventExpiryDuration: number | undefined;
|
|
286
|
+
status: MemoryStatus | undefined;
|
|
287
|
+
failureReason?: string | undefined;
|
|
288
|
+
createdAt: Date | undefined;
|
|
289
|
+
updatedAt: Date | undefined;
|
|
290
|
+
strategies?: MemoryStrategy[] | undefined;
|
|
291
|
+
streamDeliveryResources?: StreamDeliveryResources | undefined;
|
|
292
|
+
}
|
|
293
|
+
export interface CreateMemoryOutput {
|
|
294
|
+
memory?: Memory | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface DeleteMemoryInput {
|
|
297
|
+
clientToken?: string | undefined;
|
|
298
|
+
memoryId: string | undefined;
|
|
299
|
+
}
|
|
300
|
+
export interface DeleteMemoryOutput {
|
|
301
|
+
memoryId: string | undefined;
|
|
302
|
+
status?: MemoryStatus | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface GetMemoryInput {
|
|
305
|
+
memoryId: string | undefined;
|
|
306
|
+
view?: MemoryView | undefined;
|
|
307
|
+
}
|
|
308
|
+
export interface GetMemoryOutput {
|
|
309
|
+
memory: Memory | undefined;
|
|
310
|
+
}
|
|
311
|
+
export interface ListMemoriesInput {
|
|
312
|
+
maxResults?: number | undefined;
|
|
313
|
+
nextToken?: string | undefined;
|
|
314
|
+
}
|
|
315
|
+
export interface MemorySummary {
|
|
316
|
+
arn?: string | undefined;
|
|
317
|
+
id?: string | undefined;
|
|
318
|
+
status?: MemoryStatus | undefined;
|
|
319
|
+
createdAt: Date | undefined;
|
|
320
|
+
updatedAt: Date | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface ListMemoriesOutput {
|
|
323
|
+
memories: MemorySummary[] | undefined;
|
|
324
|
+
nextToken?: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface DeleteMemoryStrategyInput {
|
|
327
|
+
memoryStrategyId: string | undefined;
|
|
328
|
+
}
|
|
329
|
+
export type CustomConsolidationConfigurationInput =
|
|
330
|
+
| CustomConsolidationConfigurationInput.EpisodicConsolidationOverrideMember
|
|
331
|
+
| CustomConsolidationConfigurationInput.SemanticConsolidationOverrideMember
|
|
332
|
+
| CustomConsolidationConfigurationInput.SummaryConsolidationOverrideMember
|
|
333
|
+
| CustomConsolidationConfigurationInput.UserPreferenceConsolidationOverrideMember
|
|
334
|
+
| CustomConsolidationConfigurationInput.$UnknownMember;
|
|
335
|
+
export declare namespace CustomConsolidationConfigurationInput {
|
|
336
|
+
interface SemanticConsolidationOverrideMember {
|
|
337
|
+
semanticConsolidationOverride: SemanticOverrideConsolidationConfigurationInput;
|
|
338
|
+
summaryConsolidationOverride?: never;
|
|
339
|
+
userPreferenceConsolidationOverride?: never;
|
|
340
|
+
episodicConsolidationOverride?: never;
|
|
341
|
+
$unknown?: never;
|
|
342
|
+
}
|
|
343
|
+
interface SummaryConsolidationOverrideMember {
|
|
344
|
+
semanticConsolidationOverride?: never;
|
|
345
|
+
summaryConsolidationOverride: SummaryOverrideConsolidationConfigurationInput;
|
|
346
|
+
userPreferenceConsolidationOverride?: never;
|
|
347
|
+
episodicConsolidationOverride?: never;
|
|
348
|
+
$unknown?: never;
|
|
349
|
+
}
|
|
350
|
+
interface UserPreferenceConsolidationOverrideMember {
|
|
351
|
+
semanticConsolidationOverride?: never;
|
|
352
|
+
summaryConsolidationOverride?: never;
|
|
353
|
+
userPreferenceConsolidationOverride: UserPreferenceOverrideConsolidationConfigurationInput;
|
|
354
|
+
episodicConsolidationOverride?: never;
|
|
355
|
+
$unknown?: never;
|
|
356
|
+
}
|
|
357
|
+
interface EpisodicConsolidationOverrideMember {
|
|
358
|
+
semanticConsolidationOverride?: never;
|
|
359
|
+
summaryConsolidationOverride?: never;
|
|
360
|
+
userPreferenceConsolidationOverride?: never;
|
|
361
|
+
episodicConsolidationOverride: EpisodicOverrideConsolidationConfigurationInput;
|
|
362
|
+
$unknown?: never;
|
|
363
|
+
}
|
|
364
|
+
interface $UnknownMember {
|
|
365
|
+
semanticConsolidationOverride?: never;
|
|
366
|
+
summaryConsolidationOverride?: never;
|
|
367
|
+
userPreferenceConsolidationOverride?: never;
|
|
368
|
+
episodicConsolidationOverride?: never;
|
|
369
|
+
$unknown: [string, any];
|
|
370
|
+
}
|
|
371
|
+
interface Visitor<T> {
|
|
372
|
+
semanticConsolidationOverride: (
|
|
373
|
+
value: SemanticOverrideConsolidationConfigurationInput
|
|
374
|
+
) => T;
|
|
375
|
+
summaryConsolidationOverride: (
|
|
376
|
+
value: SummaryOverrideConsolidationConfigurationInput
|
|
377
|
+
) => T;
|
|
378
|
+
userPreferenceConsolidationOverride: (
|
|
379
|
+
value: UserPreferenceOverrideConsolidationConfigurationInput
|
|
380
|
+
) => T;
|
|
381
|
+
episodicConsolidationOverride: (
|
|
382
|
+
value: EpisodicOverrideConsolidationConfigurationInput
|
|
383
|
+
) => T;
|
|
384
|
+
_: (name: string, value: any) => T;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
export type ModifyConsolidationConfiguration =
|
|
388
|
+
| ModifyConsolidationConfiguration.CustomConsolidationConfigurationMember
|
|
389
|
+
| ModifyConsolidationConfiguration.$UnknownMember;
|
|
390
|
+
export declare namespace ModifyConsolidationConfiguration {
|
|
391
|
+
interface CustomConsolidationConfigurationMember {
|
|
392
|
+
customConsolidationConfiguration: CustomConsolidationConfigurationInput;
|
|
393
|
+
$unknown?: never;
|
|
394
|
+
}
|
|
395
|
+
interface $UnknownMember {
|
|
396
|
+
customConsolidationConfiguration?: never;
|
|
397
|
+
$unknown: [string, any];
|
|
398
|
+
}
|
|
399
|
+
interface Visitor<T> {
|
|
400
|
+
customConsolidationConfiguration: (
|
|
401
|
+
value: CustomConsolidationConfigurationInput
|
|
402
|
+
) => T;
|
|
403
|
+
_: (name: string, value: any) => T;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
export type CustomExtractionConfigurationInput =
|
|
407
|
+
| CustomExtractionConfigurationInput.EpisodicExtractionOverrideMember
|
|
408
|
+
| CustomExtractionConfigurationInput.SemanticExtractionOverrideMember
|
|
409
|
+
| CustomExtractionConfigurationInput.UserPreferenceExtractionOverrideMember
|
|
410
|
+
| CustomExtractionConfigurationInput.$UnknownMember;
|
|
411
|
+
export declare namespace CustomExtractionConfigurationInput {
|
|
412
|
+
interface SemanticExtractionOverrideMember {
|
|
413
|
+
semanticExtractionOverride: SemanticOverrideExtractionConfigurationInput;
|
|
414
|
+
userPreferenceExtractionOverride?: never;
|
|
415
|
+
episodicExtractionOverride?: never;
|
|
416
|
+
$unknown?: never;
|
|
417
|
+
}
|
|
418
|
+
interface UserPreferenceExtractionOverrideMember {
|
|
419
|
+
semanticExtractionOverride?: never;
|
|
420
|
+
userPreferenceExtractionOverride: UserPreferenceOverrideExtractionConfigurationInput;
|
|
421
|
+
episodicExtractionOverride?: never;
|
|
422
|
+
$unknown?: never;
|
|
423
|
+
}
|
|
424
|
+
interface EpisodicExtractionOverrideMember {
|
|
425
|
+
semanticExtractionOverride?: never;
|
|
426
|
+
userPreferenceExtractionOverride?: never;
|
|
427
|
+
episodicExtractionOverride: EpisodicOverrideExtractionConfigurationInput;
|
|
428
|
+
$unknown?: never;
|
|
429
|
+
}
|
|
430
|
+
interface $UnknownMember {
|
|
431
|
+
semanticExtractionOverride?: never;
|
|
432
|
+
userPreferenceExtractionOverride?: never;
|
|
433
|
+
episodicExtractionOverride?: never;
|
|
434
|
+
$unknown: [string, any];
|
|
435
|
+
}
|
|
436
|
+
interface Visitor<T> {
|
|
437
|
+
semanticExtractionOverride: (
|
|
438
|
+
value: SemanticOverrideExtractionConfigurationInput
|
|
439
|
+
) => T;
|
|
440
|
+
userPreferenceExtractionOverride: (
|
|
441
|
+
value: UserPreferenceOverrideExtractionConfigurationInput
|
|
442
|
+
) => T;
|
|
443
|
+
episodicExtractionOverride: (
|
|
444
|
+
value: EpisodicOverrideExtractionConfigurationInput
|
|
445
|
+
) => T;
|
|
446
|
+
_: (name: string, value: any) => T;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
export type ModifyExtractionConfiguration =
|
|
450
|
+
| ModifyExtractionConfiguration.CustomExtractionConfigurationMember
|
|
451
|
+
| ModifyExtractionConfiguration.$UnknownMember;
|
|
452
|
+
export declare namespace ModifyExtractionConfiguration {
|
|
453
|
+
interface CustomExtractionConfigurationMember {
|
|
454
|
+
customExtractionConfiguration: CustomExtractionConfigurationInput;
|
|
455
|
+
$unknown?: never;
|
|
456
|
+
}
|
|
457
|
+
interface $UnknownMember {
|
|
458
|
+
customExtractionConfiguration?: never;
|
|
459
|
+
$unknown: [string, any];
|
|
460
|
+
}
|
|
461
|
+
interface Visitor<T> {
|
|
462
|
+
customExtractionConfiguration: (
|
|
463
|
+
value: CustomExtractionConfigurationInput
|
|
464
|
+
) => T;
|
|
465
|
+
_: (name: string, value: any) => T;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
export type CustomReflectionConfigurationInput =
|
|
469
|
+
| CustomReflectionConfigurationInput.EpisodicReflectionOverrideMember
|
|
470
|
+
| CustomReflectionConfigurationInput.$UnknownMember;
|
|
471
|
+
export declare namespace CustomReflectionConfigurationInput {
|
|
472
|
+
interface EpisodicReflectionOverrideMember {
|
|
473
|
+
episodicReflectionOverride: EpisodicOverrideReflectionConfigurationInput;
|
|
474
|
+
$unknown?: never;
|
|
475
|
+
}
|
|
476
|
+
interface $UnknownMember {
|
|
477
|
+
episodicReflectionOverride?: never;
|
|
478
|
+
$unknown: [string, any];
|
|
479
|
+
}
|
|
480
|
+
interface Visitor<T> {
|
|
481
|
+
episodicReflectionOverride: (
|
|
482
|
+
value: EpisodicOverrideReflectionConfigurationInput
|
|
483
|
+
) => T;
|
|
484
|
+
_: (name: string, value: any) => T;
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
export type ModifyReflectionConfiguration =
|
|
488
|
+
| ModifyReflectionConfiguration.CustomReflectionConfigurationMember
|
|
489
|
+
| ModifyReflectionConfiguration.EpisodicReflectionConfigurationMember
|
|
490
|
+
| ModifyReflectionConfiguration.$UnknownMember;
|
|
491
|
+
export declare namespace ModifyReflectionConfiguration {
|
|
492
|
+
interface EpisodicReflectionConfigurationMember {
|
|
493
|
+
episodicReflectionConfiguration: EpisodicReflectionConfigurationInput;
|
|
494
|
+
customReflectionConfiguration?: never;
|
|
495
|
+
$unknown?: never;
|
|
496
|
+
}
|
|
497
|
+
interface CustomReflectionConfigurationMember {
|
|
498
|
+
episodicReflectionConfiguration?: never;
|
|
499
|
+
customReflectionConfiguration: CustomReflectionConfigurationInput;
|
|
500
|
+
$unknown?: never;
|
|
501
|
+
}
|
|
502
|
+
interface $UnknownMember {
|
|
503
|
+
episodicReflectionConfiguration?: never;
|
|
504
|
+
customReflectionConfiguration?: never;
|
|
505
|
+
$unknown: [string, any];
|
|
506
|
+
}
|
|
507
|
+
interface Visitor<T> {
|
|
508
|
+
episodicReflectionConfiguration: (
|
|
509
|
+
value: EpisodicReflectionConfigurationInput
|
|
510
|
+
) => T;
|
|
511
|
+
customReflectionConfiguration: (
|
|
512
|
+
value: CustomReflectionConfigurationInput
|
|
513
|
+
) => T;
|
|
514
|
+
_: (name: string, value: any) => T;
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
export interface ModifyInvocationConfigurationInput {
|
|
518
|
+
topicArn?: string | undefined;
|
|
519
|
+
payloadDeliveryBucketName?: string | undefined;
|
|
520
|
+
}
|
|
521
|
+
export interface ModifySelfManagedConfiguration {
|
|
522
|
+
triggerConditions?: TriggerConditionInput[] | undefined;
|
|
523
|
+
invocationConfiguration?: ModifyInvocationConfigurationInput | undefined;
|
|
524
|
+
historicalContextWindowSize?: number | undefined;
|
|
525
|
+
}
|
|
526
|
+
export interface ModifyStrategyConfiguration {
|
|
527
|
+
extraction?: ModifyExtractionConfiguration | undefined;
|
|
528
|
+
consolidation?: ModifyConsolidationConfiguration | undefined;
|
|
529
|
+
reflection?: ModifyReflectionConfiguration | undefined;
|
|
530
|
+
selfManagedConfiguration?: ModifySelfManagedConfiguration | undefined;
|
|
531
|
+
}
|
|
532
|
+
export interface ModifyMemoryStrategyInput {
|
|
533
|
+
memoryStrategyId: string | undefined;
|
|
534
|
+
description?: string | undefined;
|
|
535
|
+
namespaces?: string[] | undefined;
|
|
536
|
+
namespaceTemplates?: string[] | undefined;
|
|
537
|
+
configuration?: ModifyStrategyConfiguration | undefined;
|
|
538
|
+
}
|
|
539
|
+
export interface ModifyMemoryStrategies {
|
|
540
|
+
addMemoryStrategies?: MemoryStrategyInput[] | undefined;
|
|
541
|
+
modifyMemoryStrategies?: ModifyMemoryStrategyInput[] | undefined;
|
|
542
|
+
deleteMemoryStrategies?: DeleteMemoryStrategyInput[] | undefined;
|
|
543
|
+
}
|
|
544
|
+
export interface UpdateMemoryInput {
|
|
545
|
+
clientToken?: string | undefined;
|
|
546
|
+
memoryId: string | undefined;
|
|
547
|
+
description?: string | undefined;
|
|
548
|
+
eventExpiryDuration?: number | undefined;
|
|
549
|
+
memoryExecutionRoleArn?: string | undefined;
|
|
550
|
+
memoryStrategies?: ModifyMemoryStrategies | undefined;
|
|
551
|
+
streamDeliveryResources?: StreamDeliveryResources | undefined;
|
|
552
|
+
}
|
|
553
|
+
export interface UpdateMemoryOutput {
|
|
554
|
+
memory?: Memory | undefined;
|
|
555
|
+
}
|
|
556
|
+
export interface AtlassianOauth2ProviderConfigInput {
|
|
557
|
+
clientId: string | undefined;
|
|
558
|
+
clientSecret: string | undefined;
|
|
559
|
+
}
|
|
560
|
+
export interface Oauth2AuthorizationServerMetadata {
|
|
561
|
+
issuer: string | undefined;
|
|
562
|
+
authorizationEndpoint: string | undefined;
|
|
563
|
+
tokenEndpoint: string | undefined;
|
|
564
|
+
responseTypes?: string[] | undefined;
|
|
565
|
+
tokenEndpointAuthMethods?: string[] | undefined;
|
|
566
|
+
}
|
|
567
|
+
export type Oauth2Discovery =
|
|
568
|
+
| Oauth2Discovery.AuthorizationServerMetadataMember
|
|
569
|
+
| Oauth2Discovery.DiscoveryUrlMember
|
|
570
|
+
| Oauth2Discovery.$UnknownMember;
|
|
571
|
+
export declare namespace Oauth2Discovery {
|
|
572
|
+
interface DiscoveryUrlMember {
|
|
573
|
+
discoveryUrl: string;
|
|
574
|
+
authorizationServerMetadata?: never;
|
|
575
|
+
$unknown?: never;
|
|
576
|
+
}
|
|
577
|
+
interface AuthorizationServerMetadataMember {
|
|
578
|
+
discoveryUrl?: never;
|
|
579
|
+
authorizationServerMetadata: Oauth2AuthorizationServerMetadata;
|
|
580
|
+
$unknown?: never;
|
|
581
|
+
}
|
|
582
|
+
interface $UnknownMember {
|
|
583
|
+
discoveryUrl?: never;
|
|
584
|
+
authorizationServerMetadata?: never;
|
|
585
|
+
$unknown: [string, any];
|
|
586
|
+
}
|
|
587
|
+
interface Visitor<T> {
|
|
588
|
+
discoveryUrl: (value: string) => T;
|
|
589
|
+
authorizationServerMetadata: (
|
|
590
|
+
value: Oauth2AuthorizationServerMetadata
|
|
591
|
+
) => T;
|
|
592
|
+
_: (name: string, value: any) => T;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
export interface CustomOauth2ProviderConfigInput {
|
|
596
|
+
oauthDiscovery: Oauth2Discovery | undefined;
|
|
597
|
+
clientId: string | undefined;
|
|
598
|
+
clientSecret: string | undefined;
|
|
599
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
600
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
601
|
+
}
|
|
602
|
+
export interface GithubOauth2ProviderConfigInput {
|
|
603
|
+
clientId: string | undefined;
|
|
604
|
+
clientSecret: string | undefined;
|
|
605
|
+
}
|
|
606
|
+
export interface GoogleOauth2ProviderConfigInput {
|
|
607
|
+
clientId: string | undefined;
|
|
608
|
+
clientSecret: string | undefined;
|
|
609
|
+
}
|
|
610
|
+
export interface IncludedOauth2ProviderConfigInput {
|
|
611
|
+
clientId: string | undefined;
|
|
612
|
+
clientSecret: string | undefined;
|
|
613
|
+
issuer?: string | undefined;
|
|
614
|
+
authorizationEndpoint?: string | undefined;
|
|
615
|
+
tokenEndpoint?: string | undefined;
|
|
616
|
+
}
|
|
617
|
+
export interface LinkedinOauth2ProviderConfigInput {
|
|
618
|
+
clientId: string | undefined;
|
|
619
|
+
clientSecret: string | undefined;
|
|
620
|
+
}
|
|
49
621
|
export interface MicrosoftOauth2ProviderConfigInput {
|
|
50
622
|
clientId: string | undefined;
|
|
51
623
|
clientSecret: string | undefined;
|
|
@@ -1467,19 +2039,28 @@ export declare namespace McpTargetConfiguration {
|
|
|
1467
2039
|
}
|
|
1468
2040
|
}
|
|
1469
2041
|
export type TargetConfiguration =
|
|
2042
|
+
| TargetConfiguration.HttpMember
|
|
1470
2043
|
| TargetConfiguration.McpMember
|
|
1471
2044
|
| TargetConfiguration.$UnknownMember;
|
|
1472
2045
|
export declare namespace TargetConfiguration {
|
|
1473
2046
|
interface McpMember {
|
|
1474
2047
|
mcp: McpTargetConfiguration;
|
|
2048
|
+
http?: never;
|
|
2049
|
+
$unknown?: never;
|
|
2050
|
+
}
|
|
2051
|
+
interface HttpMember {
|
|
2052
|
+
mcp?: never;
|
|
2053
|
+
http: HttpTargetConfiguration;
|
|
1475
2054
|
$unknown?: never;
|
|
1476
2055
|
}
|
|
1477
2056
|
interface $UnknownMember {
|
|
1478
2057
|
mcp?: never;
|
|
2058
|
+
http?: never;
|
|
1479
2059
|
$unknown: [string, any];
|
|
1480
2060
|
}
|
|
1481
2061
|
interface Visitor<T> {
|
|
1482
2062
|
mcp: (value: McpTargetConfiguration) => T;
|
|
2063
|
+
http: (value: HttpTargetConfiguration) => T;
|
|
1483
2064
|
_: (name: string, value: any) => T;
|
|
1484
2065
|
}
|
|
1485
2066
|
}
|
|
@@ -1513,6 +2094,7 @@ export interface CreateGatewayTargetResponse {
|
|
|
1513
2094
|
privateEndpoint?: PrivateEndpoint | undefined;
|
|
1514
2095
|
privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
|
|
1515
2096
|
authorizationData?: AuthorizationData | undefined;
|
|
2097
|
+
protocolType?: TargetProtocolType | undefined;
|
|
1516
2098
|
}
|
|
1517
2099
|
export interface GatewayTarget {
|
|
1518
2100
|
gatewayArn: string | undefined;
|
|
@@ -1532,6 +2114,7 @@ export interface GatewayTarget {
|
|
|
1532
2114
|
privateEndpoint?: PrivateEndpoint | undefined;
|
|
1533
2115
|
privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
|
|
1534
2116
|
authorizationData?: AuthorizationData | undefined;
|
|
2117
|
+
protocolType?: TargetProtocolType | undefined;
|
|
1535
2118
|
}
|
|
1536
2119
|
export interface GetGatewayTargetResponse {
|
|
1537
2120
|
gatewayArn: string | undefined;
|
|
@@ -1551,6 +2134,7 @@ export interface GetGatewayTargetResponse {
|
|
|
1551
2134
|
privateEndpoint?: PrivateEndpoint | undefined;
|
|
1552
2135
|
privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
|
|
1553
2136
|
authorizationData?: AuthorizationData | undefined;
|
|
2137
|
+
protocolType?: TargetProtocolType | undefined;
|
|
1554
2138
|
}
|
|
1555
2139
|
export interface UpdateGatewayTargetRequest {
|
|
1556
2140
|
gatewayIdentifier: string | undefined;
|
|
@@ -1582,6 +2166,7 @@ export interface UpdateGatewayTargetResponse {
|
|
|
1582
2166
|
privateEndpoint?: PrivateEndpoint | undefined;
|
|
1583
2167
|
privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
|
|
1584
2168
|
authorizationData?: AuthorizationData | undefined;
|
|
2169
|
+
protocolType?: TargetProtocolType | undefined;
|
|
1585
2170
|
}
|
|
1586
2171
|
export interface SynchronizeGatewayTargetsResponse {
|
|
1587
2172
|
targets?: GatewayTarget[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationBundleVersionsCommandInput,
|
|
4
|
+
ListConfigurationBundleVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationBundleVersionsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurationBundleVersions: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationBundleVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationBundleVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationBundlesCommandInput,
|
|
4
|
+
ListConfigurationBundlesCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationBundlesCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurationBundles: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationBundlesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationBundlesCommandOutput>;
|