Class: Aws::AmplifyUIBuilder::Types::RefreshTokenRequestBody

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb

Overview

Describes a refresh token.

Constant Summary collapse

SENSITIVE =
[:token, :client_id]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The ID of the client to request the token from.

Returns:

  • (String)


2815
2816
2817
2818
2819
2820
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2815

class RefreshTokenRequestBody < Struct.new(
  :token,
  :client_id)
  SENSITIVE = [:token, :client_id]
  include Aws::Structure
end

#tokenString

The token to use to refresh a previously issued access token that might have expired.

Returns:

  • (String)


2815
2816
2817
2818
2819
2820
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2815

class RefreshTokenRequestBody < Struct.new(
  :token,
  :client_id)
  SENSITIVE = [:token, :client_id]
  include Aws::Structure
end