#[non_exhaustive]pub struct GetPartitionIndexesInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub table_name: Option<String>,
pub next_token: Option<String>,
}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 catalog ID where the table resides.
database_name: Option<String>Specifies the name of a database from which you want to retrieve partition indexes.
table_name: Option<String>Specifies the name of a table for which you want to retrieve the partition indexes.
next_token: Option<String>A continuation token, included if this is a continuation call.
Implementations§
source§impl GetPartitionIndexesInput
impl GetPartitionIndexesInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The catalog ID where the table resides.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
Specifies the name of a database from which you want to retrieve partition indexes.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
Specifies the name of a table for which you want to retrieve the partition indexes.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, included if this is a continuation call.
source§impl GetPartitionIndexesInput
impl GetPartitionIndexesInput
sourcepub fn builder() -> GetPartitionIndexesInputBuilder
pub fn builder() -> GetPartitionIndexesInputBuilder
Creates a new builder-style object to manufacture GetPartitionIndexesInput.
Trait Implementations§
source§impl Clone for GetPartitionIndexesInput
impl Clone for GetPartitionIndexesInput
source§fn clone(&self) -> GetPartitionIndexesInput
fn clone(&self) -> GetPartitionIndexesInput
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 GetPartitionIndexesInput
impl Debug for GetPartitionIndexesInput
source§impl PartialEq for GetPartitionIndexesInput
impl PartialEq for GetPartitionIndexesInput
source§fn eq(&self, other: &GetPartitionIndexesInput) -> bool
fn eq(&self, other: &GetPartitionIndexesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetPartitionIndexesInput
Auto Trait Implementations§
impl Freeze for GetPartitionIndexesInput
impl RefUnwindSafe for GetPartitionIndexesInput
impl Send for GetPartitionIndexesInput
impl Sync for GetPartitionIndexesInput
impl Unpin for GetPartitionIndexesInput
impl UnwindSafe for GetPartitionIndexesInput
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
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>
Creates a shared type from an unshared type.