Cloneable
, ReadLimitInfo
, ToCopyableBuilder<GetShardIteratorRequest.Builder,GetShardIteratorRequest>
@Generated("software.amazon.awssdk:codegen") public class GetShardIteratorRequest extends AmazonWebServiceRequest implements ToCopyableBuilder<GetShardIteratorRequest.Builder,GetShardIteratorRequest>
Represents the input for GetShardIterator
.
Modifier and Type | Class | Description |
---|---|---|
static interface |
GetShardIteratorRequest.Builder |
NOOP
Modifier and Type | Method | Description |
---|---|---|
static GetShardIteratorRequest.Builder |
builder() |
|
boolean |
equals(Object obj) |
|
int |
hashCode() |
|
static Class<? extends GetShardIteratorRequest.Builder> |
serializableBuilderClass() |
|
String |
shardId() |
The shard ID of the Amazon Kinesis shard to get the iterator for.
|
String |
shardIteratorType() |
Determines how the shard iterator is used to start reading data records from the shard.
|
String |
startingSequenceNumber() |
The sequence number of the data record in the shard from which to start reading.
|
String |
streamName() |
The name of the Amazon Kinesis stream.
|
Date |
timestamp() |
The timestamp of the data record from which to start reading.
|
GetShardIteratorRequest.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
clone, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout
public String streamName()
The name of the Amazon Kinesis stream.
public String shardId()
The shard ID of the Amazon Kinesis shard to get the iterator for.
public String shardIteratorType()
Determines how the shard iterator is used to start reading data records from the shard.
The following are the valid Amazon Kinesis shard iterator types:
AT_SEQUENCE_NUMBER - Start reading from the position denoted by a specific sequence number, provided in the value
StartingSequenceNumber
.
AFTER_SEQUENCE_NUMBER - Start reading right after the position denoted by a specific sequence number, provided in
the value StartingSequenceNumber
.
AT_TIMESTAMP - Start reading from the position denoted by a specific timestamp, provided in the value
Timestamp
.
TRIM_HORIZON - Start reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.
LATEST - Start reading just after the most recent record in the shard, so that you always read the most recent data in the shard.
The following are the valid Amazon Kinesis shard iterator types:
AT_SEQUENCE_NUMBER - Start reading from the position denoted by a specific sequence number, provided in
the value StartingSequenceNumber
.
AFTER_SEQUENCE_NUMBER - Start reading right after the position denoted by a specific sequence number,
provided in the value StartingSequenceNumber
.
AT_TIMESTAMP - Start reading from the position denoted by a specific timestamp, provided in the value
Timestamp
.
TRIM_HORIZON - Start reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.
LATEST - Start reading just after the most recent record in the shard, so that you always read the most recent data in the shard.
ShardIteratorType
public String startingSequenceNumber()
The sequence number of the data record in the shard from which to start reading. Used with shard iterator type AT_SEQUENCE_NUMBER and AFTER_SEQUENCE_NUMBER.
public Date timestamp()
The timestamp of the data record from which to start reading. Used with shard iterator type AT_TIMESTAMP. A
timestamp is the Unix epoch date with precision in milliseconds. For example,
2016-04-04T19:58:46.480-00:00
or 1459799926.480
. If a record with this exact timestamp
does not exist, the iterator returned is for the next (later) record. If the timestamp is older than the current
trim horizon, the iterator returned is for the oldest untrimmed data record (TRIM_HORIZON).
2016-04-04T19:58:46.480-00:00
or 1459799926.480
. If a record with this exact
timestamp does not exist, the iterator returned is for the next (later) record. If the timestamp is older
than the current trim horizon, the iterator returned is for the oldest untrimmed data record
(TRIM_HORIZON).public GetShardIteratorRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<GetShardIteratorRequest.Builder,GetShardIteratorRequest>
public static GetShardIteratorRequest.Builder builder()
public static Class<? extends GetShardIteratorRequest.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.