@aws-sdk/client-bedrock-agentcore-control 3.929.0 → 3.931.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.
@@ -543,11 +543,14 @@ export declare namespace Code {
543
543
  s3?: never;
544
544
  $unknown: [string, any];
545
545
  }
546
+ /**
547
+ * @deprecated unused in schema-serde mode.
548
+ *
549
+ */
546
550
  interface Visitor<T> {
547
551
  s3: (value: S3Location) => T;
548
552
  _: (name: string, value: any) => T;
549
553
  }
550
- const visit: <T>(value: Code, visitor: Visitor<T>) => T;
551
554
  }
552
555
  /**
553
556
  * <p>The configuration for the source code that defines how the agent runtime code should be executed, including the code location, runtime environment, and entry point.</p>
@@ -616,12 +619,15 @@ export declare namespace AgentRuntimeArtifact {
616
619
  codeConfiguration?: never;
617
620
  $unknown: [string, any];
618
621
  }
622
+ /**
623
+ * @deprecated unused in schema-serde mode.
624
+ *
625
+ */
619
626
  interface Visitor<T> {
620
627
  containerConfiguration: (value: ContainerConfiguration) => T;
621
628
  codeConfiguration: (value: CodeConfiguration) => T;
622
629
  _: (name: string, value: any) => T;
623
630
  }
624
- const visit: <T>(value: AgentRuntimeArtifact, visitor: Visitor<T>) => T;
625
631
  }
626
632
  /**
627
633
  * <p>Configuration for inbound JWT-based authorization, specifying how incoming requests should be authenticated.</p>
@@ -668,11 +674,14 @@ export declare namespace AuthorizerConfiguration {
668
674
  customJWTAuthorizer?: never;
669
675
  $unknown: [string, any];
670
676
  }
677
+ /**
678
+ * @deprecated unused in schema-serde mode.
679
+ *
680
+ */
671
681
  interface Visitor<T> {
672
682
  customJWTAuthorizer: (value: CustomJWTAuthorizerConfiguration) => T;
673
683
  _: (name: string, value: any) => T;
674
684
  }
675
- const visit: <T>(value: AuthorizerConfiguration, visitor: Visitor<T>) => T;
676
685
  }
677
686
  /**
678
687
  * <p>LifecycleConfiguration lets you manage the lifecycle of runtime sessions and resources in AgentCore Runtime. This configuration helps optimize resource utilization by automatically cleaning up idle sessions and preventing long-running instances from consuming resources indefinitely.</p>
@@ -782,11 +791,14 @@ export declare namespace RequestHeaderConfiguration {
782
791
  requestHeaderAllowlist?: never;
783
792
  $unknown: [string, any];
784
793
  }
794
+ /**
795
+ * @deprecated unused in schema-serde mode.
796
+ *
797
+ */
785
798
  interface Visitor<T> {
786
799
  requestHeaderAllowlist: (value: string[]) => T;
787
800
  _: (name: string, value: any) => T;
788
801
  }
789
- const visit: <T>(value: RequestHeaderConfiguration, visitor: Visitor<T>) => T;
790
802
  }
791
803
  /**
792
804
  * @public
@@ -2221,11 +2233,14 @@ export declare namespace GatewayProtocolConfiguration {
2221
2233
  mcp?: never;
2222
2234
  $unknown: [string, any];
2223
2235
  }
2236
+ /**
2237
+ * @deprecated unused in schema-serde mode.
2238
+ *
2239
+ */
2224
2240
  interface Visitor<T> {
2225
2241
  mcp: (value: MCPGatewayConfiguration) => T;
2226
2242
  _: (name: string, value: any) => T;
2227
2243
  }
2228
- const visit: <T>(value: GatewayProtocolConfiguration, visitor: Visitor<T>) => T;
2229
2244
  }
2230
2245
  /**
2231
2246
  * @public
@@ -2849,12 +2864,15 @@ export declare namespace CredentialProvider {
2849
2864
  apiKeyCredentialProvider?: never;
2850
2865
  $unknown: [string, any];
2851
2866
  }
2867
+ /**
2868
+ * @deprecated unused in schema-serde mode.
2869
+ *
2870
+ */
2852
2871
  interface Visitor<T> {
2853
2872
  oauthCredentialProvider: (value: OAuthCredentialProvider) => T;
2854
2873
  apiKeyCredentialProvider: (value: GatewayApiKeyCredentialProvider) => T;
2855
2874
  _: (name: string, value: any) => T;
2856
2875
  }
