Struct aws_sdk_glue::operation::batch_get_partition::builders::BatchGetPartitionInputBuilder
source · #[non_exhaustive]pub struct BatchGetPartitionInputBuilder { /* private fields */ }
Expand description
A builder for BatchGetPartitionInput
.
Implementations§
source§impl BatchGetPartitionInputBuilder
impl BatchGetPartitionInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
sourcepub fn get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the catalog database where the partitions reside.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the catalog database where the partitions reside.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the catalog database where the partitions reside.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the partitions' table.
This field is required.sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the partitions' table.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the partitions' table.
sourcepub fn partitions_to_get(self, input: PartitionValueList) -> Self
pub fn partitions_to_get(self, input: PartitionValueList) -> Self
Appends an item to partitions_to_get
.
To override the contents of this collection use set_partitions_to_get
.
A list of partition values identifying the partitions to retrieve.
sourcepub fn set_partitions_to_get(
self,
input: Option<Vec<PartitionValueList>>
) -> Self
pub fn set_partitions_to_get( self, input: Option<Vec<PartitionValueList>> ) -> Self
A list of partition values identifying the partitions to retrieve.
sourcepub fn get_partitions_to_get(&self) -> &Option<Vec<PartitionValueList>>
pub fn get_partitions_to_get(&self) -> &Option<Vec<PartitionValueList>>
A list of partition values identifying the partitions to retrieve.
sourcepub fn build(self) -> Result<BatchGetPartitionInput, BuildError>
pub fn build(self) -> Result<BatchGetPartitionInput, BuildError>
Consumes the builder and constructs a BatchGetPartitionInput
.
source§impl BatchGetPartitionInputBuilder
impl BatchGetPartitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<BatchGetPartitionOutput, SdkError<BatchGetPartitionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<BatchGetPartitionOutput, SdkError<BatchGetPartitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchGetPartitionInputBuilder
impl Clone for BatchGetPartitionInputBuilder
source§fn clone(&self) -> BatchGetPartitionInputBuilder
fn clone(&self) -> BatchGetPartitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetPartitionInputBuilder
impl Default for BatchGetPartitionInputBuilder
source§fn default() -> BatchGetPartitionInputBuilder
fn default() -> BatchGetPartitionInputBuilder
source§impl PartialEq for BatchGetPartitionInputBuilder
impl PartialEq for BatchGetPartitionInputBuilder
source§fn eq(&self, other: &BatchGetPartitionInputBuilder) -> bool
fn eq(&self, other: &BatchGetPartitionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.