@aws-sdk/client-bedrock-agentcore 3.1110.0 → 3.1112.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.
@@ -1,83 +1,30 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
2
  import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient";
3
3
  export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider:
10
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
- defaultUserAgentProvider: (
13
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
14
- ) => Promise<import("@smithy/types").UserAgent>;
15
- eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
16
- maxAttempts: number | import("@smithy/types").Provider<number>;
17
- region: string | import("@smithy/types").Provider<any>;
18
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
19
- retryMode: string | import("@smithy/types").Provider<string>;
20
- streamCollector: (
21
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
22
- ) => Promise<Uint8Array>;
23
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
24
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
25
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
- cacheMiddleware?: boolean | undefined;
28
- protocol:
29
- | import("@smithy/types").ClientProtocol<any, any>
30
- | import("@smithy/types").ClientProtocolCtor<any, any>
31
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
32
- protocolSettings: {
33
- defaultNamespace?: string;
34
- [setting: string]: unknown;
35
- };
36
- apiVersion: string;
37
- sha256: import("@smithy/types").HashConstructor;
38
- urlParser: import("@smithy/types").UrlParser;
39
- base64Decoder: import("@smithy/types").Decoder;
40
- base64Encoder: (_input: Uint8Array | string) => string;
41
- utf8Decoder: import("@smithy/types").Decoder;
42
- utf8Encoder: (input: Uint8Array | string) => string;
43
- disableHostPrefix: boolean;
44
- serviceId: string;
45
- profile?: string;
46
- logger: import("@smithy/types").Logger;
47
- extensions: import("./runtimeExtensions").RuntimeExtension[];
48
- sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
4
+ cacheMiddleware?: boolean;
49
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
50
6
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
51
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
52
7
  endpoint?:
53
8
  | ((
54
9
  | string
55
10
  | import("@smithy/types").Endpoint
56
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
11
  | import("@smithy/types").EndpointV2
12
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
13
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
59
14
  ) &
60
15
  (
61
16
  | string
62
- | import("@smithy/types").Provider<string>
63
17
  | import("@smithy/types").Endpoint
64
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
18
  | import("@smithy/types").EndpointV2
19
+ | import("@smithy/types").Provider<string>
20
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
21
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
67
22
  ))
68
23
  | undefined;
69
- endpointProvider: (
70
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
71
- context?: {
72
- logger?: import("@smithy/types").Logger;
73
- },
74
- ) => import("@smithy/types").EndpointV2;
75
24
  tls?: boolean;
76
25
  ignoreConfiguredEndpointUrls?: boolean;
77
26
  serviceConfiguredEndpoint?: never;
78
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
79
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
27
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
81
28
  credentials?:
82
29
  | import("@smithy/types").AwsCredentialIdentity
83
30
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -94,4 +41,55 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) =>
94
41
  import("@smithy/signature-v4").SignatureV4CryptoInit,
95
42
  ) => import("@smithy/types").RequestSigner;
96
43
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
45
+ apiVersion: string;
46
+ base64Decoder: import("@smithy/types").Decoder;
47
+ base64Encoder: (_input: Uint8Array | string) => string;
48
+ disableHostPrefix: boolean;
49
+ endpointProvider: (
50
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
51
+ context?: {
52
+ logger?: import("@smithy/types").Logger;
53
+ },
54
+ ) => import("@smithy/types").EndpointV2;
55
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
56
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
57
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
58
+ logger: import("@smithy/types").Logger;
59
+ protocol:
60
+ | import("@smithy/types").$ClientProtocol<any, any>
61
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
62
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
63
+ protocolSettings: {
64
+ [setting: string]: unknown;
65
+ defaultNamespace?: string;
66
+ };
67
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
68
+ serviceId: string;
69
+ sha256: import("@smithy/types").HashConstructor;
70
+ urlParser: import("@smithy/types").UrlParser;
71
+ utf8Decoder: import("@smithy/types").Decoder;
72
+ utf8Encoder: (input: Uint8Array | string) => string;
73
+ profile?: string;
74
+ runtime: string;
75
+ defaultsMode: import("@smithy/types").Provider<
76
+ import("@smithy/core/client").ResolvedDefaultsMode
77
+ >;
78
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
79
+ credentialDefaultProvider:
80
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
81
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
82
+ defaultUserAgentProvider: (
83
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
84
+ ) => Promise<import("@smithy/types").UserAgent>;
85
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
86
+ maxAttempts: number | import("@smithy/types").Provider<number>;
87
+ region: string | import("@smithy/types").Provider<any>;
88
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
89
+ retryMode: string | import("@smithy/types").Provider<string>;
90
+ streamCollector: (
91
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
92
+ ) => Promise<Uint8Array>;
93
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
94
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
97
95
  };
