Class: Aws::DatabaseMigrationService::Types::ErrorDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ErrorDetails
- Defined in:
- gems/aws-sdk-databasemigrationservice/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.
5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5800 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
5800 5801 5802 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5800 def unknown @unknown end |