Class: Aws::RedshiftServerless::Types::GetIdentityCenterAuthTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::GetIdentityCenterAuthTokenResponse
- Defined in:
- gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expiration_time ⇒ Time
The date and time when the Identity Center authentication token expires.
-
#token ⇒ String
The Identity Center authentication token that can be used to access data in the specified workgroups.
Instance Attribute Details
#expiration_time ⇒ Time
The date and time when the Identity Center authentication token expires.
After this time, a new token must be requested for continued access.
1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1284 class GetIdentityCenterAuthTokenResponse < Struct.new( :expiration_time, :token) SENSITIVE = [] include Aws::Structure end |
#token ⇒ String
The Identity Center authentication token that can be used to access data in the specified workgroups.
This token contains the Identity Center identity information and is encrypted for secure transmission.
1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1284 class GetIdentityCenterAuthTokenResponse < Struct.new( :expiration_time, :token) SENSITIVE = [] include Aws::Structure end |