@@ -1,83 +1,29 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
2
  import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient";
3
3
  export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider:
11
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
- | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
- ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
- defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
- ) => Promise<import("@smithy/types").UserAgent>;
18
- eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
19
- maxAttempts: number | import("@smithy/types").Provider<number>;
20
- region: string | import("@smithy/types").Provider<string>;
21
- requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
22
- retryMode: string | import("@smithy/types").Provider<string>;
23
- streamCollector: (
24
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
25
- ) => Promise<Uint8Array>;
26
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
- userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
29
- cacheMiddleware?: boolean | undefined;
30
- protocol:
31
- | import("@smithy/types").ClientProtocol<any, any>
32
- | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
34
- protocolSettings: {
35
- defaultNamespace?: string;
36
- [setting: string]: unknown;
37
- };
38
- apiVersion: string;
39
- sha256: import("@smithy/types").HashConstructor;
40
- urlParser: import("@smithy/types").UrlParser;
41
- base64Decoder: import("@smithy/types").Decoder;
42
- base64Encoder: (_input: Uint8Array | string) => string;
43
- utf8Decoder: import("@smithy/types").Decoder;
44
- utf8Encoder: (input: Uint8Array | string) => string;
45
- disableHostPrefix: boolean;
46
- serviceId: string;
47
- profile?: string;
48
- logger: import("@smithy/types").Logger;
49
- extensions: import("./runtimeExtensions").RuntimeExtension[];
50
- sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
4
+ cacheMiddleware?: boolean;
51
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
52
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
53
6
  endpoint?:
54
7
  | ((
55
8
  | string
56
9
  | import("@smithy/types").Endpoint
57
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
60
13
  ) &
61
14
  (
62
15
  | string
63
- | import("@smithy/types").Provider<string>
64
16
  | import("@smithy/types").Endpoint
65
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
68
21
  ))
69
22
  | undefined;
70
- endpointProvider: (
71
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
72
- context?: {
73
- logger?: import("@smithy/types").Logger;
74
- },
75
- ) => import("@smithy/types").EndpointV2;
76
23
  tls?: boolean;
77
24
  ignoreConfiguredEndpointUrls?: boolean;
78
25
  serviceConfiguredEndpoint?: never;
79
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
81
27
  credentials?:
82
28
  | import("@smithy/types").AwsCredentialIdentity
83
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -94,4 +40,58 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) =>
94
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
95
41
  ) => import("@smithy/types").RequestSigner;
