Class: Aws::DatabaseMigrationService::Types::ErrorDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ErrorDetails
- 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
Defined Under Namespace
Classes: DefaultErrorDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_error_details ⇒ Types::DefaultErrorDetails
Error information about a project.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#default_error_details ⇒ Types::DefaultErrorDetails
Error information about a project.
5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5720 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5720 5721 5722 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5720 def unknown @unknown end |