Struct aws_sdk_dynamodbstreams::client::fluent_builders::GetRecords [−][src]
pub struct GetRecords<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to GetRecords
.
Retrieves the stream records from a given shard.
Specify a shard iterator using the ShardIterator
parameter. The shard iterator
specifies the position in the shard from which you want to start reading stream records
sequentially. If there are no stream records available in the portion of the shard that the
iterator points to, GetRecords
returns an empty list. Note that it might take
multiple calls to get to a portion of the shard that contains stream records.
GetRecords
can retrieve a maximum of 1 MB of data or 1000 stream records,
whichever comes first.
Implementations
impl<C, M, R> GetRecords<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetRecords<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(self) -> Result<GetRecordsOutput, SdkError<GetRecordsError>> where
R::Policy: SmithyRetryPolicy<GetRecordsInputOperationOutputAlias, GetRecordsOutput, GetRecordsError, GetRecordsInputOperationRetryAlias>,
pub async fn send(self) -> Result<GetRecordsOutput, SdkError<GetRecordsError>> where
R::Policy: SmithyRetryPolicy<GetRecordsInputOperationOutputAlias, GetRecordsOutput, GetRecordsError, GetRecordsInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
The maximum number of records to return from the shard. The upper limit is 1000.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for GetRecords<C, M, R>
impl<C, M, R> Unpin for GetRecords<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for GetRecords<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more