pub struct BatchDeletePartitionRequest {
pub catalog_id: Option<String>,
pub database_name: String,
pub partitions_to_delete: Vec<PartitionValueList>,
pub table_name: String,
}
Fields§
§catalog_id: Option<String>
The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the AWS account ID is used by default.
database_name: String
The name of the catalog database in which the table in question resides.
partitions_to_delete: Vec<PartitionValueList>
A list of PartitionInput
structures that define the partitions to be deleted.
table_name: String
The name of the table that contains the partitions to be deleted.
Trait Implementations§
Source§impl Clone for BatchDeletePartitionRequest
impl Clone for BatchDeletePartitionRequest
Source§fn clone(&self) -> BatchDeletePartitionRequest
fn clone(&self) -> BatchDeletePartitionRequest
Returns a duplicate 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 BatchDeletePartitionRequest
impl Debug for BatchDeletePartitionRequest
Source§impl Default for BatchDeletePartitionRequest
impl Default for BatchDeletePartitionRequest
Source§fn default() -> BatchDeletePartitionRequest
fn default() -> BatchDeletePartitionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BatchDeletePartitionRequest
Auto Trait Implementations§
impl Freeze for BatchDeletePartitionRequest
impl RefUnwindSafe for BatchDeletePartitionRequest
impl Send for BatchDeletePartitionRequest
impl Sync for BatchDeletePartitionRequest
impl Unpin for BatchDeletePartitionRequest
impl UnwindSafe for BatchDeletePartitionRequest
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