Class: Aws::SSOOIDC::Types::InvalidClientException

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

Overview

Indicates that the ‘clientId` or `clientSecret` in the request is invalid. For example, this can occur when a client sends an incorrect `clientId` or an expired `clientSecret`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Method Summary

Methods included from Aws::Structure

#empty?, included, #initialize, #key?, new, #to_h, #to_s

Instance Attribute Details

#errorString

Single error code. For this exception the value will be ‘invalid_client`.

Returns:

  • (String)


419
420
421
422
423
424
# File 'lib/aws-sdk-ssooidc/types.rb', line 419

class InvalidClientException < Struct.new(
  :error,
  :error_description)
  SENSITIVE = []
  include Aws::Structure
end

#error_descriptionString

Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred.

Returns:

  • (String)


419
420
421
422
423
424
# File 'lib/aws-sdk-ssooidc/types.rb', line 419

class InvalidClientException < Struct.new(
  :error,
  :error_description)
  SENSITIVE = []
  include Aws::Structure
end