pub struct BatchDeleteTableVersionRequest {
pub catalog_id: Option<String>,
pub database_name: String,
pub table_name: String,
pub version_ids: Vec<String>,
}
Fields§
§catalog_id: Option<String>
The ID of the Data Catalog where the tables reside. If none is provided, the AWS account ID is used by default.
database_name: String
The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.
table_name: String
The name of the table. For Hive compatibility, this name is entirely lowercase.
version_ids: Vec<String>
A list of the IDs of versions to be deleted. A VersionId
is a string representation of an integer. Each version is incremented by 1.
Trait Implementations§
Source§impl Clone for BatchDeleteTableVersionRequest
impl Clone for BatchDeleteTableVersionRequest
Source§fn clone(&self) -> BatchDeleteTableVersionRequest
fn clone(&self) -> BatchDeleteTableVersionRequest
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 Default for BatchDeleteTableVersionRequest
impl Default for BatchDeleteTableVersionRequest
Source§fn default() -> BatchDeleteTableVersionRequest
fn default() -> BatchDeleteTableVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchDeleteTableVersionRequest
impl PartialEq for BatchDeleteTableVersionRequest
Source§fn eq(&self, other: &BatchDeleteTableVersionRequest) -> bool
fn eq(&self, other: &BatchDeleteTableVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchDeleteTableVersionRequest
Auto Trait Implementations§
impl Freeze for BatchDeleteTableVersionRequest
impl RefUnwindSafe for BatchDeleteTableVersionRequest
impl Send for BatchDeleteTableVersionRequest
impl Sync for BatchDeleteTableVersionRequest
impl Unpin for BatchDeleteTableVersionRequest
impl UnwindSafe for BatchDeleteTableVersionRequest
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