96
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ apiVersion: string;
44
+ base64Decoder: import("@smithy/types").Decoder;
45
+ base64Encoder: (_input: Uint8Array | string) => string;
46
+ disableHostPrefix: boolean;
47
+ endpointProvider: (
48
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
49
+ context?: {
50
+ logger?: import("@smithy/types").Logger;
51
+ },
52
+ ) => import("@smithy/types").EndpointV2;
53
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
54
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
55
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
56
+ logger: import("@smithy/types").Logger;
57
+ protocol:
58
+ | import("@smithy/types").$ClientProtocol<any, any>
59
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
60
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
61
+ protocolSettings: {
62
+ [setting: string]: unknown;
63
+ defaultNamespace?: string;
64
+ };
65
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
66
+ serviceId: string;
67
+ sha256: import("@smithy/types").HashConstructor;
68
+ urlParser: import("@smithy/types").UrlParser;
69
+ utf8Decoder: import("@smithy/types").Decoder;
70
+ utf8Encoder: (input: Uint8Array | string) => string;
71
+ runtime: string;
72
+ defaultsMode: import("@smithy/types").Provider<
73
+ import("@smithy/core/client").ResolvedDefaultsMode
74
+ >;
75
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
76
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
77
+ credentialDefaultProvider:
78
+ | ((
79
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
80
+ ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
81
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
82
+ defaultUserAgentProvider: (
83
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
84
+ ) => Promise<import("@smithy/types").UserAgent>;
85
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
86
+ maxAttempts: number | import("@smithy/types").Provider<number>;
87
+ region: string | import("@smithy/types").Provider<string>;
88
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
89
+ retryMode: string | import("@smithy/types").Provider<string>;
90
+ streamCollector: (
91
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
92
+ ) => Promise<Uint8Array>;
93
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
94
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
95
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
96
+ profile?: string;
97
97
  };
@@ -1,87 +1,29 @@
1
1
  import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient";
2
2
  export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) => {
3
- runtime: string;
4
- requestHandler:
5
- | import("@smithy/types").NodeHttpHandlerOptions
6
- | import("@smithy/types").FetchHttpHandlerOptions
7
- | Record<string, unknown>
8
- | import("@smithy/core/protocols").HttpHandler<any>
9
- | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
3
  cacheMiddleware?: boolean;
11
- protocol:
12
- | import("@smithy/types").ClientProtocol<any, any>
13
- | import("@smithy/types").ClientProtocolCtor<any, any>
14
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
15
- protocolSettings: {
16
- defaultNamespace?: string;
17
- [setting: string]: unknown;
18
- };
19
- apiVersion: string;
20
- sha256: import("@smithy/types").HashConstructor;
21
- urlParser: import("@smithy/types").UrlParser;
22
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
- streamCollector: (
24
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
25
- ) => Promise<Uint8Array>;
26
- base64Decoder: import("@smithy/types").Decoder;
27
- base64Encoder: (_input: Uint8Array | string) => string;
28
- utf8Decoder: import("@smithy/types").Decoder;
29
- utf8Encoder: (input: Uint8Array | string) => string;
30
- disableHostPrefix: boolean;
31
- serviceId: string;
32
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
35
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
36
- region: string | import("@smithy/types").Provider<any>;
37
- profile?: string;
38
- defaultUserAgentProvider: (
39
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
40
- ) => Promise<import("@smithy/types").UserAgent>;
41
- credentialDefaultProvider:
42
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
43
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
44
- maxAttempts: number | import("@smithy/types").Provider<number>;
45
- retryMode: string | import("@smithy/types").Provider<string>;
46
- logger: import("@smithy/types").Logger;
47
- extensions: import("./runtimeExtensions").RuntimeExtension[];
48
- eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
49
- defaultsMode:
50
- | import("@smithy/core/client").DefaultsMode
51
- | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
52
- sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
53
4
  customUserAgent?: string | import("@smithy/types").UserAgent;
54
5
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
55
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
56
6
  endpoint?:
57
7
  | ((
58
8
  | string
59
9
  | import("@smithy/types").Endpoint
60
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
61
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
63
13
  ) &
64
14
  (
65
15
  | string
66
- | import("@smithy/types").Provider<string>
67
16
  | import("@smithy/types").Endpoint
68
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
69
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
70
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
71
21
  ))
72
22
  | undefined;
73
- endpointProvider: (
74
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
75
- context?: {
76
- logger?: import("@smithy/types").Logger;
77
- },
78
- ) => import("@smithy/types").EndpointV2;
79
23
  tls?: boolean;
80
24
  ignoreConfiguredEndpointUrls?: boolean;
81
25
  serviceConfiguredEndpoint?: never;
82
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
83
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
84
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
85
27
  credentials?:
86
28
  | import("@smithy/types").AwsCredentialIdentity
87
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -98,4 +40,60 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) =>
98
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
99
41
  ) => import("@smithy/types").RequestSigner;
