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