2857
- const visit: <T>(value: CredentialProvider, visitor: Visitor<T>) => T;
2858
2876
  }
2859
2877
  /**
2860
2878
  * @public
@@ -2963,12 +2981,15 @@ export declare namespace ApiSchemaConfiguration {
2963
2981
  inlinePayload?: never;
2964
2982
  $unknown: [string, any];
2965
2983
  }
2984
+ /**
2985
+ * @deprecated unused in schema-serde mode.
2986
+ *
2987
+ */
2966
2988
  interface Visitor<T> {
2967
2989
  s3: (value: S3Configuration) => T;
2968
2990
  inlinePayload: (value: string) => T;
2969
2991
  _: (name: string, value: any) => T;
2970
2992
  }
2971
- const visit: <T>(value: ApiSchemaConfiguration, visitor: Visitor<T>) => T;
2972
2993
  }
2973
2994
  /**
2974
2995
  * @public
@@ -3304,13 +3325,16 @@ export declare namespace TriggerConditionInput {
3304
3325
  timeBasedTrigger?: never;
3305
3326
  $unknown: [string, any];
3306
3327
  }
3328
+ /**
3329
+ * @deprecated unused in schema-serde mode.
3330
+ *
3331
+ */
3307
3332
  interface Visitor<T> {
3308
3333
  messageBasedTrigger: (value: MessageBasedTriggerInput) => T;
3309
3334
  tokenBasedTrigger: (value: TokenBasedTriggerInput) => T;
3310
3335
  timeBasedTrigger: (value: TimeBasedTriggerInput) => T;
3311
3336
  _: (name: string, value: any) => T;
3312
3337
  }
3313
- const visit: <T>(value: TriggerConditionInput, visitor: Visitor<T>) => T;
3314
3338
  }
3315
3339
  /**
3316
3340
  * <p>Input configuration for a self-managed memory strategy.</p>
@@ -3519,6 +3543,10 @@ export declare namespace CustomConfigurationInput {
3519
3543
  selfManagedConfiguration?: never;
3520
3544
  $unknown: [string, any];
3521
3545
  }
3546
+ /**
3547
+ * @deprecated unused in schema-serde mode.
3548
+ *
3549
+ */
3522
3550
  interface Visitor<T> {
3523
3551
  semanticOverride: (value: SemanticOverrideConfigurationInput) => T;
3524
3552
  summaryOverride: (value: SummaryOverrideConfigurationInput) => T;
@@ -3526,7 +3554,6 @@ export declare namespace CustomConfigurationInput {
3526
3554
  selfManagedConfiguration: (value: SelfManagedConfigurationInput) => T;
3527
3555
  _: (name: string, value: any) => T;
3528
3556
  }
3529
- const visit: <T>(value: CustomConfigurationInput, visitor: Visitor<T>) => T;
3530
3557
  }
3531
3558
  /**
3532
3559
  * <p>Input for creating a custom memory strategy.</p>
@@ -3680,6 +3707,10 @@ export declare namespace MemoryStrategyInput {
3680
3707
  customMemoryStrategy?: never;
3681
3708
  $unknown: [string, any];
3682
3709
  }
3710
+ /**
3711
+ * @deprecated unused in schema-serde mode.
3712
+ *
3713
+ */
3683
3714
  interface Visitor<T> {
3684
3715
  semanticMemoryStrategy: (value: SemanticMemoryStrategyInput) => T;
3685
3716
  summaryMemoryStrategy: (value: SummaryMemoryStrategyInput) => T;
@@ -3687,7 +3718,6 @@ export declare namespace MemoryStrategyInput {
3687
3718
  customMemoryStrategy: (value: CustomMemoryStrategyInput) => T;
3688
3719
  _: (name: string, value: any) => T;
3689
3720
  }
3690
- const visit: <T>(value: MemoryStrategyInput, visitor: Visitor<T>) => T;
3691
3721
  }
