#[non_exhaustive]pub struct BatchGetPartitionInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub table_name: Option<String>,
pub partitions_to_get: Option<Vec<PartitionValueList>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.catalog_id: Option<String>The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
database_name: Option<String>The name of the catalog database where the partitions reside.
table_name: Option<String>The name of the partitions' table.
partitions_to_get: Option<Vec<PartitionValueList>>A list of partition values identifying the partitions to retrieve.
Implementations§
source§impl BatchGetPartitionInput
impl BatchGetPartitionInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the catalog database where the partitions reside.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the partitions' table.
sourcepub fn partitions_to_get(&self) -> Option<&[PartitionValueList]>
pub fn partitions_to_get(&self) -> Option<&[PartitionValueList]>
A list of partition values identifying the partitions to retrieve.
source§impl BatchGetPartitionInput
impl BatchGetPartitionInput
sourcepub fn builder() -> BatchGetPartitionInputBuilder
pub fn builder() -> BatchGetPartitionInputBuilder
Creates a new builder-style object to manufacture BatchGetPartitionInput.
Trait Implementations§
source§impl Clone for BatchGetPartitionInput
impl Clone for BatchGetPartitionInput
source§fn clone(&self) -> BatchGetPartitionInput
fn clone(&self) -> BatchGetPartitionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BatchGetPartitionInput
impl Debug for BatchGetPartitionInput
source§impl PartialEq<BatchGetPartitionInput> for BatchGetPartitionInput
impl PartialEq<BatchGetPartitionInput> for BatchGetPartitionInput
source§fn eq(&self, other: &BatchGetPartitionInput) -> bool
fn eq(&self, other: &BatchGetPartitionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetPartitionInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchGetPartitionInput
impl Send for BatchGetPartitionInput
impl Sync for BatchGetPartitionInput
impl Unpin for BatchGetPartitionInput
impl UnwindSafe for BatchGetPartitionInput
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
Mutably borrows from an owned value. Read more