pub struct UpdatePartitionRequest {
pub catalog_id: Option<String>,
pub database_name: String,
pub partition_input: PartitionInput,
pub partition_value_list: Vec<String>,
pub table_name: String,
}
Fields§
§catalog_id: Option<String>
The ID of the Data Catalog where the partition to be updated 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.
partition_input: PartitionInput
The new partition object to update the partition to.
partition_value_list: Vec<String>
A list of the values defining the partition.
table_name: String
The name of the table in which the partition to be updated is located.
Trait Implementations§
Source§impl Clone for UpdatePartitionRequest
impl Clone for UpdatePartitionRequest
Source§fn clone(&self) -> UpdatePartitionRequest
fn clone(&self) -> UpdatePartitionRequest
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 UpdatePartitionRequest
impl Debug for UpdatePartitionRequest
Source§impl Default for UpdatePartitionRequest
impl Default for UpdatePartitionRequest
Source§fn default() -> UpdatePartitionRequest
fn default() -> UpdatePartitionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePartitionRequest
impl PartialEq for UpdatePartitionRequest
Source§impl Serialize for UpdatePartitionRequest
impl Serialize for UpdatePartitionRequest
impl StructuralPartialEq for UpdatePartitionRequest
Auto Trait Implementations§
impl Freeze for UpdatePartitionRequest
impl RefUnwindSafe for UpdatePartitionRequest
impl Send for UpdatePartitionRequest
impl Sync for UpdatePartitionRequest
impl Unpin for UpdatePartitionRequest
impl UnwindSafe for UpdatePartitionRequest
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