Struct aws_sdk_dynamodb::types::ConsumedCapacity
source · #[non_exhaustive]pub struct ConsumedCapacity {
pub table_name: Option<String>,
pub capacity_units: Option<f64>,
pub read_capacity_units: Option<f64>,
pub write_capacity_units: Option<f64>,
pub table: Option<Capacity>,
pub local_secondary_indexes: Option<HashMap<String, Capacity>>,
pub global_secondary_indexes: Option<HashMap<String, Capacity>>,
}
Expand description
The capacity units consumed by an operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation. ConsumedCapacity
is only returned if the request asked for it. For more information, see Provisioned capacity mode in the Amazon DynamoDB Developer Guide.
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.table_name: Option<String>
The name of the table that was affected by the operation. If you had specified the Amazon Resource Name (ARN) of a table in the input, you'll see the table ARN in the response.
capacity_units: Option<f64>
The total number of capacity units consumed by the operation.
read_capacity_units: Option<f64>
The total number of read capacity units consumed by the operation.
write_capacity_units: Option<f64>
The total number of write capacity units consumed by the operation.
table: Option<Capacity>
The amount of throughput consumed on the table affected by the operation.
local_secondary_indexes: Option<HashMap<String, Capacity>>
The amount of throughput consumed on each local index affected by the operation.
global_secondary_indexes: Option<HashMap<String, Capacity>>
The amount of throughput consumed on each global index affected by the operation.
Implementations§
source§impl ConsumedCapacity
impl ConsumedCapacity
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table that was affected by the operation. If you had specified the Amazon Resource Name (ARN) of a table in the input, you'll see the table ARN in the response.
sourcepub fn capacity_units(&self) -> Option<f64>
pub fn capacity_units(&self) -> Option<f64>
The total number of capacity units consumed by the operation.
sourcepub fn read_capacity_units(&self) -> Option<f64>
pub fn read_capacity_units(&self) -> Option<f64>
The total number of read capacity units consumed by the operation.
sourcepub fn write_capacity_units(&self) -> Option<f64>
pub fn write_capacity_units(&self) -> Option<f64>
The total number of write capacity units consumed by the operation.
sourcepub fn table(&self) -> Option<&Capacity>
pub fn table(&self) -> Option<&Capacity>
The amount of throughput consumed on the table affected by the operation.
source§impl ConsumedCapacity
impl ConsumedCapacity
sourcepub fn builder() -> ConsumedCapacityBuilder
pub fn builder() -> ConsumedCapacityBuilder
Creates a new builder-style object to manufacture ConsumedCapacity
.
Trait Implementations§
source§impl Clone for ConsumedCapacity
impl Clone for ConsumedCapacity
source§fn clone(&self) -> ConsumedCapacity
fn clone(&self) -> ConsumedCapacity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConsumedCapacity
impl Debug for ConsumedCapacity
source§impl PartialEq for ConsumedCapacity
impl PartialEq for ConsumedCapacity
source§fn eq(&self, other: &ConsumedCapacity) -> bool
fn eq(&self, other: &ConsumedCapacity) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConsumedCapacity
Auto Trait Implementations§
impl Freeze for ConsumedCapacity
impl RefUnwindSafe for ConsumedCapacity
impl Send for ConsumedCapacity
impl Sync for ConsumedCapacity
impl Unpin for ConsumedCapacity
impl UnwindSafe for ConsumedCapacity
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more