Class: Aws::DatabaseMigrationService::Types::ErrorDetails

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

Overview

Note:

ErrorDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ErrorDetails corresponding to the set member.

Provides error information about a project.

Direct Known Subclasses

DefaultErrorDetails, Unknown

Defined Under Namespace

Classes: DefaultErrorDetails, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_error_detailsTypes::DefaultErrorDetails

Error information about a project.



5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5379

class ErrorDetails < Struct.new(
  :default_error_details,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class DefaultErrorDetails < ErrorDetails; end
  class Unknown < ErrorDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5379
5380
5381
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5379

def unknown
  @unknown
end