@aws-sdk/client-eventbridge 3.310.0 → 3.312.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/dist-cjs/commands/ListTargetsByRuleCommand.js +2 -1
- package/dist-cjs/commands/PutTargetsCommand.js +2 -1
- package/dist-cjs/endpoint/ruleset.js +2 -2
- package/dist-cjs/models/models_0.js +25 -1
- package/dist-cjs/protocols/Aws_json1_1.js +82 -224
- package/dist-es/commands/ListTargetsByRuleCommand.js +2 -1
- package/dist-es/commands/PutTargetsCommand.js +2 -1
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_json1_1.js +82 -224
- package/dist-types/commands/PutTargetsCommand.d.ts +4 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +21 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +12 -1
- package/package.json +2 -2
|
@@ -2868,7 +2868,7 @@ export interface RedshiftDataParameters {
|
|
|
2868
2868
|
/**
|
|
2869
2869
|
* <p>The SQL statement text to run.</p>
|
|
2870
2870
|
*/
|
|
2871
|
-
Sql
|
|
2871
|
+
Sql?: string;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>The name of the SQL statement. You can name the SQL statement when you create it to
|
|
2874
2874
|
* identify the query.</p>
|
|
@@ -2879,6 +2879,10 @@ export interface RedshiftDataParameters {
|
|
|
2879
2879
|
* runs.</p>
|
|
2880
2880
|
*/
|
|
2881
2881
|
WithEvent?: boolean;
|
|
2882
|
+
/**
|
|
2883
|
+
* A list of SQLs.
|
|
2884
|
+
*/
|
|
2885
|
+
Sqls?: string[];
|
|
2882
2886
|
}
|
|
2883
2887
|
/**
|
|
2884
2888
|
* @public
|
|
@@ -3982,3 +3986,19 @@ export interface UpdateEndpointResponse {
|
|
|
3982
3986
|
*/
|
|
3983
3987
|
State?: EndpointState | string;
|
|
3984
3988
|
}
|
|
3989
|
+
/**
|
|
3990
|
+
* @internal
|
|
3991
|
+
*/
|
|
3992
|
+
export declare const RedshiftDataParametersFilterSensitiveLog: (obj: RedshiftDataParameters) => any;
|
|
3993
|
+
/**
|
|
3994
|
+
* @internal
|
|
3995
|
+
*/
|
|
3996
|
+
export declare const TargetFilterSensitiveLog: (obj: Target) => any;
|
|
3997
|
+
/**
|
|
3998
|
+
* @internal
|
|
3999
|
+
*/
|
|
4000
|
+
export declare const ListTargetsByRuleResponseFilterSensitiveLog: (obj: ListTargetsByRuleResponse) => any;
|
|
4001
|
+
/**
|
|
4002
|
+
* @internal
|
|
4003
|
+
*/
|
|
4004
|
+
export declare const PutTargetsRequestFilterSensitiveLog: (obj: PutTargetsRequest) => any;
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|
|
@@ -821,9 +821,10 @@ export interface RedshiftDataParameters {
|
|
|
821
821
|
SecretManagerArn?: string;
|
|
822
822
|
Database: string | undefined;
|
|
823
823
|
DbUser?: string;
|
|
824
|
-
Sql
|
|
824
|
+
Sql?: string;
|
|
825
825
|
StatementName?: string;
|
|
826
826
|
WithEvent?: boolean;
|
|
827
|
+
Sqls?: string[];
|
|
827
828
|
}
|
|
828
829
|
export interface RetryPolicy {
|
|
829
830
|
MaximumRetryAttempts?: number;
|
|
@@ -1089,3 +1090,13 @@ export interface UpdateEndpointResponse {
|
|
|
1089
1090
|
EndpointUrl?: string;
|
|
1090
1091
|
State?: EndpointState | string;
|
|
1091
1092
|
}
|
|
1093
|
+
export declare const RedshiftDataParametersFilterSensitiveLog: (
|
|
1094
|
+
obj: RedshiftDataParameters
|
|
1095
|
+
) => any;
|
|
1096
|
+
export declare const TargetFilterSensitiveLog: (obj: Target) => any;
|
|
1097
|
+
export declare const ListTargetsByRuleResponseFilterSensitiveLog: (
|
|
1098
|
+
obj: ListTargetsByRuleResponse
|
|
1099
|
+
) => any;
|
|
1100
|
+
export declare const PutTargetsRequestFilterSensitiveLog: (
|
|
1101
|
+
obj: PutTargetsRequest
|
|
1102
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eventbridge",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eventbridge Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.312.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
+
"@aws-sdk/client-sts": "3.312.0",
|
|
27
27
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
28
28
|
"@aws-sdk/credential-provider-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|