public class DescribeStreamRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
DescribeStream operation
.
Describes the specified stream.
The information about the stream includes its current status, its Amazon Resource Name (ARN), and an array of shard objects. For each shard object, there is information about the hash key and sequence number ranges that the shard spans, and the IDs of any earlier shards that played in a role in creating the shard. A sequence number is the identifier associated with every record ingested in the Amazon Kinesis stream. The sequence number is assigned when a record is put into the stream.
You can limit the number of returned shards using the
Limit
parameter. The number of shards in a stream may be
too large to return from a single call to DescribeStream
. You can detect this by using the HasMoreShards
flag in
the returned output. HasMoreShards
is set to
true
when there is more data available.
DescribeStream
is a paginated operation. If there are
more shards available, you can request them using the shard ID of the
last shard returned. Specify this ID in the
ExclusiveStartShardId
parameter in a subsequent request
to DescribeStream
.
DescribeStream has a limit of 10 transactions per second per account.
NOOP
Constructor and Description |
---|
DescribeStreamRequest() |
Modifier and Type | Method and Description |
---|---|
DescribeStreamRequest |
clone() |
boolean |
equals(Object obj) |
String |
getExclusiveStartShardId()
The shard ID of the shard to start with.
|
Integer |
getLimit()
The maximum number of shards to return.
|
String |
getStreamName()
The name of the stream to describe.
|
int |
hashCode() |
void |
setExclusiveStartShardId(String exclusiveStartShardId)
The shard ID of the shard to start with.
|
void |
setLimit(Integer limit)
The maximum number of shards to return.
|
void |
setStreamName(String streamName)
The name of the stream to describe.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DescribeStreamRequest |
withExclusiveStartShardId(String exclusiveStartShardId)
The shard ID of the shard to start with.
|
DescribeStreamRequest |
withLimit(Integer limit)
The maximum number of shards to return.
|
DescribeStreamRequest |
withStreamName(String streamName)
The name of the stream to describe.
|
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public String getStreamName()
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
public void setStreamName(String streamName)
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
streamName
- The name of the stream to describe.public DescribeStreamRequest withStreamName(String streamName)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
streamName
- The name of the stream to describe.public Integer getLimit()
Constraints:
Range: 1 - 10000
public void setLimit(Integer limit)
Constraints:
Range: 1 - 10000
limit
- The maximum number of shards to return.public DescribeStreamRequest withLimit(Integer limit)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 1 - 10000
limit
- The maximum number of shards to return.public String getExclusiveStartShardId()
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
public void setExclusiveStartShardId(String exclusiveStartShardId)
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
exclusiveStartShardId
- The shard ID of the shard to start with.public DescribeStreamRequest withExclusiveStartShardId(String exclusiveStartShardId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 128
Pattern: [a-zA-Z0-9_.-]+
exclusiveStartShardId
- The shard ID of the shard to start with.public String toString()
toString
in class Object
Object.toString()
public DescribeStreamRequest clone()
clone
in class AmazonWebServiceRequest
Copyright © 2015. All rights reserved.