3692
3722
  /**
3693
3723
  * @public
@@ -3844,13 +3874,16 @@ export declare namespace CustomConsolidationConfiguration {
3844
3874
  userPreferenceConsolidationOverride?: never;
3845
3875
  $unknown: [string, any];
3846
3876
  }
3877
+ /**
3878
+ * @deprecated unused in schema-serde mode.
3879
+ *
3880
+ */
3847
3881
  interface Visitor<T> {
3848
3882
  semanticConsolidationOverride: (value: SemanticConsolidationOverride) => T;
3849
3883
  summaryConsolidationOverride: (value: SummaryConsolidationOverride) => T;
3850
3884
  userPreferenceConsolidationOverride: (value: UserPreferenceConsolidationOverride) => T;
3851
3885
  _: (name: string, value: any) => T;
3852
3886
  }
3853
- const visit: <T>(value: CustomConsolidationConfiguration, visitor: Visitor<T>) => T;
3854
3887
  }
3855
3888
  /**
3856
3889
  * <p>Contains consolidation configuration information for a memory strategy.</p>
@@ -3876,11 +3909,14 @@ export declare namespace ConsolidationConfiguration {
3876
3909
  customConsolidationConfiguration?: never;
3877
3910
  $unknown: [string, any];
3878
3911
  }
3912
+ /**
3913
+ * @deprecated unused in schema-serde mode.
3914
+ *
3915
+ */
3879
3916
  interface Visitor<T> {
3880
3917
  customConsolidationConfiguration: (value: CustomConsolidationConfiguration) => T;
3881
3918
  _: (name: string, value: any) => T;
3882
3919
  }
3883
- const visit: <T>(value: ConsolidationConfiguration, visitor: Visitor<T>) => T;
3884
3920
  }
3885
3921
  /**
3886
3922
  * <p>Contains semantic extraction override configuration.</p>
@@ -3949,12 +3985,15 @@ export declare namespace CustomExtractionConfiguration {
3949
3985
  userPreferenceExtractionOverride?: never;
3950
3986
  $unknown: [string, any];
3951
3987
  }
3988
+ /**
3989
+ * @deprecated unused in schema-serde mode.
3990
+ *
3991
+ */
3952
3992
  interface Visitor<T> {
3953
3993
  semanticExtractionOverride: (value: SemanticExtractionOverride) => T;
3954
3994
  userPreferenceExtractionOverride: (value: UserPreferenceExtractionOverride) => T;
3955
3995
  _: (name: string, value: any) => T;
3956
3996
  }
3957
- const visit: <T>(value: CustomExtractionConfiguration, visitor: Visitor<T>) => T;
3958
3997
  }
3959
3998
  /**
3960
3999
  * <p>Contains extraction configuration information for a memory strategy.</p>
@@ -3980,11 +4019,14 @@ export declare namespace ExtractionConfiguration {
3980
4019
  customExtractionConfiguration?: never;
3981
4020
  $unknown: [string, any];
3982
4021
  }
4022
+ /**
4023
+ * @deprecated unused in schema-serde mode.
4024
+ *
4025
+ */
3983
4026
  interface Visitor<T> {
3984
4027
  customExtractionConfiguration: (value: CustomExtractionConfiguration) => T;
3985
4028
  _: (name: string, value: any) => T;
3986
4029
  }
3987
- const visit: <T>(value: ExtractionConfiguration, visitor: Visitor<T>) => T;
3988
4030
  }
3989
4031
  /**
3990
4032
  * <p>The configuration to invoke a self-managed memory processing pipeline with.</p>
@@ -4083,13 +4125,16 @@ export declare namespace TriggerCondition {
4083
4125
  timeBasedTrigger?: never;
4084
4126
  $unknown: [string, any];
4085
4127
  }
4128
+ /**
4129
+ * @deprecated unused in schema-serde mode.
4130
+ *
4131
+ */
4086
4132
  interface Visitor<T> {
4087
4133
  messageBasedTrigger: (value: MessageBasedTrigger) => T;
4088
4134
  tokenBasedTrigger: (value: TokenBasedTrigger) => T;
4089
4135
  timeBasedTrigger: (value: TimeBasedTrigger) => T;
4090
4136
  _: (name: string, value: any) => T;
4091
4137
  }
4092
- const visit: <T>(value: TriggerCondition, visitor: Visitor<T>) => T;
4093
4138
  }
