Skip to content

Commit f963945

Browse files
author
AWS
committed
Redshift Data API Service Update: This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency.
1 parent b25c66b commit f963945

File tree

3 files changed

+40
-19
lines changed

3 files changed

+40
-19
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Redshift Data API Service",
4+
"contributor": "",
5+
"description": "This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency."
6+
}

services/redshiftdata/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
}
99
},
1010
"params": {
11-
"UseDualStack": false,
12-
"Region": "us-east-1",
1311
"UseFIPS": false,
12+
"Region": "us-east-1",
13+
"UseDualStack": false,
1414
"Endpoint": "https://example.com"
1515
}
1616
},
@@ -20,9 +20,9 @@
2020
"error": "Invalid Configuration: FIPS and custom endpoint are not supported"
2121
},
2222
"params": {
23-
"UseDualStack": false,
24-
"Region": "us-east-1",
2523
"UseFIPS": true,
24+
"Region": "us-east-1",
25+
"UseDualStack": false,
2626
"Endpoint": "https://example.com"
2727
}
2828
},
@@ -32,9 +32,9 @@
3232
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
3333
},
3434
"params": {
35-
"UseDualStack": true,
36-
"Region": "us-east-1",
3735
"UseFIPS": false,
36+
"Region": "us-east-1",
37+
"UseDualStack": true,
3838
"Endpoint": "https://example.com"
3939
}
4040
}

0 commit comments

Comments
 (0)