Class DescribeStreamResult
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.model.DescribeStreamResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeStreamResult extends Object implements Serializable, Cloneable
Represents the output of a DescribeStream operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeStreamResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeStreamResult
clone()
boolean
equals(Object obj)
StreamDescription
getStreamDescription()
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.int
hashCode()
void
setStreamDescription(StreamDescription streamDescription)
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeStreamResult
withStreamDescription(StreamDescription streamDescription)
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
-
-
-
Method Detail
-
setStreamDescription
public void setStreamDescription(StreamDescription streamDescription)
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
- Parameters:
streamDescription
- A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
-
getStreamDescription
public StreamDescription getStreamDescription()
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
- Returns:
- A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
-
withStreamDescription
public DescribeStreamResult withStreamDescription(StreamDescription streamDescription)
A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.
- Parameters:
streamDescription
- A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.- 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 DescribeStreamResult clone()
-
-