Struct aws_sdk_dynamodbstreams::input::GetRecordsInput [−][src]
#[non_exhaustive]pub struct GetRecordsInput {
pub shard_iterator: Option<String>,
pub limit: Option<i32>,
}
Expand description
Represents the input of a GetRecords
operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.shard_iterator: Option<String>
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
limit: Option<i32>
The maximum number of records to return from the shard. The upper limit is 1000.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecords, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRecords, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetRecords
>
Creates a new builder-style object to manufacture GetRecordsInput
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetRecordsInput
impl Send for GetRecordsInput
impl Sync for GetRecordsInput
impl Unpin for GetRecordsInput
impl UnwindSafe for GetRecordsInput
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