Class DescribeDeliveryChannelStatusResult
- java.lang.Object
-
- com.amazonaws.services.config.model.DescribeDeliveryChannelStatusResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeDeliveryChannelStatusResult extends Object implements Serializable, Cloneable
The output for the DescribeDeliveryChannelStatus action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeDeliveryChannelStatusResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeDeliveryChannelStatusResult
clone()
boolean
equals(Object obj)
List<DeliveryChannelStatus>
getDeliveryChannelsStatus()
A list that contains the status of a specified delivery channel.int
hashCode()
void
setDeliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeDeliveryChannelStatusResult
withDeliveryChannelsStatus(DeliveryChannelStatus... deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.DescribeDeliveryChannelStatusResult
withDeliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
-
-
-
Method Detail
-
getDeliveryChannelsStatus
public List<DeliveryChannelStatus> getDeliveryChannelsStatus()
A list that contains the status of a specified delivery channel.
- Returns:
- A list that contains the status of a specified delivery channel.
-
setDeliveryChannelsStatus
public void setDeliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
- Parameters:
deliveryChannelsStatus
- A list that contains the status of a specified delivery channel.
-
withDeliveryChannelsStatus
public DescribeDeliveryChannelStatusResult withDeliveryChannelsStatus(DeliveryChannelStatus... deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
NOTE: This method appends the values to the existing list (if any). Use
setDeliveryChannelsStatus(java.util.Collection)
orwithDeliveryChannelsStatus(java.util.Collection)
if you want to override the existing values.- Parameters:
deliveryChannelsStatus
- A list that contains the status of a specified delivery channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withDeliveryChannelsStatus
public DescribeDeliveryChannelStatusResult withDeliveryChannelsStatus(Collection<DeliveryChannelStatus> deliveryChannelsStatus)
A list that contains the status of a specified delivery channel.
- Parameters:
deliveryChannelsStatus
- A list that contains the status of a specified delivery channel.- 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 DescribeDeliveryChannelStatusResult clone()
-
-