#[non_exhaustive]pub struct BatchDeletePartitionInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub table_name: Option<String>,
pub partitions_to_delete: Option<Vec<PartitionValueList>>,
}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.catalog_id: Option<String>The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.
database_name: Option<String>The name of the catalog database in which the table in question resides.
table_name: Option<String>The name of the table that contains the partitions to be deleted.
partitions_to_delete: Option<Vec<PartitionValueList>>A list of PartitionInput structures that define the partitions to be deleted.
Implementations§
source§impl BatchDeletePartitionInput
impl BatchDeletePartitionInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog where the partition to be deleted resides. If none is provided, 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 in which the table in question resides.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table that contains the partitions to be deleted.
sourcepub fn partitions_to_delete(&self) -> &[PartitionValueList]
pub fn partitions_to_delete(&self) -> &[PartitionValueList]
A list of PartitionInput structures that define the partitions to be deleted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .partitions_to_delete.is_none().
source§impl BatchDeletePartitionInput
impl BatchDeletePartitionInput
sourcepub fn builder() -> BatchDeletePartitionInputBuilder
pub fn builder() -> BatchDeletePartitionInputBuilder
Creates a new builder-style object to manufacture BatchDeletePartitionInput.
Trait Implementations§
source§impl Clone for BatchDeletePartitionInput
impl Clone for BatchDeletePartitionInput
source§fn clone(&self) -> BatchDeletePartitionInput
fn clone(&self) -> BatchDeletePartitionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BatchDeletePartitionInput
impl Debug for BatchDeletePartitionInput
source§impl PartialEq for BatchDeletePartitionInput
impl PartialEq for BatchDeletePartitionInput
source§fn eq(&self, other: &BatchDeletePartitionInput) -> bool
fn eq(&self, other: &BatchDeletePartitionInput) -> bool
self and other values to be equal, and is used
by ==.