4094
4139
  /**
4095
4140
  * <p>A configuration for a self-managed memory strategy.</p>
@@ -4503,13 +4548,16 @@ export declare namespace CustomConsolidationConfigurationInput {
4503
4548
  userPreferenceConsolidationOverride?: never;
4504
4549
  $unknown: [string, any];
4505
4550
  }
4551
+ /**
4552
+ * @deprecated unused in schema-serde mode.
4553
+ *
4554
+ */
4506
4555
  interface Visitor<T> {
4507
4556
  semanticConsolidationOverride: (value: SemanticOverrideConsolidationConfigurationInput) => T;
4508
4557
  summaryConsolidationOverride: (value: SummaryOverrideConsolidationConfigurationInput) => T;
4509
4558
  userPreferenceConsolidationOverride: (value: UserPreferenceOverrideConsolidationConfigurationInput) => T;
4510
4559
  _: (name: string, value: any) => T;
4511
4560
  }
4512
- const visit: <T>(value: CustomConsolidationConfigurationInput, visitor: Visitor<T>) => T;
4513
4561
  }
4514
4562
  /**
4515
4563
  * <p>Contains information for modifying a consolidation configuration.</p>
@@ -4535,11 +4583,14 @@ export declare namespace ModifyConsolidationConfiguration {
4535
4583
  customConsolidationConfiguration?: never;
4536
4584
  $unknown: [string, any];
4537
4585
  }
4586
+ /**
4587
+ * @deprecated unused in schema-serde mode.
4588
+ *
4589
+ */
4538
4590
  interface Visitor<T> {
4539
4591
  customConsolidationConfiguration: (value: CustomConsolidationConfigurationInput) => T;
4540
4592
  _: (name: string, value: any) => T;
4541
4593
  }
4542
- const visit: <T>(value: ModifyConsolidationConfiguration, visitor: Visitor<T>) => T;
4543
4594
  }
4544
4595
  /**
4545
4596
  * <p>Input for a custom extraction configuration.</p>
@@ -4576,12 +4627,15 @@ export declare namespace CustomExtractionConfigurationInput {
4576
4627
  userPreferenceExtractionOverride?: never;
4577
4628
  $unknown: [string, any];
4578
4629
  }
4630
+ /**
4631
+ * @deprecated unused in schema-serde mode.
4632
+ *
4633
+ */
4579
4634
  interface Visitor<T> {
4580
4635
  semanticExtractionOverride: (value: SemanticOverrideExtractionConfigurationInput) => T;
4581
4636
  userPreferenceExtractionOverride: (value: UserPreferenceOverrideExtractionConfigurationInput) => T;
4582
4637
  _: (name: string, value: any) => T;
4583
4638
  }
4584
- const visit: <T>(value: CustomExtractionConfigurationInput, visitor: Visitor<T>) => T;
4585
4639
  }
4586
4640
  /**
4587
4641
  * <p>Contains information for modifying an extraction configuration.</p>
@@ -4607,11 +4661,14 @@ export declare namespace ModifyExtractionConfiguration {
4607
4661
  customExtractionConfiguration?: never;
4608
4662
  $unknown: [string, any];
4609
4663
  }
4664
+ /**
4665
+ * @deprecated unused in schema-serde mode.
4666
+ *
4667
+ */
4610
4668
  interface Visitor<T> {
4611
4669
  customExtractionConfiguration: (value: CustomExtractionConfigurationInput) => T;
4612
4670
  _: (name: string, value: any) => T;
4613
4671
  }
4614
- const visit: <T>(value: ModifyExtractionConfiguration, visitor: Visitor<T>) => T;
4615
4672
  }
4616
4673
  /**
4617
4674
  * <p>The configuration for updating invocation settings.</p>
@@ -4880,12 +4937,15 @@ export declare namespace Oauth2Discovery {
4880
4937
  authorizationServerMetadata?: never;
4881
4938
  $unknown: [string, any];
4882
4939
  }
4940
+ /**
4941
+ * @deprecated unused in schema-serde mode.
4942
+ *
4943
+ */
4883
4944
  interface Visitor<T> {
4884
4945
  discoveryUrl: (value: string) => T;
4885
4946
  authorizationServerMetadata: (value: Oauth2AuthorizationServerMetadata) => T;
4886
4947
  _: (name: string, value: any) => T;
4887
4948
  }
