Class ListDeliveryStreamsResult
- java.lang.Object
-
- com.amazonaws.services.kinesisfirehose.model.ListDeliveryStreamsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListDeliveryStreamsResult extends Object implements Serializable, Cloneable
Contains the output of ListDeliveryStreams.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListDeliveryStreamsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListDeliveryStreamsResult
clone()
boolean
equals(Object obj)
List<String>
getDeliveryStreamNames()
The names of the delivery streams.Boolean
getHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.int
hashCode()
Boolean
isHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.void
setDeliveryStreamNames(Collection<String> deliveryStreamNames)
The names of the delivery streams.void
setHasMoreDeliveryStreams(Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListDeliveryStreamsResult
withDeliveryStreamNames(String... deliveryStreamNames)
The names of the delivery streams.ListDeliveryStreamsResult
withDeliveryStreamNames(Collection<String> deliveryStreamNames)
The names of the delivery streams.ListDeliveryStreamsResult
withHasMoreDeliveryStreams(Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
-
-
-
Method Detail
-
getDeliveryStreamNames
public List<String> getDeliveryStreamNames()
The names of the delivery streams.
- Returns:
- The names of the delivery streams.
-
setDeliveryStreamNames
public void setDeliveryStreamNames(Collection<String> deliveryStreamNames)
The names of the delivery streams.
- Parameters:
deliveryStreamNames
- The names of the delivery streams.
-
withDeliveryStreamNames
public ListDeliveryStreamsResult withDeliveryStreamNames(String... deliveryStreamNames)
The names of the delivery streams.
NOTE: This method appends the values to the existing list (if any). Use
setDeliveryStreamNames(java.util.Collection)
orwithDeliveryStreamNames(java.util.Collection)
if you want to override the existing values.- Parameters:
deliveryStreamNames
- The names of the delivery streams.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withDeliveryStreamNames
public ListDeliveryStreamsResult withDeliveryStreamNames(Collection<String> deliveryStreamNames)
The names of the delivery streams.
- Parameters:
deliveryStreamNames
- The names of the delivery streams.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setHasMoreDeliveryStreams
public void setHasMoreDeliveryStreams(Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
- Parameters:
hasMoreDeliveryStreams
- Indicates whether there are more delivery streams available to list.
-
getHasMoreDeliveryStreams
public Boolean getHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
- Returns:
- Indicates whether there are more delivery streams available to list.
-
withHasMoreDeliveryStreams
public ListDeliveryStreamsResult withHasMoreDeliveryStreams(Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
- Parameters:
hasMoreDeliveryStreams
- Indicates whether there are more delivery streams available to list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isHasMoreDeliveryStreams
public Boolean isHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
- Returns:
- Indicates whether there are more delivery streams available to list.
-
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 ListDeliveryStreamsResult clone()
-
-