Skip to content

Commit 7ab8c1f

Browse files
author
AWS
committed
Redshift Serverless Update: Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
1 parent ab3edeb commit 7ab8c1f

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
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 Serverless",
4+
"contributor": "",
5+
"description": "Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages."
6+
}

services/redshiftserverless/src/main/resources/codegen-resources/service-2.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,25 @@
401401
],
402402
"documentation":"<p>Returns information, such as the name, about a VPC endpoint.</p>"
403403
},
404+
"GetIdentityCenterAuthToken":{
405+
"name":"GetIdentityCenterAuthToken",
406+
"http":{
407+
"method":"POST",
408+
"requestUri":"/"
409+
},
410+
"input":{"shape":"GetIdentityCenterAuthTokenRequest"},
411+
"output":{"shape":"GetIdentityCenterAuthTokenResponse"},
412+
"errors":[
413+
{"shape":"InternalServerException"},
414+
{"shape":"ResourceNotFoundException"},
415+
{"shape":"ValidationException"},
416+
{"shape":"ConflictException"},
417+
{"shape":"AccessDeniedException"},
418+
{"shape":"DryRunException"},
419+
{"shape":"ThrottlingException"}
420+
],
421+
"documentation":"<p>Returns an Identity Center authentication token for accessing Amazon Redshift Serverless workgroups.</p> <p>The token provides secure access to data within the specified workgroups using Identity Center identity propagation. The token expires after a specified duration and must be refreshed for continued access.</p> <p>The Identity and Access Management (IAM) user or role that runs GetIdentityCenterAuthToken must have appropriate permissions to access the specified workgroups and Identity Center integration must be configured for the workgroups.</p>"
422+
},
404423
"GetNamespace":{
405424
"name":"GetNamespace",
406425
"http":{
@@ -537,6 +556,7 @@
537556
{"shape":"ValidationException"},
538557
{"shape":"ConflictException"},
539558
{"shape":"AccessDeniedException"},
559+
{"shape":"DryRunException"},
540560
{"shape":"ThrottlingException"}
541561
],
542562
"documentation":"<p>Get the Redshift Serverless version for a specified track.</p>"
@@ -2016,6 +2036,30 @@
20162036
}
20172037
}
20182038
},
2039+
"GetIdentityCenterAuthTokenRequest":{
2040+
"type":"structure",
2041+
"required":["workgroupNames"],
2042+
"members":{
2043+
"workgroupNames":{
2044+
"shape":"WorkgroupNameList",
2045+
"documentation":"<p>A list of workgroup names for which to generate the Identity Center authentication token.</p> <p>Constraints:</p> <ul> <li> <p>Must contain between 1 and 20 workgroup names.</p> </li> <li> <p>Each workgroup name must be a valid Amazon Redshift Serverless workgroup identifier.</p> </li> <li> <p>All specified workgroups must have Identity Center integration enabled.</p> </li> </ul>"
2046+
}
2047+
}
2048+
},
2049+
"GetIdentityCenterAuthTokenResponse":{
2050+
"type":"structure",
2051+
"members":{
2052+
"expirationTime":{
2053+
"shape":"SyntheticTimestamp_date_time",
2054+
"documentation":"<p>The date and time when the Identity Center authentication token expires.</p> <p>After this time, a new token must be requested for continued access.</p>"
2055+
},
2056+
"token":{
2057+
"shape":"String",
2058+
"documentation":"<p>The Identity Center authentication token that can be used to access data in the specified workgroups.</p> <p>This token contains the Identity Center identity information and is encrypted for secure transmission.</p>"
2059+
}
2060+
},
2061+
"sensitive":true
2062+
},
20192063
"GetNamespaceRequest":{
20202064
"type":"structure",
20212065
"required":["namespaceName"],
@@ -4586,6 +4630,12 @@
45864630
"min":3,
45874631
"pattern":"^[a-z0-9-]+$"
45884632
},
4633+
"WorkgroupNameList":{
4634+
"type":"list",
4635+
"member":{"shape":"WorkgroupName"},
4636+
"max":20,
4637+
"min":1
4638+
},
45894639
"WorkgroupStatus":{
45904640
"type":"string",
45914641
"enum":[

0 commit comments

Comments
 (0)