Interface MigrationAlert.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MigrationAlert.Builder,MigrationAlert>,SdkBuilder<MigrationAlert.Builder,MigrationAlert>,SdkPojo
- Enclosing class:
- MigrationAlert
public static interface MigrationAlert.Builder extends SdkPojo, CopyableBuilder<MigrationAlert.Builder,MigrationAlert>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MigrationAlert.Builderdetails(String... details)Additional details about the alert.MigrationAlert.Builderdetails(Collection<String> details)Additional details about the alert.MigrationAlert.Buildermessage(String message)A message that describes why the alert was issued.MigrationAlert.BuilderreferenceURLs(String... referenceURLs)A link to the Amazon Lex documentation that describes how to resolve the alert.MigrationAlert.BuilderreferenceURLs(Collection<String> referenceURLs)A link to the Amazon Lex documentation that describes how to resolve the alert.MigrationAlert.Buildertype(String type)The type of alert.MigrationAlert.Buildertype(MigrationAlertType type)The type of alert.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
type
MigrationAlert.Builder type(String type)
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.
- Parameters:
type- 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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MigrationAlertType,MigrationAlertType
-
-
type
MigrationAlert.Builder type(MigrationAlertType type)
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.
- Parameters:
type- 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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MigrationAlertType,MigrationAlertType
-
-
message
MigrationAlert.Builder message(String message)
A message that describes why the alert was issued.
- Parameters:
message- A message that describes why the alert was issued.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
MigrationAlert.Builder details(Collection<String> details)
Additional details about the alert.
- Parameters:
details- Additional details about the alert.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
MigrationAlert.Builder details(String... details)
Additional details about the alert.
- Parameters:
details- Additional details about the alert.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceURLs
MigrationAlert.Builder referenceURLs(Collection<String> referenceURLs)
A link to the Amazon Lex documentation that describes how to resolve the alert.
- Parameters:
referenceURLs- A link to the Amazon Lex documentation that describes how to resolve the alert.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
referenceURLs
MigrationAlert.Builder referenceURLs(String... referenceURLs)
A link to the Amazon Lex documentation that describes how to resolve the alert.
- Parameters:
referenceURLs- A link to the Amazon Lex documentation that describes how to resolve the alert.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-