@aws-sdk/client-bedrock-data-automation 3.706.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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/BedrockDataAutomation.js +33 -0
  4. package/dist-cjs/BedrockDataAutomationClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateBlueprintCommand.js +27 -0
  8. package/dist-cjs/commands/CreateBlueprintVersionCommand.js +27 -0
  9. package/dist-cjs/commands/CreateDataAutomationProjectCommand.js +27 -0
  10. package/dist-cjs/commands/DeleteBlueprintCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteDataAutomationProjectCommand.js +26 -0
  12. package/dist-cjs/commands/GetBlueprintCommand.js +27 -0
  13. package/dist-cjs/commands/GetDataAutomationProjectCommand.js +27 -0
  14. package/dist-cjs/commands/ListBlueprintsCommand.js +27 -0
  15. package/dist-cjs/commands/ListDataAutomationProjectsCommand.js +27 -0
  16. package/dist-cjs/commands/UpdateBlueprintCommand.js +27 -0
  17. package/dist-cjs/commands/UpdateDataAutomationProjectCommand.js +27 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +11 -0
  24. package/dist-cjs/models/BedrockDataAutomationServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +252 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListBlueprintsPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDataAutomationProjectsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +560 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +50 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/BedrockDataAutomation.js +29 -0
  38. package/dist-es/BedrockDataAutomationClient.js +46 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateBlueprintCommand.js +23 -0
  42. package/dist-es/commands/CreateBlueprintVersionCommand.js +23 -0
  43. package/dist-es/commands/CreateDataAutomationProjectCommand.js +23 -0
  44. package/dist-es/commands/DeleteBlueprintCommand.js +22 -0
  45. package/dist-es/commands/DeleteDataAutomationProjectCommand.js +22 -0
  46. package/dist-es/commands/GetBlueprintCommand.js +23 -0
  47. package/dist-es/commands/GetDataAutomationProjectCommand.js +23 -0
  48. package/dist-es/commands/ListBlueprintsCommand.js +23 -0
  49. package/dist-es/commands/ListDataAutomationProjectsCommand.js +23 -0
  50. package/dist-es/commands/UpdateBlueprintCommand.js +23 -0
  51. package/dist-es/commands/UpdateDataAutomationProjectCommand.js +23 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +14 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +6 -0
  58. package/dist-es/models/BedrockDataAutomationServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +227 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListBlueprintsPaginator.js +4 -0
  63. package/dist-es/pagination/ListDataAutomationProjectsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_restJson1.js +535 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +45 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/BedrockDataAutomation.d.ts +89 -0
  72. package/dist-types/BedrockDataAutomationClient.d.ts +180 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateBlueprintCommand.d.ts +112 -0
  76. package/dist-types/commands/CreateBlueprintVersionCommand.d.ts +103 -0
  77. package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +197 -0
  78. package/dist-types/commands/DeleteBlueprintCommand.d.ts +85 -0
  79. package/dist-types/commands/DeleteDataAutomationProjectCommand.d.ts +87 -0
  80. package/dist-types/commands/GetBlueprintCommand.d.ts +101 -0
  81. package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +196 -0
  82. package/dist-types/commands/ListBlueprintsCommand.d.ts +104 -0
  83. package/dist-types/commands/ListDataAutomationProjectsCommand.d.ts +102 -0
  84. package/dist-types/commands/UpdateBlueprintCommand.d.ts +104 -0
  85. package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +190 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +14 -0
  92. package/dist-types/models/BedrockDataAutomationServiceException.d.ts +14 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1453 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListBlueprintsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDataAutomationProjectsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  101. package/dist-types/runtimeConfig.d.ts +48 -0
  102. package/dist-types/runtimeConfig.native.d.ts +47 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/BedrockDataAutomation.d.ts +196 -0
  106. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +187 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +50 -0
  113. package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +50 -0
  117. package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +50 -0
  119. package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +9 -0
  126. package/dist-types/ts3.4/models/BedrockDataAutomationServiceException.d.ts +9 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +463 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListBlueprintsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDataAutomationProjectsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +103 -0