4888
- const visit: <T>(value: Oauth2Discovery, visitor: Visitor<T>) => T;
4889
4949
  }
4890
4950
  /**
4891
4951
  * <p>Input configuration for a custom OAuth2 provider.</p>
@@ -5208,6 +5268,10 @@ export declare namespace Oauth2ProviderConfigInput {
5208
5268
  includedOauth2ProviderConfig?: never;
5209
5269
  $unknown: [string, any];
5210
5270
  }
5271
+ /**
5272
+ * @deprecated unused in schema-serde mode.
5273
+ *
5274
+ */
5211
5275
  interface Visitor<T> {
5212
5276
  customOauth2ProviderConfig: (value: CustomOauth2ProviderConfigInput) => T;
5213
5277
  googleOauth2ProviderConfig: (value: GoogleOauth2ProviderConfigInput) => T;
@@ -5220,7 +5284,6 @@ export declare namespace Oauth2ProviderConfigInput {
5220
5284
  includedOauth2ProviderConfig: (value: IncludedOauth2ProviderConfigInput) => T;
5221
5285
  _: (name: string, value: any) => T;
5222
5286
  }
5223
- const visit: <T>(value: Oauth2ProviderConfigInput, visitor: Visitor<T>) => T;
5224
5287
  }
5225
5288
  /**
5226
5289
  * @public
@@ -5559,6 +5622,10 @@ export declare namespace Oauth2ProviderConfigOutput {
5559
5622
  includedOauth2ProviderConfig?: never;
5560
5623
  $unknown: [string, any];
5561
5624
  }
5625
+ /**
5626
+ * @deprecated unused in schema-serde mode.
5627
+ *
5628
+ */
5562
5629
  interface Visitor<T> {
5563
5630
  customOauth2ProviderConfig: (value: CustomOauth2ProviderConfigOutput) => T;
5564
5631
  googleOauth2ProviderConfig: (value: GoogleOauth2ProviderConfigOutput) => T;
@@ -5571,7 +5638,6 @@ export declare namespace Oauth2ProviderConfigOutput {
5571
5638
  includedOauth2ProviderConfig: (value: IncludedOauth2ProviderConfigOutput) => T;
5572
5639
  _: (name: string, value: any) => T;
5573
5640
  }
5574
- const visit: <T>(value: Oauth2ProviderConfigOutput, visitor: Visitor<T>) => T;
5575
5641
  }
5576
5642
  /**
5577
5643
  * @public
@@ -6164,12 +6230,15 @@ export declare namespace ToolSchema {
6164
6230
  inlinePayload?: never;
6165
6231
  $unknown: [string, any];
6166
6232
  }
6233
+ /**
6234
+ * @deprecated unused in schema-serde mode.
6235
+ *
6236
+ */
6167
6237
  interface Visitor<T> {
6168
6238
  s3: (value: S3Configuration) => T;
6169
6239
  inlinePayload: (value: ToolDefinition[]) => T;
6170
6240
  _: (name: string, value: any) => T;
6171
6241
  }
6172
- const visit: <T>(value: ToolSchema, visitor: Visitor<T>) => T;
6173
6242
  }
6174
6243
  /**
6175
6244
  * <p>The Lambda configuration for a Model Context Protocol target. This structure defines how the gateway uses a Lambda function to communicate with the target.</p>
@@ -6250,6 +6319,10 @@ export declare namespace McpTargetConfiguration {
6250
6319
  mcpServer?: never;
6251
6320
  $unknown: [string, any];
6252
6321
  }
6322
+ /**
6323
+ * @deprecated unused in schema-serde mode.
6324
+ *
6325
+ */
6253
6326
  interface Visitor<T> {
6254
6327
  openApiSchema: (value: ApiSchemaConfiguration) => T;
6255
6328
  smithyModel: (value: ApiSchemaConfiguration) => T;
@@ -6257,7 +6330,6 @@ export declare namespace McpTargetConfiguration {
6257
6330
  mcpServer: (value: McpServerTargetConfiguration) => T;
6258
6331
  _: (name: string, value: any) => T;
6259
6332
  }
6260
- const visit: <T>(value: McpTargetConfiguration, visitor: Visitor<T>) => T;
6261
6333
  }
