#[non_exhaustive]pub struct BatchReadInput {
pub directory_arn: Option<String>,
pub operations: Option<Vec<BatchReadOperation>>,
pub consistency_level: Option<ConsistencyLevel>,
}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.directory_arn: Option<String>The Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
operations: Option<Vec<BatchReadOperation>>A list of operations that are part of the batch.
consistency_level: Option<ConsistencyLevel>Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
Implementations§
source§impl BatchReadInput
impl BatchReadInput
sourcepub fn directory_arn(&self) -> Option<&str>
pub fn directory_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
sourcepub fn operations(&self) -> &[BatchReadOperation]
pub fn operations(&self) -> &[BatchReadOperation]
A list of operations that are part of the batch.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .operations.is_none().
sourcepub fn consistency_level(&self) -> Option<&ConsistencyLevel>
pub fn consistency_level(&self) -> Option<&ConsistencyLevel>
Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
source§impl BatchReadInput
impl BatchReadInput
sourcepub fn builder() -> BatchReadInputBuilder
pub fn builder() -> BatchReadInputBuilder
Creates a new builder-style object to manufacture BatchReadInput.
Trait Implementations§
source§impl Clone for BatchReadInput
impl Clone for BatchReadInput
source§fn clone(&self) -> BatchReadInput
fn clone(&self) -> BatchReadInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BatchReadInput
impl Debug for BatchReadInput
source§impl PartialEq for BatchReadInput
impl PartialEq for BatchReadInput
source§fn eq(&self, other: &BatchReadInput) -> bool
fn eq(&self, other: &BatchReadInput) -> bool
self and other values to be equal, and is used
by ==.