pub struct BatchCreatePartitionRequest {
pub catalog_id: Option<String>,
pub database_name: String,
pub partition_input_list: Vec<PartitionInput>,
pub table_name: String,
}
Fields§
§catalog_id: Option<String>
The ID of the catalog in which the partition is to be created. Currently, this should be the AWS account ID.
database_name: String
The name of the metadata database in which the partition is to be created.
partition_input_list: Vec<PartitionInput>
A list of PartitionInput
structures that define the partitions to be created.
table_name: String
The name of the metadata table in which the partition is to be created.
Trait Implementations§
Source§impl Clone for BatchCreatePartitionRequest
impl Clone for BatchCreatePartitionRequest
Source§fn clone(&self) -> BatchCreatePartitionRequest
fn clone(&self) -> BatchCreatePartitionRequest
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 BatchCreatePartitionRequest
impl Debug for BatchCreatePartitionRequest
Source§impl Default for BatchCreatePartitionRequest
impl Default for BatchCreatePartitionRequest
Source§fn default() -> BatchCreatePartitionRequest
fn default() -> BatchCreatePartitionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BatchCreatePartitionRequest
Auto Trait Implementations§
impl Freeze for BatchCreatePartitionRequest
impl RefUnwindSafe for BatchCreatePartitionRequest
impl Send for BatchCreatePartitionRequest
impl Sync for BatchCreatePartitionRequest
impl Unpin for BatchCreatePartitionRequest
impl UnwindSafe for BatchCreatePartitionRequest
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