100
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
44
+ apiVersion: string;
45
+ base64Decoder: import("@smithy/types").Decoder;
46
+ base64Encoder: (_input: Uint8Array | string) => string;
47
+ disableHostPrefix: boolean;
48
+ endpointProvider: (
49
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger;
52
+ },
53
+ ) => import("@smithy/types").EndpointV2;
54
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
56
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
57
+ logger: import("@smithy/types").Logger;
58
+ protocol:
59
+ | import("@smithy/types").$ClientProtocol<any, any>
60
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
61
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
62
+ protocolSettings: {
63
+ [setting: string]: unknown;
64
+ defaultNamespace?: string;
65
+ };
66
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
67
+ serviceId: string;
68
+ sha256: import("@smithy/types").HashConstructor;
69
+ urlParser: import("@smithy/types").UrlParser;
70
+ utf8Decoder: import("@smithy/types").Decoder;
71
+ utf8Encoder: (input: Uint8Array | string) => string;
72
+ profile?: string;
73
+ defaultsMode:
74
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
75
+ | import("@smithy/core/client").DefaultsMode;
76
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
77
+ credentialDefaultProvider:
78
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
79
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
80
+ defaultUserAgentProvider: (
81
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
82
+ ) => Promise<import("@smithy/types").UserAgent>;
83
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
84
+ maxAttempts: number | import("@smithy/types").Provider<number>;
85
+ region: string | import("@smithy/types").Provider<any>;
86
+ requestHandler:
87
+ | import("@smithy/fetch-http-handler").FetchHttpHandler
88
+ | import("@smithy/types").FetchHttpHandlerOptions
89
+ | import("@smithy/types").NodeHttpHandlerOptions
90
+ | Record<string, unknown>
91
+ | import("@smithy/core/protocols").HttpHandler<any>;
92
+ retryMode: string | import("@smithy/types").Provider<string>;
93
+ streamCollector: (
94
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
95
+ ) => Promise<Uint8Array>;
96
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
97
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
98
+ runtime: string;
101
99
  };
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) =>
6
6
  base64Encoder: (_input: Uint8Array | string) => string;
7
7
  disableHostPrefix: boolean;
8
8
  endpointProvider: (
9
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
12
  },
@@ -16,8 +16,8 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreClientConfig) =>
16
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
17
  logger: import("@smithy/types").Logger;
18
18
  protocol:
19
- | import("@smithy/types").ClientProtocol<any, any>
20
- | import("@smithy/types").ClientProtocolCtor<any, any>
19
+ | import("@smithy/types").$ClientProtocol<any, any>
20
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
21
21
  | typeof AwsRestJsonProtocol;
22
22
  protocolSettings: {
23
23
  [setting: string]: unknown;
@@ -16,6 +16,7 @@ export declare var RetryableConflictException$: StaticErrorSchema;
16
16
  export declare var RuntimeClientError$: StaticErrorSchema;
17
17
  export declare var ServiceException$: StaticErrorSchema;
18
18
  export declare var ServiceQuotaExceededException$: StaticErrorSchema;
19
+ export declare var SubscriptionRequiredException$: StaticErrorSchema;
19
20
  export declare var ThrottledException$: StaticErrorSchema;
20
21
  export declare var ThrottlingException$: StaticErrorSchema;
21
22
  export declare var UnauthorizedException$: StaticErrorSchema;
@@ -256,6 +257,8 @@ export declare var MouseMoveArguments$: StaticStructureSchema;
256
257
  export declare var MouseMoveResult$: StaticStructureSchema;
257
258
  export declare var MouseScrollArguments$: StaticStructureSchema;
258
259
  export declare var MouseScrollResult$: StaticStructureSchema;
260
+ export declare var MppPaymentInput$: StaticStructureSchema;
261
+ export declare var MppPaymentOutput$: StaticStructureSchema;
259
262
  export declare var OAuth2Authentication$: StaticStructureSchema;
260
263
  export declare var OAuthCredentialProvider$: StaticStructureSchema;
261
264
  export declare var OnlineEvaluationConfigSource$: StaticStructureSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore",
3
- "version": "3.1110.0",
3
+ "version": "3.1112.0",
4
4
  "description": "AWS SDK for JavaScript Bedrock Agentcore Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bedrock-agentcore",
6
6
  "license": "Apache-2.0",
@@ -46,9 +46,9 @@
46
46
  "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.7",
50
- "@aws-sdk/credential-provider-node": "^3.972.79",
51
- "@aws-sdk/types": "^3.974.3",
49
+ "@aws-sdk/core": "^3.977.8",
50
+ "@aws-sdk/credential-provider-node": "^3.972.80",
51
+ "@aws-sdk/types": "^3.974.4",
52
52
  "@smithy/core": "^3.31.1",
53
53
  "@smithy/fetch-http-handler": "^5.6.13",
54
54
  "@smithy/node-http-handler": "^4.9.13",
@@ -61,7 +61,7 @@
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "premove": "4.0.0",
64
- "typescript": "~6.0.3"
64
+ "typescript": "~7.0.2"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=20.0.0"