Class: Aws::IAM::Types::ErrorDetails

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

Overview

Contains information about the reason that the operation failed.

This data type is used as a response element in the GetOrganizationsAccessReport, GetServiceLastAccessedDetails, and GetServiceLastAccessedDetailsWithEntities operations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The error code associated with the operation failure.

Returns:

  • (String)


2694
2695
2696
2697
2698
2699
# File 'lib/aws-sdk-iam/types.rb', line 2694

class ErrorDetails < Struct.new(
  :message,
  :code)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

Detailed information about the reason that the operation failed.

Returns:

  • (String)


2694
2695
2696
2697
2698
2699
# File 'lib/aws-sdk-iam/types.rb', line 2694

class ErrorDetails < Struct.new(
  :message,
  :code)
  SENSITIVE = []
  include Aws::Structure
end