6262
6334
  /**
6263
6335
  * <p>The configuration for a gateway target. This structure defines how the gateway connects to and interacts with the target endpoint.</p>
@@ -6283,11 +6355,14 @@ export declare namespace TargetConfiguration {
6283
6355
  mcp?: never;
6284
6356
  $unknown: [string, any];
6285
6357
  }
6358
+ /**
6359
+ * @deprecated unused in schema-serde mode.
6360
+ *
6361
+ */
6286
6362
  interface Visitor<T> {
6287
6363
  mcp: (value: McpTargetConfiguration) => T;
6288
6364
  _: (name: string, value: any) => T;
6289
6365
  }
6290
- const visit: <T>(value: TargetConfiguration, visitor: Visitor<T>) => T;
6291
6366
  }
6292
6367
  /**
6293
6368
  * @public
@@ -180,7 +180,6 @@ export declare namespace Code {
180
180
  s3: (value: S3Location) => T;
181
181
  _: (name: string, value: any) => T;
182
182
  }
183
- const visit: <T>(value: Code, visitor: Visitor<T>) => T;
184
183
  }
185
184
  export interface CodeConfiguration {
186
185
  code: Code | undefined;
@@ -215,7 +214,6 @@ export declare namespace AgentRuntimeArtifact {
215
214
  codeConfiguration: (value: CodeConfiguration) => T;
216
215
  _: (name: string, value: any) => T;
217
216
  }
218
- const visit: <T>(value: AgentRuntimeArtifact, visitor: Visitor<T>) => T;
219
217
  }
220
218
  export interface CustomJWTAuthorizerConfiguration {
221
219
  discoveryUrl: string | undefined;
@@ -238,7 +236,6 @@ export declare namespace AuthorizerConfiguration {
238
236
  customJWTAuthorizer: (value: CustomJWTAuthorizerConfiguration) => T;
239
237
  _: (name: string, value: any) => T;
240
238
  }
241
- const visit: <T>(value: AuthorizerConfiguration, visitor: Visitor<T>) => T;
242
239
  }
243
240
  export interface LifecycleConfiguration {
244
241
  idleRuntimeSessionTimeout?: number | undefined;
@@ -283,7 +280,6 @@ export declare namespace RequestHeaderConfiguration {
283
280
  requestHeaderAllowlist: (value: string[]) => T;
284
281
  _: (name: string, value: any) => T;
285
282
  }
286
- const visit: <T>(value: RequestHeaderConfiguration, visitor: Visitor<T>) => T;
287
283
  }
288
284
  export interface CreateAgentRuntimeRequest {
289
285
  agentRuntimeName: string | undefined;
@@ -682,10 +678,6 @@ export declare namespace GatewayProtocolConfiguration {
682
678
  mcp: (value: MCPGatewayConfiguration) => T;
683
679
  _: (name: string, value: any) => T;
684
680
  }
685
- const visit: <T>(
686
- value: GatewayProtocolConfiguration,
687
- visitor: Visitor<T>
688
- ) => T;
689
681
  }
690
682
  export declare const GatewayProtocolType: {
691
683
  readonly MCP: "MCP";
@@ -854,7 +846,6 @@ export declare namespace CredentialProvider {
854
846
  apiKeyCredentialProvider: (value: GatewayApiKeyCredentialProvider) => T;
855
847
  _: (name: string, value: any) => T;
856
848
  }
857
- const visit: <T>(value: CredentialProvider, visitor: Visitor<T>) => T;
858
849
  }
859
850
  export declare const CredentialProviderType: {
860
851
  readonly API_KEY: "API_KEY";
@@ -908,7 +899,6 @@ export declare namespace ApiSchemaConfiguration {
908
899
  inlinePayload: (value: string) => T;
909
900
  _: (name: string, value: any) => T;
910
901
  }
911
- const visit: <T>(value: ApiSchemaConfiguration, visitor: Visitor<T>) => T;
912
902
  }
913
903
  export declare const TargetStatus: {
914
904
  readonly CREATING: "CREATING";
@@ -1028,7 +1018,6 @@ export declare namespace TriggerConditionInput {
1028
1018
  timeBasedTrigger: (value: TimeBasedTriggerInput) => T;
1029
1019
  _: (name: string, value: any) => T;
1030
1020
  }
1031
- const visit: <T>(value: TriggerConditionInput, visitor: Visitor<T>) => T;
1032
1021
  }
1033
1022
  export interface SelfManagedConfigurationInput {
1034
1023
  triggerConditions?: TriggerConditionInput[] | undefined;
@@ -1119,7 +1108,6 @@ export declare namespace CustomConfigurationInput {
1119
1108
  selfManagedConfiguration: (value: SelfManagedConfigurationInput) => T;
1120
1109
  _: (name: string, value: any) => T;
1121
1110
  }
1122
- const visit: <T>(value: CustomConfigurationInput, visitor: Visitor<T>) => T;
1123
1111
  }
1124
1112
  export interface CustomMemoryStrategyInput {
1125
1113
  name: string | undefined;
@@ -1193,7 +1181,6 @@ export declare namespace MemoryStrategyInput {
1193
1181
  customMemoryStrategy: (value: CustomMemoryStrategyInput) => T;
1194
1182
  _: (name: string, value: any) => T;
1195
1183
  }
1196
- const visit: <T>(value: MemoryStrategyInput, visitor: Visitor<T>) => T;
1197
1184
  }
1198
1185
  export interface CreateMemoryInput {
1199
1186
  clientToken?: string | undefined;
@@ -1262,10 +1249,6 @@ export declare namespace CustomConsolidationConfiguration {
1262
1249
  ) => T;
1263
1250
  _: (name: string, value: any) => T;
1264
1251
  }
1265
- const visit: <T>(
1266
- value: CustomConsolidationConfiguration,
1267
- visitor: Visitor<T>
1268
- ) => T;
1269
1252
  }
1270
1253
  export type ConsolidationConfiguration =
1271
1254
  | ConsolidationConfiguration.CustomConsolidationConfigurationMember
@@ -1285,7 +1268,6 @@ export declare namespace ConsolidationConfiguration {
1285
1268
  ) => T;
1286
1269
  _: (name: string, value: any) => T;
1287
1270
  }
1288
- const visit: <T>(value: ConsolidationConfiguration, visitor: Visitor<T>) => T;
1289
1271
  }
1290
1272
  export interface SemanticExtractionOverride {
1291
1273
  appendToPrompt: string | undefined;
@@ -1322,10 +1304,6 @@ export declare namespace CustomExtractionConfiguration {
1322
1304
  ) => T;
1323
1305
  _: (name: string, value: any) => T;
1324
1306
  }
1325
- const visit: <T>(
1326
- value: CustomExtractionConfiguration,
1327
- visitor: Visitor<T>
1328
- ) => T;
1329
1307
  }
1330
1308
  export type ExtractionConfiguration =
1331
1309
  | ExtractionConfiguration.CustomExtractionConfigurationMember
@@ -1343,7 +1321,6 @@ export declare namespace ExtractionConfiguration {
1343
1321
  customExtractionConfiguration: (value: CustomExtractionConfiguration) => T;
1344
1322
  _: (name: string, value: any) => T;
1345
1323
  }
1346
- const visit: <T>(value: ExtractionConfiguration, visitor: Visitor<T>) => T;
1347
1324
  }
1348
1325
  export interface InvocationConfiguration {
1349
1326
  topicArn: string | undefined;
@@ -1394,7 +1371,6 @@ export declare namespace TriggerCondition {
1394
1371
  timeBasedTrigger: (value: TimeBasedTrigger) => T;
1395
1372
  _: (name: string, value: any) => T;
1396
1373
  }
1397
- const visit: <T>(value: TriggerCondition, visitor: Visitor<T>) => T;
1398
1374
  }
1399
1375
  export interface SelfManagedConfiguration {
1400
1376
  triggerConditions: TriggerCondition[] | undefined;
@@ -1544,10 +1520,6 @@ export declare namespace CustomConsolidationConfigurationInput {
1544
1520
  ) => T;
1545
1521
  _: (name: string, value: any) => T;
1546
1522
  }
1547
- const visit: <T>(
1548
- value: CustomConsolidationConfigurationInput,
1549
- visitor: Visitor<T>
1550
- ) => T;
1551
1523
  }
1552
1524
  export type ModifyConsolidationConfiguration =
1553
1525
  | ModifyConsolidationConfiguration.CustomConsolidationConfigurationMember
@@ -1567,10 +1539,6 @@ export declare namespace ModifyConsolidationConfiguration {
1567
1539
  ) => T;
1568
1540
  _: (name: string, value: any) => T;
1569
1541
  }
1570
- const visit: <T>(
1571
- value: ModifyConsolidationConfiguration,
1572
- visitor: Visitor<T>
1573
- ) => T;
1574
1542
  }
1575
1543
  export type CustomExtractionConfigurationInput =
1576
1544
  | CustomExtractionConfigurationInput.SemanticExtractionOverrideMember
@@ -1601,10 +1569,6 @@ export declare namespace CustomExtractionConfigurationInput {
1601
1569
  ) => T;
1602
1570
  _: (name: string, value: any) => T;
1603
1571
  }
1604
- const visit: <T>(
1605
- value: CustomExtractionConfigurationInput,
1606
- visitor: Visitor<T>
1607
- ) => T;
1608
1572
  }
1609
1573
  export type ModifyExtractionConfiguration =
1610
1574
  | ModifyExtractionConfiguration.CustomExtractionConfigurationMember
@@ -1624,10 +1588,6 @@ export declare namespace ModifyExtractionConfiguration {
1624
1588
  ) => T;
1625
1589
  _: (name: string, value: any) => T;
1626
1590
  }
1627
- const visit: <T>(
1628
- value: ModifyExtractionConfiguration,
1629
- visitor: Visitor<T>
1630
- ) => T;
1631
1591
  }
1632
1592
  export interface ModifyInvocationConfigurationInput {
1633
1593
  topicArn?: string | undefined;
@@ -1732,7 +1692,6 @@ export declare namespace Oauth2Discovery {
1732
1692
  ) => T;
1733
1693
  _: (name: string, value: any) => T;
1734
1694
  }
1735
- const visit: <T>(value: Oauth2Discovery, visitor: Visitor<T>) => T;
1736
1695
  }
1737
1696
  export interface CustomOauth2ProviderConfigInput {
1738
1697
  oauthDiscovery: Oauth2Discovery | undefined;
@@ -1925,7 +1884,6 @@ export declare namespace Oauth2ProviderConfigInput {
1925
1884
  ) => T;
1926
1885
  _: (name: string, value: any) => T;
1927
1886
  }
1928
- const visit: <T>(value: Oauth2ProviderConfigInput, visitor: Visitor<T>) => T;
1929
1887
  }
1930
1888
  export interface CreateOauth2CredentialProviderRequest {
1931
1889
  name: string | undefined;
@@ -2123,7 +2081,6 @@ export declare namespace Oauth2ProviderConfigOutput {
2123
2081
  ) => T;
2124
2082
  _: (name: string, value: any) => T;
2125
2083
  }
2126
- const visit: <T>(value: Oauth2ProviderConfigOutput, visitor: Visitor<T>) => T;
2127
2084
  }
2128
2085
  export interface CreateOauth2CredentialProviderResponse {
2129
2086
  clientSecretArn: Secret | undefined;
@@ -2293,7 +2250,6 @@ export declare namespace ToolSchema {
2293
2250
  inlinePayload: (value: ToolDefinition[]) => T;
2294
2251
  _: (name: string, value: any) => T;
2295
2252
  }
2296
- const visit: <T>(value: ToolSchema, visitor: Visitor<T>) => T;
2297
2253
  }
2298
2254
  export interface McpLambdaTargetConfiguration {
2299
2255
  lambdaArn: string | undefined;
@@ -2348,7 +2304,6 @@ export declare namespace McpTargetConfiguration {
2348
2304
  mcpServer: (value: McpServerTargetConfiguration) => T;
2349
2305
  _: (name: string, value: any) => T;
2350
2306
  }
2351
- const visit: <T>(value: McpTargetConfiguration, visitor: Visitor<T>) => T;
2352
2307
  }
2353
2308
  export type TargetConfiguration =
2354
2309
  | TargetConfiguration.McpMember
@@ -2366,7 +2321,6 @@ export declare namespace TargetConfiguration {
2366
2321
  mcp: (value: McpTargetConfiguration) => T;
2367
2322
  _: (name: string, value: any) => T;
2368
2323
  }
2369
- const visit: <T>(value: TargetConfiguration, visitor: Visitor<T>) => T;
2370
2324
  }
2371
2325
  export interface CreateGatewayTargetRequest {
2372
2326
  gatewayIdentifier: string | undefined;