Class: Aws::LexModelBuildingService::Types::MigrationAlert
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::MigrationAlert
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Provides information about alerts and warnings that Amazon Lex sends during a migration. The alerts include information about how to resolve the issue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ Array<String>
Additional details about the alert.
-
#message ⇒ String
A message that describes why the alert was issued.
-
#reference_urls ⇒ Array<String>
A link to the Amazon Lex documentation that describes how to resolve the alert.
-
#type ⇒ String
The type of alert.
Instance Attribute Details
#details ⇒ Array<String>
Additional details about the alert.
2712 2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2712 class MigrationAlert < Struct.new( :type, :message, :details, :reference_urls) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message that describes why the alert was issued.
2712 2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2712 class MigrationAlert < Struct.new( :type, :message, :details, :reference_urls) SENSITIVE = [] include Aws::Structure end |
#reference_urls ⇒ Array<String>
A link to the Amazon Lex documentation that describes how to resolve the alert.
2712 2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2712 class MigrationAlert < Struct.new( :type, :message, :details, :reference_urls) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of alert. There are two kinds of alerts:
-
‘ERROR` - There was an issue with the migration that can’t be resolved. The migration stops.
-
‘WARN` - There was an issue with the migration that requires manual changes to the new Amazon Lex V2 bot. The migration continues.
2712 2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2712 class MigrationAlert < Struct.new( :type, :message, :details, :reference_urls) SENSITIVE = [] include Aws::Structure end |