Class RefreshTokenResponse
Represents a response containing refreshed authentication tokens.
Inherited Members
Namespace: Innovt.Cloud.AWS.Cognito.Model
Assembly: Innovt.Cloud.AWS.Cognito.dll
Syntax
public class RefreshTokenResponse
Properties
| Edit this page View SourceAccessToken
Gets or sets the access token.
Declaration
public string AccessToken { get; set; }
Property Value
Type | Description |
---|---|
string |
ExpiresIn
Gets or sets the expiration time of the access token in seconds.
Declaration
public int ExpiresIn { get; set; }
Property Value
Type | Description |
---|---|
int |
IdToken
Gets or sets the ID token.
Declaration
public string IdToken { get; set; }
Property Value
Type | Description |
---|---|
string |
RefreshToken
Declaration
public string RefreshToken { get; set; }
Property Value
Type | Description |
---|---|
string |
TokenType
Gets or sets the type of token (e.g., "Bearer").
Declaration
public string TokenType { get; set; }
Property Value
Type | Description |
---|---|
string |