Class: Aws::SSOOIDC::Types::AuthorizationPendingException

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

Overview

Indicates that a request to authorize a client with an access user session token is pending.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#errorString

Single error code. For this exception the value will be authorization_pending.

Returns:

  • (String)


49
50
51
52
53
54
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 49

class AuthorizationPendingException < 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)


49
50
51
52
53
54
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 49

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