Class CodeDeliveryDetailsType
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.CodeDeliveryDetailsType
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CodeDeliveryDetailsType extends Object implements Serializable, Cloneable
The type of code delivery details being returned from the server.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CodeDeliveryDetailsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CodeDeliveryDetailsType
clone()
boolean
equals(Object obj)
String
getAttributeName()
The name of the attribute in the code delivery details type.String
getDeliveryMedium()
The delivery medium (email message or phone number).String
getDestination()
The destination for the code delivery details.int
hashCode()
void
setAttributeName(String attributeName)
The name of the attribute in the code delivery details type.void
setDeliveryMedium(DeliveryMediumType deliveryMedium)
The delivery medium (email message or phone number).void
setDeliveryMedium(String deliveryMedium)
The delivery medium (email message or phone number).void
setDestination(String destination)
The destination for the code delivery details.String
toString()
Returns a string representation of this object; useful for testing and debugging.CodeDeliveryDetailsType
withAttributeName(String attributeName)
The name of the attribute in the code delivery details type.CodeDeliveryDetailsType
withDeliveryMedium(DeliveryMediumType deliveryMedium)
The delivery medium (email message or phone number).CodeDeliveryDetailsType
withDeliveryMedium(String deliveryMedium)
The delivery medium (email message or phone number).CodeDeliveryDetailsType
withDestination(String destination)
The destination for the code delivery details.
-
-
-
Method Detail
-
setDestination
public void setDestination(String destination)
The destination for the code delivery details.
- Parameters:
destination
- The destination for the code delivery details.
-
getDestination
public String getDestination()
The destination for the code delivery details.
- Returns:
- The destination for the code delivery details.
-
withDestination
public CodeDeliveryDetailsType withDestination(String destination)
The destination for the code delivery details.
- Parameters:
destination
- The destination for the code delivery details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDeliveryMedium
public void setDeliveryMedium(String deliveryMedium)
The delivery medium (email message or phone number).
- Parameters:
deliveryMedium
- The delivery medium (email message or phone number).- See Also:
DeliveryMediumType
-
getDeliveryMedium
public String getDeliveryMedium()
The delivery medium (email message or phone number).
- Returns:
- The delivery medium (email message or phone number).
- See Also:
DeliveryMediumType
-
withDeliveryMedium
public CodeDeliveryDetailsType withDeliveryMedium(String deliveryMedium)
The delivery medium (email message or phone number).
- Parameters:
deliveryMedium
- The delivery medium (email message or phone number).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryMediumType
-
setDeliveryMedium
public void setDeliveryMedium(DeliveryMediumType deliveryMedium)
The delivery medium (email message or phone number).
- Parameters:
deliveryMedium
- The delivery medium (email message or phone number).- See Also:
DeliveryMediumType
-
withDeliveryMedium
public CodeDeliveryDetailsType withDeliveryMedium(DeliveryMediumType deliveryMedium)
The delivery medium (email message or phone number).
- Parameters:
deliveryMedium
- The delivery medium (email message or phone number).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryMediumType
-
setAttributeName
public void setAttributeName(String attributeName)
The name of the attribute in the code delivery details type.
- Parameters:
attributeName
- The name of the attribute in the code delivery details type.
-
getAttributeName
public String getAttributeName()
The name of the attribute in the code delivery details type.
- Returns:
- The name of the attribute in the code delivery details type.
-
withAttributeName
public CodeDeliveryDetailsType withAttributeName(String attributeName)
The name of the attribute in the code delivery details type.
- Parameters:
attributeName
- The name of the attribute in the code delivery details type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CodeDeliveryDetailsType clone()
-
-