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 ListDeliveryStreamsResultclone()booleanequals(Object obj)List<String>getDeliveryStreamNames()The names of the delivery streams.BooleangetHasMoreDeliveryStreams()Indicates whether there are more delivery streams available to list.inthashCode()BooleanisHasMoreDeliveryStreams()Indicates whether there are more delivery streams available to list.voidsetDeliveryStreamNames(Collection<String> deliveryStreamNames)The names of the delivery streams.voidsetHasMoreDeliveryStreams(Boolean hasMoreDeliveryStreams)Indicates whether there are more delivery streams available to list.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListDeliveryStreamsResultwithDeliveryStreamNames(String... deliveryStreamNames)The names of the delivery streams.ListDeliveryStreamsResultwithDeliveryStreamNames(Collection<String> deliveryStreamNames)The names of the delivery streams.ListDeliveryStreamsResultwithHasMoreDeliveryStreams(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListDeliveryStreamsResult clone()
-
-