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.
1300 1301 1302 1303 1304 1305 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1300 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.
1300 1301 1302 1303 1304 1305 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1300 class GetIdentityCenterAuthTokenResponse < Struct.new( :expiration_time, :token) SENSITIVE = [] include Aws::Structure end |