@@ -0,0 +1,95 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: BedrockDataAutomationClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
14
+ defaultUserAgentProvider: (
15
+ config?:
16
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
17
+ | undefined
18
+ ) => Promise<import("@smithy/types").UserAgent>;
19
+ maxAttempts: number | import("@smithy/types").Provider<number>;
20
+ region: string | import("@smithy/types").Provider<any>;
21
+ requestHandler:
22
+ | import("@smithy/protocol-http").HttpHandler<any>
23
+ | RequestHandler;
24
+ retryMode: string | import("@smithy/types").Provider<string>;
25
+ sha256: import("@smithy/types").HashConstructor;
26
+ streamCollector: import("@smithy/types").StreamCollector;
27
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ apiVersion: string;
30
+ cacheMiddleware?: boolean | undefined;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: (_input: string | Uint8Array) => string;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: (input: string | Uint8Array) => string;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
+ userAgentAppId?:
42
+ | string
43
+ | import("@smithy/types").Provider<string | undefined>
44
+ | undefined;
45
+ retryStrategy?:
46
+ | import("@smithy/types").RetryStrategy
47
+ | import("@smithy/types").RetryStrategyV2
48
+ | undefined;
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger | undefined;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean | undefined;
73
+ serviceConfiguredEndpoint?: undefined;
74
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
75
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
76
+ credentials?:
77
+ | import("@smithy/types").AwsCredentialIdentity
78
+ | import("@smithy/types").AwsCredentialIdentityProvider
79
+ | undefined;
80
+ signer?:
81
+ | import("@smithy/types").RequestSigner
82
+ | ((
83
+ authScheme?: import("@smithy/types").AuthScheme | undefined
84
+ ) => Promise<import("@smithy/types").RequestSigner>)
85
+ | undefined;
86
+ signingEscapePath?: boolean | undefined;
87
+ systemClockOffset?: number | undefined;
88
+ signingRegion?: string | undefined;
89
+ signerConstructor?:
90
+ | (new (
91
+ options: import("@smithy/signature-v4").SignatureV4Init &
92
+ import("@smithy/signature-v4").SignatureV4CryptoInit
93
+ ) => import("@smithy/types").RequestSigner)
94
+ | undefined;
95
+ };
@@ -0,0 +1,96 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: BedrockDataAutomationClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >;
18
+ defaultUserAgentProvider: (
19
+ config?:
20
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
21
+ | undefined
22
+ ) => Promise<import("@smithy/types").UserAgent>;
23
+ maxAttempts: number | import("@smithy/types").Provider<number>;
24
+ region: string | import("@smithy/types").Provider<string>;
25
+ requestHandler:
26
+ | RequestHandler
27
+ | import("@smithy/protocol-http").HttpHandler<any>;
28
+ retryMode: string | import("@smithy/types").Provider<string>;
29
+ sha256: import("@smithy/types").HashConstructor;
30
+ streamCollector: import("@smithy/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
33
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
34
+ apiVersion: string;
35
+ cacheMiddleware?: boolean | undefined;
36
+ urlParser: import("@smithy/types").UrlParser;
37
+ base64Decoder: import("@smithy/types").Decoder;
38
+ base64Encoder: (_input: string | Uint8Array) => string;
39
+ utf8Decoder: import("@smithy/types").Decoder;
40
+ utf8Encoder: (input: string | Uint8Array) => string;
41
+ disableHostPrefix: boolean;
42
+ serviceId: string;
43
+ logger: import("@smithy/types").Logger;
44
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ retryStrategy?:
47
+ | import("@smithy/types").RetryStrategy
48
+ | import("@smithy/types").RetryStrategyV2
49
+ | undefined;
50
+ endpoint?:
51
+ | ((
52
+ | string
53
+ | import("@smithy/types").Endpoint
54
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
+ | import("@smithy/types").EndpointV2
56
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ ) &
58
+ (
59
+ | string
60
+ | import("@smithy/types").Provider<string>
61
+ | import("@smithy/types").Endpoint
62
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
+ | import("@smithy/types").EndpointV2
64
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
+ ))
66
+ | undefined;
67
+ endpointProvider: (
68
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
+ context?: {
70
+ logger?: import("@smithy/types").Logger | undefined;
71
+ }
72
+ ) => import("@smithy/types").EndpointV2;
73
+ tls?: boolean | undefined;
74
+ serviceConfiguredEndpoint?: undefined;
75
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
76
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
77
+ credentials?:
78
+ | import("@smithy/types").AwsCredentialIdentity
79
+ | import("@smithy/types").AwsCredentialIdentityProvider
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ };
@@ -0,0 +1,89 @@
1
+ import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: BedrockDataAutomationClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@smithy/types").HashConstructor;
7
+ requestHandler:
8
+ | import("@smithy/types").NodeHttpHandlerOptions
9
+ | import("@smithy/types").FetchHttpHandlerOptions
10
+ | Record<string, unknown>
11
+ | import("@smithy/protocol-http").HttpHandler<any>
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ cacheMiddleware?: boolean | undefined;
15
+ urlParser: import("@smithy/types").UrlParser;
16
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ base64Decoder: import("@smithy/types").Decoder;
19
+ base64Encoder: (_input: string | Uint8Array) => string;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: string | Uint8Array) => string;
22
+ disableHostPrefix: boolean;
23
+ serviceId: string;
24
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
+ region: string | import("@smithy/types").Provider<any>;
27
+ defaultUserAgentProvider: (
28
+ config?:
29
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
30
+ | undefined
31
+ ) => Promise<import("@smithy/types").UserAgent>;
32
+ credentialDefaultProvider: (
33
+ input: any
34
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
35
+ maxAttempts: number | import("@smithy/types").Provider<number>;
36
+ retryMode: string | import("@smithy/types").Provider<string>;
37
+ logger: import("@smithy/types").Logger;
38
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ defaultsMode:
40
+ | import("@smithy/smithy-client").DefaultsMode
41
+ | import("@smithy/types").Provider<
42
+ import("@smithy/smithy-client").DefaultsMode
43
+ >;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
45
+ userAgentAppId?:
46
+ | string
47
+ | import("@smithy/types").Provider<string | undefined>
48
+ | undefined;
49
+ retryStrategy?:
50
+ | import("@smithy/types").RetryStrategy
51
+ | import("@smithy/types").RetryStrategyV2
52
+ | undefined;
53
+ endpoint?:
54
+ | string
55
+ | import("@smithy/types").Endpoint
56
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
+ | import("@smithy/types").EndpointV2
58
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
59
+ | undefined;
60
+ endpointProvider: (
61
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
62
+ context?: {
63
+ logger?: import("@smithy/types").Logger | undefined;
64
+ }
65
+ ) => import("@smithy/types").EndpointV2;
66
+ tls?: boolean | undefined;
67
+ serviceConfiguredEndpoint?: undefined;
68
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
70
+ credentials?:
71
+ | import("@smithy/types").AwsCredentialIdentity
72
+ | import("@smithy/types").AwsCredentialIdentityProvider
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ };
@@ -0,0 +1,23 @@
1
+ import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: BedrockDataAutomationClientConfig
4
+ ) => {
5
+ apiVersion: string;
6
+ base64Decoder: import("@smithy/types").Decoder;
7
+ base64Encoder: (_input: string | Uint8Array) => string;
8
+ disableHostPrefix: boolean;
9
+ endpointProvider: (
10
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
+ context?: {
12
+ logger?: import("@smithy/types").Logger | undefined;
13
+ }
14
+ ) => import("@smithy/types").EndpointV2;
15
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
16
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
17
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
+ logger: import("@smithy/types").Logger;
19
+ serviceId: string;
20
+ urlParser: import("@smithy/types").UrlParser;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: string | Uint8Array) => string;
23
+ };
@@ -0,0 +1,13 @@
1
+ import { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(
4
+ extensionConfiguration: BedrockDataAutomationExtensionConfiguration
5
+ ): void;
6
+ }
7
+ export interface RuntimeExtensionsConfig {
8
+ extensions: RuntimeExtension[];
9
+ }
10
+ export declare const resolveRuntimeExtensions: (
11
+ runtimeConfig: any,
12
+ extensions: RuntimeExtension[]
13
+ ) => any;
package/package.json ADDED
@@ -0,0 +1,103 @@
1
+ {
2
+ "name": "@aws-sdk/client-bedrock-data-automation",
3
+ "description": "AWS SDK for JavaScript Bedrock Data Automation Client for Node.js, Browser and React Native",
4
+ "version": "3.706.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo bedrock-data-automation"
15
+ },
16
+ "main": "./dist-cjs/index.js",
17
+ "types": "./dist-types/index.d.ts",
18
+ "module": "./dist-es/index.js",
19
+ "sideEffects": false,
20
+ "dependencies": {
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/client-sso-oidc": "3.699.0",
24
+ "@aws-sdk/client-sts": "3.699.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.699.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
52
+ "@smithy/util-base64": "^3.0.0",
53
+ "@smithy/util-body-length-browser": "^3.0.0",
54
+ "@smithy/util-body-length-node": "^3.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
+ "@smithy/util-utf8": "^3.0.0",
61
+ "@types/uuid": "^9.0.1",
62
+ "tslib": "^2.6.2",
63
+ "uuid": "^9.0.1"
64
+ },
65
+ "devDependencies": {
66
+ "@tsconfig/node16": "16.1.3",
67
+ "@types/node": "^16.18.96",
68
+ "concurrently": "7.0.0",
69
+ "downlevel-dts": "0.10.1",
70
+ "rimraf": "3.0.2",
71
+ "typescript": "~4.9.5"
72
+ },
73
+ "engines": {
74
+ "node": ">=16.0.0"
75
+ },
76
+ "typesVersions": {
77
+ "<4.0": {
78
+ "dist-types/*": [
79
+ "dist-types/ts3.4/*"
80
+ ]
81
+ }
82
+ },
83
+ "files": [
84
+ "dist-*/**"
85
+ ],
86
+ "author": {
87
+ "name": "AWS SDK for JavaScript Team",
88
+ "url": "https://aws.amazon.com/javascript/"
89
+ },
90
+ "license": "Apache-2.0",
91
+ "browser": {
92
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
93
+ },
94
+ "react-native": {
95
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
96
+ },
97
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bedrock-data-automation",
98
+ "repository": {
99
+ "type": "git",
100
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
101
+ "directory": "clients/client-bedrock-data-automation"
102
+ }
103
+ }