Class: Aws::OpenSearchService::Types::MigrationError

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

Overview

Contains error details for a migration that failed or completed with errors.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The error code identifying the type of failure.

Returns:

  • (String)


7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7114

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

#messageString

A human-readable description of the error.

Returns:

  • (String)


7114
7115
7116
7117
7118
7119
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7114

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