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