public class LambdaConfigType
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Specifies the type of configuration for AWS Lambda triggers.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
customMessage
A custom Message AWS Lambda trigger.
|
private java.lang.String |
postAuthentication
A post-authentication AWS Lambda trigger.
|
private java.lang.String |
postConfirmation
A post-confirmation AWS Lambda trigger.
|
private java.lang.String |
preAuthentication
A pre-authentication AWS Lambda trigger.
|
private java.lang.String |
preSignUp
A pre-registration AWS Lambda trigger.
|
Constructor and Description |
---|
LambdaConfigType() |
Modifier and Type | Method and Description |
---|---|
LambdaConfigType |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCustomMessage()
A custom Message AWS Lambda trigger.
|
java.lang.String |
getPostAuthentication()
A post-authentication AWS Lambda trigger.
|
java.lang.String |
getPostConfirmation()
A post-confirmation AWS Lambda trigger.
|
java.lang.String |
getPreAuthentication()
A pre-authentication AWS Lambda trigger.
|
java.lang.String |
getPreSignUp()
A pre-registration AWS Lambda trigger.
|
int |
hashCode() |
void |
setCustomMessage(java.lang.String customMessage)
A custom Message AWS Lambda trigger.
|
void |
setPostAuthentication(java.lang.String postAuthentication)
A post-authentication AWS Lambda trigger.
|
void |
setPostConfirmation(java.lang.String postConfirmation)
A post-confirmation AWS Lambda trigger.
|
void |
setPreAuthentication(java.lang.String preAuthentication)
A pre-authentication AWS Lambda trigger.
|
void |
setPreSignUp(java.lang.String preSignUp)
A pre-registration AWS Lambda trigger.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
LambdaConfigType |
withCustomMessage(java.lang.String customMessage)
A custom Message AWS Lambda trigger.
|
LambdaConfigType |
withPostAuthentication(java.lang.String postAuthentication)
A post-authentication AWS Lambda trigger.
|
LambdaConfigType |
withPostConfirmation(java.lang.String postConfirmation)
A post-confirmation AWS Lambda trigger.
|
LambdaConfigType |
withPreAuthentication(java.lang.String preAuthentication)
A pre-authentication AWS Lambda trigger.
|
LambdaConfigType |
withPreSignUp(java.lang.String preSignUp)
A pre-registration AWS Lambda trigger.
|
private java.lang.String preSignUp
A pre-registration AWS Lambda trigger.
private java.lang.String customMessage
A custom Message AWS Lambda trigger.
private java.lang.String postConfirmation
A post-confirmation AWS Lambda trigger.
private java.lang.String preAuthentication
A pre-authentication AWS Lambda trigger.
private java.lang.String postAuthentication
A post-authentication AWS Lambda trigger.
public void setPreSignUp(java.lang.String preSignUp)
A pre-registration AWS Lambda trigger.
preSignUp
- A pre-registration AWS Lambda trigger.public java.lang.String getPreSignUp()
A pre-registration AWS Lambda trigger.
public LambdaConfigType withPreSignUp(java.lang.String preSignUp)
A pre-registration AWS Lambda trigger.
preSignUp
- A pre-registration AWS Lambda trigger.public void setCustomMessage(java.lang.String customMessage)
A custom Message AWS Lambda trigger.
customMessage
- A custom Message AWS Lambda trigger.public java.lang.String getCustomMessage()
A custom Message AWS Lambda trigger.
public LambdaConfigType withCustomMessage(java.lang.String customMessage)
A custom Message AWS Lambda trigger.
customMessage
- A custom Message AWS Lambda trigger.public void setPostConfirmation(java.lang.String postConfirmation)
A post-confirmation AWS Lambda trigger.
postConfirmation
- A post-confirmation AWS Lambda trigger.public java.lang.String getPostConfirmation()
A post-confirmation AWS Lambda trigger.
public LambdaConfigType withPostConfirmation(java.lang.String postConfirmation)
A post-confirmation AWS Lambda trigger.
postConfirmation
- A post-confirmation AWS Lambda trigger.public void setPreAuthentication(java.lang.String preAuthentication)
A pre-authentication AWS Lambda trigger.
preAuthentication
- A pre-authentication AWS Lambda trigger.public java.lang.String getPreAuthentication()
A pre-authentication AWS Lambda trigger.
public LambdaConfigType withPreAuthentication(java.lang.String preAuthentication)
A pre-authentication AWS Lambda trigger.
preAuthentication
- A pre-authentication AWS Lambda trigger.public void setPostAuthentication(java.lang.String postAuthentication)
A post-authentication AWS Lambda trigger.
postAuthentication
- A post-authentication AWS Lambda trigger.public java.lang.String getPostAuthentication()
A post-authentication AWS Lambda trigger.
public LambdaConfigType withPostAuthentication(java.lang.String postAuthentication)
A post-authentication AWS Lambda trigger.
postAuthentication
- A post-authentication AWS Lambda trigger.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public LambdaConfigType clone()
clone
in class java.lang.Object