@aws-sdk/client-bedrock-agentcore-control 3.906.0 → 3.908.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 +8 -0
- package/dist-cjs/index.js +136 -3
- package/dist-es/BedrockAgentCoreControl.js +2 -0
- package/dist-es/commands/SynchronizeGatewayTargetsCommand.js +23 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +52 -0
- package/dist-es/protocols/Aws_restJson1.js +63 -3
- package/dist-types/BedrockAgentCoreControl.d.ts +7 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +3 -2
- package/dist-types/commands/CreateGatewayCommand.d.ts +1 -1
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +41 -1
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +5 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +21 -1
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +192 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/UpdateMemoryCommand.d.ts +61 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +462 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +188 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +15 -15
|
@@ -2104,7 +2104,7 @@ export interface CreateGatewayRequest {
|
|
|
2104
2104
|
*/
|
|
2105
2105
|
description?: string | undefined;
|
|
2106
2106
|
/**
|
|
2107
|
-
* <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, the service ignores the request, but
|
|
2107
|
+
* <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>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
2110
|
clientToken?: string | undefined;
|
|
@@ -2124,12 +2124,12 @@ export interface CreateGatewayRequest {
|
|
|
2124
2124
|
*/
|
|
2125
2125
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
2126
2126
|
/**
|
|
2127
|
-
* <p>The type of authorizer to use for the gateway.</p>
|
|
2127
|
+
* <p>The type of authorizer to use for the gateway.</p> <ul> <li> <p> <code>CUSTOM_JWT</code> - Authorize with a bearer token.</p> </li> <li> <p> <code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p> </li> </ul>
|
|
2128
2128
|
* @public
|
|
2129
2129
|
*/
|
|
2130
2130
|
authorizerType: AuthorizerType | undefined;
|
|
2131
2131
|
/**
|
|
2132
|
-
* <p>The authorizer configuration for the gateway
|
|
2132
|
+
* <p>The authorizer configuration for the gateway. Required if <code>authorizerType</code> is <code>CUSTOM_JWT</code>.</p>
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
2135
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -2768,6 +2768,17 @@ export interface S3Configuration {
|
|
|
2768
2768
|
*/
|
|
2769
2769
|
bucketOwnerAccountId?: string | undefined;
|
|
2770
2770
|
}
|
|
2771
|
+
/**
|
|
2772
|
+
* <p>The target configuration for the MCP server.</p>
|
|
2773
|
+
* @public
|
|
2774
|
+
*/
|
|
2775
|
+
export interface McpServerTargetConfiguration {
|
|
2776
|
+
/**
|
|
2777
|
+
* <p>The endpoint for the MCP server target configuration.</p>
|
|
2778
|
+
* @public
|
|
2779
|
+
*/
|
|
2780
|
+
endpoint: string | undefined;
|
|
2781
|
+
}
|
|
2771
2782
|
/**
|
|
2772
2783
|
* <p>Configuration for API schema.</p>
|
|
2773
2784
|
* @public
|
|
@@ -2819,6 +2830,8 @@ export declare const TargetStatus: {
|
|
|
2819
2830
|
readonly DELETING: "DELETING";
|
|
2820
2831
|
readonly FAILED: "FAILED";
|
|
2821
2832
|
readonly READY: "READY";
|
|
2833
|
+
readonly SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL";
|
|
2834
|
+
readonly SYNCHRONIZING: "SYNCHRONIZING";
|
|
2822
2835
|
readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
|
|
2823
2836
|
readonly UPDATING: "UPDATING";
|
|
2824
2837
|
};
|
|
@@ -2952,6 +2965,21 @@ export interface ListGatewayTargetsResponse {
|
|
|
2952
2965
|
*/
|
|
2953
2966
|
nextToken?: string | undefined;
|
|
2954
2967
|
}
|
|
2968
|
+
/**
|
|
2969
|
+
* @public
|
|
2970
|
+
*/
|
|
2971
|
+
export interface SynchronizeGatewayTargetsRequest {
|
|
2972
|
+
/**
|
|
2973
|
+
* <p>The gateway Identifier.</p>
|
|
2974
|
+
* @public
|
|
2975
|
+
*/
|
|
2976
|
+
gatewayIdentifier: string | undefined;
|
|
2977
|
+
/**
|
|
2978
|
+
* <p>The target ID list.</p>
|
|
2979
|
+
* @public
|
|
2980
|
+
*/
|
|
2981
|
+
targetIdList: string[] | undefined;
|
|
2982
|
+
}
|
|
2955
2983
|
/**
|
|
2956
2984
|
* @public
|
|
2957
2985
|
*/
|
|
@@ -3030,6 +3058,132 @@ export interface ListTagsForResourceResponse {
|
|
|
3030
3058
|
*/
|
|
3031
3059
|
tags?: Record<string, string> | undefined;
|
|
3032
3060
|
}
|
|
3061
|
+
/**
|
|
3062
|
+
* <p>The configuration to invoke a self-managed memory processing pipeline with.</p>
|
|
3063
|
+
* @public
|
|
3064
|
+
*/
|
|
3065
|
+
export interface InvocationConfigurationInput {
|
|
3066
|
+
/**
|
|
3067
|
+
* <p>The ARN of the SNS topic for job notifications.</p>
|
|
3068
|
+
* @public
|
|
3069
|
+
*/
|
|
3070
|
+
topicArn: string | undefined;
|
|
3071
|
+
/**
|
|
3072
|
+
* <p>The S3 bucket name for event payload delivery.</p>
|
|
3073
|
+
* @public
|
|
3074
|
+
*/
|
|
3075
|
+
payloadDeliveryBucketName: string | undefined;
|
|
3076
|
+
}
|
|
3077
|
+
/**
|
|
3078
|
+
* <p>The trigger configuration based on a message.</p>
|
|
3079
|
+
* @public
|
|
3080
|
+
*/
|
|
3081
|
+
export interface MessageBasedTriggerInput {
|
|
3082
|
+
/**
|
|
3083
|
+
* <p>The number of messages that trigger memory processing.</p>
|
|
3084
|
+
* @public
|
|
3085
|
+
*/
|
|
3086
|
+
messageCount?: number | undefined;
|
|
3087
|
+
}
|
|
3088
|
+
/**
|
|
3089
|
+
* <p>Trigger configuration based on time.</p>
|
|
3090
|
+
* @public
|
|
3091
|
+
*/
|
|
3092
|
+
export interface TimeBasedTriggerInput {
|
|
3093
|
+
/**
|
|
3094
|
+
* <p>Idle session timeout (seconds) that triggers memory processing.</p>
|
|
3095
|
+
* @public
|
|
3096
|
+
*/
|
|
3097
|
+
idleSessionTimeout?: number | undefined;
|
|
3098
|
+
}
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>Trigger configuration based on tokens.</p>
|
|
3101
|
+
* @public
|
|
3102
|
+
*/
|
|
3103
|
+
export interface TokenBasedTriggerInput {
|
|
3104
|
+
/**
|
|
3105
|
+
* <p>Number of tokens that trigger memory processing.</p>
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
tokenCount?: number | undefined;
|
|
3109
|
+
}
|
|
3110
|
+
/**
|
|
3111
|
+
* <p>Condition that triggers memory processing.</p>
|
|
3112
|
+
* @public
|
|
3113
|
+
*/
|
|
3114
|
+
export type TriggerConditionInput = TriggerConditionInput.MessageBasedTriggerMember | TriggerConditionInput.TimeBasedTriggerMember | TriggerConditionInput.TokenBasedTriggerMember | TriggerConditionInput.$UnknownMember;
|
|
3115
|
+
/**
|
|
3116
|
+
* @public
|
|
3117
|
+
*/
|
|
3118
|
+
export declare namespace TriggerConditionInput {
|
|
3119
|
+
/**
|
|
3120
|
+
* <p>Message based trigger configuration.</p>
|
|
3121
|
+
* @public
|
|
3122
|
+
*/
|
|
3123
|
+
interface MessageBasedTriggerMember {
|
|
3124
|
+
messageBasedTrigger: MessageBasedTriggerInput;
|
|
3125
|
+
tokenBasedTrigger?: never;
|
|
3126
|
+
timeBasedTrigger?: never;
|
|
3127
|
+
$unknown?: never;
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
* <p>Token based trigger configuration.</p>
|
|
3131
|
+
* @public
|
|
3132
|
+
*/
|
|
3133
|
+
interface TokenBasedTriggerMember {
|
|
3134
|
+
messageBasedTrigger?: never;
|
|
3135
|
+
tokenBasedTrigger: TokenBasedTriggerInput;
|
|
3136
|
+
timeBasedTrigger?: never;
|
|
3137
|
+
$unknown?: never;
|
|
3138
|
+
}
|
|
3139
|
+
/**
|
|
3140
|
+
* <p>Time based trigger configuration.</p>
|
|
3141
|
+
* @public
|
|
3142
|
+
*/
|
|
3143
|
+
interface TimeBasedTriggerMember {
|
|
3144
|
+
messageBasedTrigger?: never;
|
|
3145
|
+
tokenBasedTrigger?: never;
|
|
3146
|
+
timeBasedTrigger: TimeBasedTriggerInput;
|
|
3147
|
+
$unknown?: never;
|
|
3148
|
+
}
|
|
3149
|
+
/**
|
|
3150
|
+
* @public
|
|
3151
|
+
*/
|
|
3152
|
+
interface $UnknownMember {
|
|
3153
|
+
messageBasedTrigger?: never;
|
|
3154
|
+
tokenBasedTrigger?: never;
|
|
3155
|
+
timeBasedTrigger?: never;
|
|
3156
|
+
$unknown: [string, any];
|
|
3157
|
+
}
|
|
3158
|
+
interface Visitor<T> {
|
|
3159
|
+
messageBasedTrigger: (value: MessageBasedTriggerInput) => T;
|
|
3160
|
+
tokenBasedTrigger: (value: TokenBasedTriggerInput) => T;
|
|
3161
|
+
timeBasedTrigger: (value: TimeBasedTriggerInput) => T;
|
|
3162
|
+
_: (name: string, value: any) => T;
|
|
3163
|
+
}
|
|
3164
|
+
const visit: <T>(value: TriggerConditionInput, visitor: Visitor<T>) => T;
|
|
3165
|
+
}
|
|
3166
|
+
/**
|
|
3167
|
+
* <p>Input configuration for a self-managed memory strategy.</p>
|
|
3168
|
+
* @public
|
|
3169
|
+
*/
|
|
3170
|
+
export interface SelfManagedConfigurationInput {
|
|
3171
|
+
/**
|
|
3172
|
+
* <p>A list of conditions that trigger memory processing.</p>
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
triggerConditions?: TriggerConditionInput[] | undefined;
|
|
3176
|
+
/**
|
|
3177
|
+
* <p>Configuration to invoke a self-managed memory processing pipeline with.</p>
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
invocationConfiguration: InvocationConfigurationInput | undefined;
|
|
3181
|
+
/**
|
|
3182
|
+
* <p>Number of historical messages to include in processing context.</p>
|
|
3183
|
+
* @public
|
|
3184
|
+
*/
|
|
3185
|
+
historicalContextWindowSize?: number | undefined;
|
|
3186
|
+
}
|
|
3033
3187
|
/**
|
|
3034
3188
|
* <p>Input for semantic override consolidation configuration in a memory strategy.</p>
|
|
3035
3189
|
* @public
|
|
@@ -3157,7 +3311,7 @@ export interface UserPreferenceOverrideConfigurationInput {
|
|
|
3157
3311
|
* <p>Input for custom configuration of a memory strategy.</p>
|
|
3158
3312
|
* @public
|
|
3159
3313
|
*/
|
|
3160
|
-
export type CustomConfigurationInput = CustomConfigurationInput.SemanticOverrideMember | CustomConfigurationInput.SummaryOverrideMember | CustomConfigurationInput.UserPreferenceOverrideMember | CustomConfigurationInput.$UnknownMember;
|
|
3314
|
+
export type CustomConfigurationInput = CustomConfigurationInput.SelfManagedConfigurationMember | CustomConfigurationInput.SemanticOverrideMember | CustomConfigurationInput.SummaryOverrideMember | CustomConfigurationInput.UserPreferenceOverrideMember | CustomConfigurationInput.$UnknownMember;
|
|
3161
3315
|
/**
|
|
3162
3316
|
* @public
|
|
3163
3317
|
*/
|
|
@@ -3170,6 +3324,7 @@ export declare namespace CustomConfigurationInput {
|
|
|
3170
3324
|
semanticOverride: SemanticOverrideConfigurationInput;
|
|
3171
3325
|
summaryOverride?: never;
|
|
3172
3326
|
userPreferenceOverride?: never;
|
|
3327
|
+
selfManagedConfiguration?: never;
|
|
3173
3328
|
$unknown?: never;
|
|
3174
3329
|
}
|
|
3175
3330
|
/**
|
|
@@ -3180,6 +3335,7 @@ export declare namespace CustomConfigurationInput {
|
|
|
3180
3335
|
semanticOverride?: never;
|
|
3181
3336
|
summaryOverride: SummaryOverrideConfigurationInput;
|
|
3182
3337
|
userPreferenceOverride?: never;
|
|
3338
|
+
selfManagedConfiguration?: never;
|
|
3183
3339
|
$unknown?: never;
|
|
3184
3340
|
}
|
|
3185
3341
|
/**
|
|
@@ -3190,6 +3346,18 @@ export declare namespace CustomConfigurationInput {
|
|
|
3190
3346
|
semanticOverride?: never;
|
|
3191
3347
|
summaryOverride?: never;
|
|
3192
3348
|
userPreferenceOverride: UserPreferenceOverrideConfigurationInput;
|
|
3349
|
+
selfManagedConfiguration?: never;
|
|
3350
|
+
$unknown?: never;
|
|
3351
|
+
}
|
|
3352
|
+
/**
|
|
3353
|
+
* <p>The self managed configuration for a custom memory strategy.</p>
|
|
3354
|
+
* @public
|
|
3355
|
+
*/
|
|
3356
|
+
interface SelfManagedConfigurationMember {
|
|
3357
|
+
semanticOverride?: never;
|
|
3358
|
+
summaryOverride?: never;
|
|
3359
|
+
userPreferenceOverride?: never;
|
|
3360
|
+
selfManagedConfiguration: SelfManagedConfigurationInput;
|
|
3193
3361
|
$unknown?: never;
|
|
3194
3362
|
}
|
|
3195
3363
|
/**
|
|
@@ -3199,12 +3367,14 @@ export declare namespace CustomConfigurationInput {
|
|
|
3199
3367
|
semanticOverride?: never;
|
|
3200
3368
|
summaryOverride?: never;
|
|
3201
3369
|
userPreferenceOverride?: never;
|
|
3370
|
+
selfManagedConfiguration?: never;
|
|
3202
3371
|
$unknown: [string, any];
|
|
3203
3372
|
}
|
|
3204
3373
|
interface Visitor<T> {
|
|
3205
3374
|
semanticOverride: (value: SemanticOverrideConfigurationInput) => T;
|
|
3206
3375
|
summaryOverride: (value: SummaryOverrideConfigurationInput) => T;
|
|
3207
3376
|
userPreferenceOverride: (value: UserPreferenceOverrideConfigurationInput) => T;
|
|
3377
|
+
selfManagedConfiguration: (value: SelfManagedConfigurationInput) => T;
|
|
3208
3378
|
_: (name: string, value: any) => T;
|
|
3209
3379
|
}
|
|
3210
3380
|
const visit: <T>(value: CustomConfigurationInput, visitor: Visitor<T>) => T;
|
|
@@ -3667,11 +3837,138 @@ export declare namespace ExtractionConfiguration {
|
|
|
3667
3837
|
}
|
|
3668
3838
|
const visit: <T>(value: ExtractionConfiguration, visitor: Visitor<T>) => T;
|
|
3669
3839
|
}
|
|
3840
|
+
/**
|
|
3841
|
+
* <p>The configuration to invoke a self-managed memory processing pipeline with.</p>
|
|
3842
|
+
* @public
|
|
3843
|
+
*/
|
|
3844
|
+
export interface InvocationConfiguration {
|
|
3845
|
+
/**
|
|
3846
|
+
* <p>The ARN of the SNS topic for job notifications.</p>
|
|
3847
|
+
* @public
|
|
3848
|
+
*/
|
|
3849
|
+
topicArn: string | undefined;
|
|
3850
|
+
/**
|
|
3851
|
+
* <p>The S3 bucket name for event payload delivery.</p>
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
payloadDeliveryBucketName: string | undefined;
|
|
3855
|
+
}
|
|
3856
|
+
/**
|
|
3857
|
+
* <p>The trigger configuration based on a message.</p>
|
|
3858
|
+
* @public
|
|
3859
|
+
*/
|
|
3860
|
+
export interface MessageBasedTrigger {
|
|
3861
|
+
/**
|
|
3862
|
+
* <p>The number of messages that trigger memory processing.</p>
|
|
3863
|
+
* @public
|
|
3864
|
+
*/
|
|
3865
|
+
messageCount?: number | undefined;
|
|
3866
|
+
}
|
|
3867
|
+
/**
|
|
3868
|
+
* <p>Trigger configuration based on time.</p>
|
|
3869
|
+
* @public
|
|
3870
|
+
*/
|
|
3871
|
+
export interface TimeBasedTrigger {
|
|
3872
|
+
/**
|
|
3873
|
+
* <p>Idle session timeout (seconds) that triggers memory processing.</p>
|
|
3874
|
+
* @public
|
|
3875
|
+
*/
|
|
3876
|
+
idleSessionTimeout?: number | undefined;
|
|
3877
|
+
}
|
|
3878
|
+
/**
|
|
3879
|
+
* <p>Trigger configuration based on tokens.</p>
|
|
3880
|
+
* @public
|
|
3881
|
+
*/
|
|
3882
|
+
export interface TokenBasedTrigger {
|
|
3883
|
+
/**
|
|
3884
|
+
* <p>Number of tokens that trigger memory processing.</p>
|
|
3885
|
+
* @public
|
|
3886
|
+
*/
|
|
3887
|
+
tokenCount?: number | undefined;
|
|
3888
|
+
}
|
|
3889
|
+
/**
|
|
3890
|
+
* <p>Condition that triggers memory processing.</p>
|
|
3891
|
+
* @public
|
|
3892
|
+
*/
|
|
3893
|
+
export type TriggerCondition = TriggerCondition.MessageBasedTriggerMember | TriggerCondition.TimeBasedTriggerMember | TriggerCondition.TokenBasedTriggerMember | TriggerCondition.$UnknownMember;
|
|
3894
|
+
/**
|
|
3895
|
+
* @public
|
|
3896
|
+
*/
|
|
3897
|
+
export declare namespace TriggerCondition {
|
|
3898
|
+
/**
|
|
3899
|
+
* <p>Message based trigger configuration.</p>
|
|
3900
|
+
* @public
|
|
3901
|
+
*/
|
|
3902
|
+
interface MessageBasedTriggerMember {
|
|
3903
|
+
messageBasedTrigger: MessageBasedTrigger;
|
|
3904
|
+
tokenBasedTrigger?: never;
|
|
3905
|
+
timeBasedTrigger?: never;
|
|
3906
|
+
$unknown?: never;
|
|
3907
|
+
}
|
|
3908
|
+
/**
|
|
3909
|
+
* <p>Token based trigger configuration.</p>
|
|
3910
|
+
* @public
|
|
3911
|
+
*/
|
|
3912
|
+
interface TokenBasedTriggerMember {
|
|
3913
|
+
messageBasedTrigger?: never;
|
|
3914
|
+
tokenBasedTrigger: TokenBasedTrigger;
|
|
3915
|
+
timeBasedTrigger?: never;
|
|
3916
|
+
$unknown?: never;
|
|
3917
|
+
}
|
|
3918
|
+
/**
|
|
3919
|
+
* <p>Time based trigger configuration.</p>
|
|
3920
|
+
* @public
|
|
3921
|
+
*/
|
|
3922
|
+
interface TimeBasedTriggerMember {
|
|
3923
|
+
messageBasedTrigger?: never;
|
|
3924
|
+
tokenBasedTrigger?: never;
|
|
3925
|
+
timeBasedTrigger: TimeBasedTrigger;
|
|
3926
|
+
$unknown?: never;
|
|
3927
|
+
}
|
|
3928
|
+
/**
|
|
3929
|
+
* @public
|
|
3930
|
+
*/
|
|
3931
|
+
interface $UnknownMember {
|
|
3932
|
+
messageBasedTrigger?: never;
|
|
3933
|
+
tokenBasedTrigger?: never;
|
|
3934
|
+
timeBasedTrigger?: never;
|
|
3935
|
+
$unknown: [string, any];
|
|
3936
|
+
}
|
|
3937
|
+
interface Visitor<T> {
|
|
3938
|
+
messageBasedTrigger: (value: MessageBasedTrigger) => T;
|
|
3939
|
+
tokenBasedTrigger: (value: TokenBasedTrigger) => T;
|
|
3940
|
+
timeBasedTrigger: (value: TimeBasedTrigger) => T;
|
|
3941
|
+
_: (name: string, value: any) => T;
|
|
3942
|
+
}
|
|
3943
|
+
const visit: <T>(value: TriggerCondition, visitor: Visitor<T>) => T;
|
|
3944
|
+
}
|
|
3945
|
+
/**
|
|
3946
|
+
* <p>A configuration for a self-managed memory strategy.</p>
|
|
3947
|
+
* @public
|
|
3948
|
+
*/
|
|
3949
|
+
export interface SelfManagedConfiguration {
|
|
3950
|
+
/**
|
|
3951
|
+
* <p>A list of conditions that trigger memory processing.</p>
|
|
3952
|
+
* @public
|
|
3953
|
+
*/
|
|
3954
|
+
triggerConditions: TriggerCondition[] | undefined;
|
|
3955
|
+
/**
|
|
3956
|
+
* <p>The configuration to use when invoking memory processing.</p>
|
|
3957
|
+
* @public
|
|
3958
|
+
*/
|
|
3959
|
+
invocationConfiguration: InvocationConfiguration | undefined;
|
|
3960
|
+
/**
|
|
3961
|
+
* <p>The number of historical messages to include in processing context.</p>
|
|
3962
|
+
* @public
|
|
3963
|
+
*/
|
|
3964
|
+
historicalContextWindowSize: number | undefined;
|
|
3965
|
+
}
|
|
3670
3966
|
/**
|
|
3671
3967
|
* @public
|
|
3672
3968
|
* @enum
|
|
3673
3969
|
*/
|
|
3674
3970
|
export declare const OverrideType: {
|
|
3971
|
+
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
3675
3972
|
readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
|
|
3676
3973
|
readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
|
|
3677
3974
|
readonly USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE";
|
|
@@ -3700,6 +3997,11 @@ export interface StrategyConfiguration {
|
|
|
3700
3997
|
* @public
|
|
3701
3998
|
*/
|
|
3702
3999
|
consolidation?: ConsolidationConfiguration | undefined;
|
|
4000
|
+
/**
|
|
4001
|
+
* <p>Self-managed configuration settings.</p>
|
|
4002
|
+
* @public
|
|
4003
|
+
*/
|
|
4004
|
+
selfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
3703
4005
|
}
|
|
3704
4006
|
/**
|
|
3705
4007
|
* @public
|
|
@@ -4162,6 +4464,43 @@ export declare namespace ModifyExtractionConfiguration {
|
|
|
4162
4464
|
}
|
|
4163
4465
|
const visit: <T>(value: ModifyExtractionConfiguration, visitor: Visitor<T>) => T;
|
|
4164
4466
|
}
|
|
4467
|
+
/**
|
|
4468
|
+
* <p>The configuration for updating invocation settings.</p>
|
|
4469
|
+
* @public
|
|
4470
|
+
*/
|
|
4471
|
+
export interface ModifyInvocationConfigurationInput {
|
|
4472
|
+
/**
|
|
4473
|
+
* <p>The updated ARN of the SNS topic for job notifications.</p>
|
|
4474
|
+
* @public
|
|
4475
|
+
*/
|
|
4476
|
+
topicArn?: string | undefined;
|
|
4477
|
+
/**
|
|
4478
|
+
* <p>The updated S3 bucket name for event payload delivery.</p>
|
|
4479
|
+
* @public
|
|
4480
|
+
*/
|
|
4481
|
+
payloadDeliveryBucketName?: string | undefined;
|
|
4482
|
+
}
|
|
4483
|
+
/**
|
|
4484
|
+
* <p>The configuration for updating the self-managed memory strategy.</p>
|
|
4485
|
+
* @public
|
|
4486
|
+
*/
|
|
4487
|
+
export interface ModifySelfManagedConfiguration {
|
|
4488
|
+
/**
|
|
4489
|
+
* <p>The updated list of conditions that trigger memory processing.</p>
|
|
4490
|
+
* @public
|
|
4491
|
+
*/
|
|
4492
|
+
triggerConditions?: TriggerConditionInput[] | undefined;
|
|
4493
|
+
/**
|
|
4494
|
+
* <p>The updated configuration to invoke self-managed memory processing pipeline.</p>
|
|
4495
|
+
* @public
|
|
4496
|
+
*/
|
|
4497
|
+
invocationConfiguration?: ModifyInvocationConfigurationInput | undefined;
|
|
4498
|
+
/**
|
|
4499
|
+
* <p>The updated number of historical messages to include in processing context.</p>
|
|
4500
|
+
* @public
|
|
4501
|
+
*/
|
|
4502
|
+
historicalContextWindowSize?: number | undefined;
|
|
4503
|
+
}
|
|
4165
4504
|
/**
|
|
4166
4505
|
* <p>Contains information for modifying a strategy configuration.</p>
|
|
4167
4506
|
* @public
|
|
@@ -4177,6 +4516,11 @@ export interface ModifyStrategyConfiguration {
|
|
|
4177
4516
|
* @public
|
|
4178
4517
|
*/
|
|
4179
4518
|
consolidation?: ModifyConsolidationConfiguration | undefined;
|
|
4519
|
+
/**
|
|
4520
|
+
* <p>The updated self-managed configuration.</p>
|
|
4521
|
+
* @public
|
|
4522
|
+
*/
|
|
4523
|
+
selfManagedConfiguration?: ModifySelfManagedConfiguration | undefined;
|
|
4180
4524
|
}
|
|
4181
4525
|
/**
|
|
4182
4526
|
* <p>Input for modifying a memory strategy.</p>
|
|
@@ -5354,7 +5698,7 @@ export interface McpLambdaTargetConfiguration {
|
|
|
5354
5698
|
* <p>The Model Context Protocol (MCP) configuration for a target. This structure defines how the gateway uses MCP to communicate with the target.</p>
|
|
5355
5699
|
* @public
|
|
5356
5700
|
*/
|
|
5357
|
-
export type McpTargetConfiguration = McpTargetConfiguration.LambdaMember | McpTargetConfiguration.OpenApiSchemaMember | McpTargetConfiguration.SmithyModelMember | McpTargetConfiguration.$UnknownMember;
|
|
5701
|
+
export type McpTargetConfiguration = McpTargetConfiguration.LambdaMember | McpTargetConfiguration.McpServerMember | McpTargetConfiguration.OpenApiSchemaMember | McpTargetConfiguration.SmithyModelMember | McpTargetConfiguration.$UnknownMember;
|
|
5358
5702
|
/**
|
|
5359
5703
|
* @public
|
|
5360
5704
|
*/
|
|
@@ -5367,6 +5711,7 @@ export declare namespace McpTargetConfiguration {
|
|
|
5367
5711
|
openApiSchema: ApiSchemaConfiguration;
|
|
5368
5712
|
smithyModel?: never;
|
|
5369
5713
|
lambda?: never;
|
|
5714
|
+
mcpServer?: never;
|
|
5370
5715
|
$unknown?: never;
|
|
5371
5716
|
}
|
|
5372
5717
|
/**
|
|
@@ -5377,6 +5722,7 @@ export declare namespace McpTargetConfiguration {
|
|
|
5377
5722
|
openApiSchema?: never;
|
|
5378
5723
|
smithyModel: ApiSchemaConfiguration;
|
|
5379
5724
|
lambda?: never;
|
|
5725
|
+
mcpServer?: never;
|
|
5380
5726
|
$unknown?: never;
|
|
5381
5727
|
}
|
|
5382
5728
|
/**
|
|
@@ -5387,6 +5733,18 @@ export declare namespace McpTargetConfiguration {
|
|
|
5387
5733
|
openApiSchema?: never;
|
|
5388
5734
|
smithyModel?: never;
|
|
5389
5735
|
lambda: McpLambdaTargetConfiguration;
|
|
5736
|
+
mcpServer?: never;
|
|
5737
|
+
$unknown?: never;
|
|
5738
|
+
}
|
|
5739
|
+
/**
|
|
5740
|
+
* <p>The MCP server specified as the gateway target.</p>
|
|
5741
|
+
* @public
|
|
5742
|
+
*/
|
|
5743
|
+
interface McpServerMember {
|
|
5744
|
+
openApiSchema?: never;
|
|
5745
|
+
smithyModel?: never;
|
|
5746
|
+
lambda?: never;
|
|
5747
|
+
mcpServer: McpServerTargetConfiguration;
|
|
5390
5748
|
$unknown?: never;
|
|
5391
5749
|
}
|
|
5392
5750
|
/**
|
|
@@ -5396,12 +5754,14 @@ export declare namespace McpTargetConfiguration {
|
|
|
5396
5754
|
openApiSchema?: never;
|
|
5397
5755
|
smithyModel?: never;
|
|
5398
5756
|
lambda?: never;
|
|
5757
|
+
mcpServer?: never;
|
|
5399
5758
|
$unknown: [string, any];
|
|
5400
5759
|
}
|
|
5401
5760
|
interface Visitor<T> {
|
|
5402
5761
|
openApiSchema: (value: ApiSchemaConfiguration) => T;
|
|
5403
5762
|
smithyModel: (value: ApiSchemaConfiguration) => T;
|
|
5404
5763
|
lambda: (value: McpLambdaTargetConfiguration) => T;
|
|
5764
|
+
mcpServer: (value: McpServerTargetConfiguration) => T;
|
|
5405
5765
|
_: (name: string, value: any) => T;
|
|
5406
5766
|
}
|
|
5407
5767
|
const visit: <T>(value: McpTargetConfiguration, visitor: Visitor<T>) => T;
|
|
@@ -5456,7 +5816,7 @@ export interface CreateGatewayTargetRequest {
|
|
|
5456
5816
|
*/
|
|
5457
5817
|
description?: string | undefined;
|
|
5458
5818
|
/**
|
|
5459
|
-
* <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, the service ignores the request, but
|
|
5819
|
+
* <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>
|
|
5460
5820
|
* @public
|
|
5461
5821
|
*/
|
|
5462
5822
|
clientToken?: string | undefined;
|
|
@@ -5469,7 +5829,7 @@ export interface CreateGatewayTargetRequest {
|
|
|
5469
5829
|
* <p>The credential provider configurations for the target. These configurations specify how the gateway authenticates with the target endpoint.</p>
|
|
5470
5830
|
* @public
|
|
5471
5831
|
*/
|
|
5472
|
-
credentialProviderConfigurations
|
|
5832
|
+
credentialProviderConfigurations?: CredentialProviderConfiguration[] | undefined;
|
|
5473
5833
|
}
|
|
5474
5834
|
/**
|
|
5475
5835
|
* @public
|
|
@@ -5525,6 +5885,72 @@ export interface CreateGatewayTargetResponse {
|
|
|
5525
5885
|
* @public
|
|
5526
5886
|
*/
|
|
5527
5887
|
credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
|
|
5888
|
+
/**
|
|
5889
|
+
* <p>The last synchronization of the target.</p>
|
|
5890
|
+
* @public
|
|
5891
|
+
*/
|
|
5892
|
+
lastSynchronizedAt?: Date | undefined;
|
|
5893
|
+
}
|
|
5894
|
+
/**
|
|
5895
|
+
* <p>The gateway target.</p>
|
|
5896
|
+
* @public
|
|
5897
|
+
*/
|
|
5898
|
+
export interface GatewayTarget {
|
|
5899
|
+
/**
|
|
5900
|
+
* <p>The Amazon Resource Name (ARN) of the gateway target.</p>
|
|
5901
|
+
* @public
|
|
5902
|
+
*/
|
|
5903
|
+
gatewayArn: string | undefined;
|
|
5904
|
+
/**
|
|
5905
|
+
* <p>The target ID.</p>
|
|
5906
|
+
* @public
|
|
5907
|
+
*/
|
|
5908
|
+
targetId: string | undefined;
|
|
5909
|
+
/**
|
|
5910
|
+
* <p>The date and time at which the target was created.</p>
|
|
5911
|
+
* @public
|
|
5912
|
+
*/
|
|
5913
|
+
createdAt: Date | undefined;
|
|
5914
|
+
/**
|
|
5915
|
+
* <p>The date and time at which the target was updated.</p>
|
|
5916
|
+
* @public
|
|
5917
|
+
*/
|
|
5918
|
+
updatedAt: Date | undefined;
|
|
5919
|
+
/**
|
|
5920
|
+
* <p>The status of the gateway target.</p>
|
|
5921
|
+
* @public
|
|
5922
|
+
*/
|
|
5923
|
+
status: TargetStatus | undefined;
|
|
5924
|
+
/**
|
|
5925
|
+
* <p>The status reasons for the target status.</p>
|
|
5926
|
+
* @public
|
|
5927
|
+
*/
|
|
5928
|
+
statusReasons?: string[] | undefined;
|
|
5929
|
+
/**
|
|
5930
|
+
* <p>The name of the gateway target.</p>
|
|
5931
|
+
* @public
|
|
5932
|
+
*/
|
|
5933
|
+
name: string | undefined;
|
|
5934
|
+
/**
|
|
5935
|
+
* <p>The description for the gateway target.</p>
|
|
5936
|
+
* @public
|
|
5937
|
+
*/
|
|
5938
|
+
description?: string | undefined;
|
|
5939
|
+
/**
|
|
5940
|
+
* <p>The configuration for a gateway target. This structure defines how the gateway connects to and interacts with the target endpoint.</p>
|
|
5941
|
+
* @public
|
|
5942
|
+
*/
|
|
5943
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
5944
|
+
/**
|
|
5945
|
+
* <p>The provider configurations.</p>
|
|
5946
|
+
* @public
|
|
5947
|
+
*/
|
|
5948
|
+
credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
|
|
5949
|
+
/**
|
|
5950
|
+
* <p>The last synchronization time.</p>
|
|
5951
|
+
* @public
|
|
5952
|
+
*/
|
|
5953
|
+
lastSynchronizedAt?: Date | undefined;
|
|
5528
5954
|
}
|
|
5529
5955
|
/**
|
|
5530
5956
|
* @public
|
|
@@ -5580,6 +6006,11 @@ export interface GetGatewayTargetResponse {
|
|
|
5580
6006
|
* @public
|
|
5581
6007
|
*/
|
|
5582
6008
|
credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
|
|
6009
|
+
/**
|
|
6010
|
+
* <p>The last synchronization of the target.</p>
|
|
6011
|
+
* @public
|
|
6012
|
+
*/
|
|
6013
|
+
lastSynchronizedAt?: Date | undefined;
|
|
5583
6014
|
}
|
|
5584
6015
|
/**
|
|
5585
6016
|
* @public
|
|
@@ -5614,7 +6045,7 @@ export interface UpdateGatewayTargetRequest {
|
|
|
5614
6045
|
* <p>The updated credential provider configurations for the gateway target.</p>
|
|
5615
6046
|
* @public
|
|
5616
6047
|
*/
|
|
5617
|
-
credentialProviderConfigurations
|
|
6048
|
+
credentialProviderConfigurations?: CredentialProviderConfiguration[] | undefined;
|
|
5618
6049
|
}
|
|
5619
6050
|
/**
|
|
5620
6051
|
* @public
|
|
@@ -5670,6 +6101,21 @@ export interface UpdateGatewayTargetResponse {
|
|
|
5670
6101
|
* @public
|
|
5671
6102
|
*/
|
|
5672
6103
|
credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
|
|
6104
|
+
/**
|
|
6105
|
+
* <p>The date and time at which the targets were last synchronized.</p>
|
|
6106
|
+
* @public
|
|
6107
|
+
*/
|
|
6108
|
+
lastSynchronizedAt?: Date | undefined;
|
|
6109
|
+
}
|
|
6110
|
+
/**
|
|
6111
|
+
* @public
|
|
6112
|
+
*/
|
|
6113
|
+
export interface SynchronizeGatewayTargetsResponse {
|
|
6114
|
+
/**
|
|
6115
|
+
* <p>The gateway targets for synchronization.</p>
|
|
6116
|
+
* @public
|
|
6117
|
+
*/
|
|
6118
|
+
targets?: GatewayTarget[] | undefined;
|
|
5673
6119
|
}
|
|
5674
6120
|
/**
|
|
5675
6121
|
* @internal
|
|
@@ -6019,6 +6465,10 @@ export declare const CreateGatewayTargetRequestFilterSensitiveLog: (obj: CreateG
|
|
|
6019
6465
|
* @internal
|
|
6020
6466
|
*/
|
|
6021
6467
|
export declare const CreateGatewayTargetResponseFilterSensitiveLog: (obj: CreateGatewayTargetResponse) => any;
|
|
6468
|
+
/**
|
|
6469
|
+
* @internal
|
|
6470
|
+
*/
|
|
6471
|
+
export declare const GatewayTargetFilterSensitiveLog: (obj: GatewayTarget) => any;
|
|
6022
6472
|
/**
|
|
6023
6473
|
* @internal
|
|
6024
6474
|
*/
|
|
@@ -6031,3 +6481,7 @@ export declare const UpdateGatewayTargetRequestFilterSensitiveLog: (obj: UpdateG
|
|
|
6031
6481
|
* @internal
|
|
6032
6482
|
*/
|
|
6033
6483
|
export declare const UpdateGatewayTargetResponseFilterSensitiveLog: (obj: UpdateGatewayTargetResponse) => any;
|
|
6484
|
+
/**
|
|
6485
|
+
* @internal
|
|
6486
|
+
*/
|
|
6487
|
+
export declare const SynchronizeGatewayTargetsResponseFilterSensitiveLog: (obj: SynchronizeGatewayTargetsResponse) => any;
|
|
@@ -44,6 +44,7 @@ import { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvider
|
|
|
44
44
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
45
45
|
import { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "../commands/ListWorkloadIdentitiesCommand";
|
|
46
46
|
import { SetTokenVaultCMKCommandInput, SetTokenVaultCMKCommandOutput } from "../commands/SetTokenVaultCMKCommand";
|
|
47
|
+
import { SynchronizeGatewayTargetsCommandInput, SynchronizeGatewayTargetsCommandOutput } from "../commands/SynchronizeGatewayTargetsCommand";
|
|
47
48
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
48
49
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
49
50
|
import { UpdateAgentRuntimeCommandInput, UpdateAgentRuntimeCommandOutput } from "../commands/UpdateAgentRuntimeCommand";
|
|
@@ -230,6 +231,10 @@ export declare const se_ListWorkloadIdentitiesCommand: (input: ListWorkloadIdent
|
|
|
230
231
|
* serializeAws_restJson1SetTokenVaultCMKCommand
|
|
231
232
|
*/
|
|
232
233
|
export declare const se_SetTokenVaultCMKCommand: (input: SetTokenVaultCMKCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
234
|
+
/**
|
|
235
|
+
* serializeAws_restJson1SynchronizeGatewayTargetsCommand
|
|
236
|
+
*/
|
|
237
|
+
export declare const se_SynchronizeGatewayTargetsCommand: (input: SynchronizeGatewayTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
233
238
|
/**
|
|
234
239
|
* serializeAws_restJson1TagResourceCommand
|
|
235
240
|
*/
|
|
@@ -446,6 +451,10 @@ export declare const de_ListWorkloadIdentitiesCommand: (output: __HttpResponse,
|
|
|
446
451
|
* deserializeAws_restJson1SetTokenVaultCMKCommand
|
|
447
452
|
*/
|
|
448
453
|
export declare const de_SetTokenVaultCMKCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetTokenVaultCMKCommandOutput>;
|
|
454
|
+
/**
|
|
455
|
+
* deserializeAws_restJson1SynchronizeGatewayTargetsCommand
|
|
456
|
+
*/
|
|
457
|
+
export declare const de_SynchronizeGatewayTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SynchronizeGatewayTargetsCommandOutput>;
|
|
449
458
|
/**
|
|
450
459
|
* deserializeAws_restJson1TagResourceCommand
|
|
451
460
|
*/
|