Class: Aws::CognitoIdentityProvider::Types::TokenValidityUnitsType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Note:

When making an API call, you may pass TokenValidityUnitsType data as a hash:

{
  access_token: "seconds", # accepts seconds, minutes, hours, days
  id_token: "seconds", # accepts seconds, minutes, hours, days
  refresh_token: "seconds", # accepts seconds, minutes, hours, days
}

The data type TokenValidityUnits specifies the time units you use when you set the duration of ID, access, and refresh tokens.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

A time unit in “seconds”, “minutes”, “hours”, or “days” for the value in AccessTokenValidity, defaulting to hours.

Returns:

  • (String)


8918
8919
8920
8921
8922
8923
8924
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8918

class TokenValidityUnitsType < Struct.new(
  :access_token,
  :id_token,
  :refresh_token)
  SENSITIVE = []
  include Aws::Structure
end

#id_tokenString

A time unit in “seconds”, “minutes”, “hours”, or “days” for the value in IdTokenValidity, defaulting to hours.

Returns:

  • (String)


8918
8919
8920
8921
8922
8923
8924
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8918

class TokenValidityUnitsType < Struct.new(
  :access_token,
  :id_token,
  :refresh_token)
  SENSITIVE = []
  include Aws::Structure
end

#refresh_tokenString

A time unit in “seconds”, “minutes”, “hours”, or “days” for the value in RefreshTokenValidity, defaulting to days.

Returns:

  • (String)


8918
8919
8920
8921
8922
8923
8924
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8918

class TokenValidityUnitsType < Struct.new(
  :access_token,
  :id_token,
  :refresh_token)
  SENSITIVE = []
  include Aws::Structure
end