Struct aws_sdk_glue::operation::delete_partition_index::builders::DeletePartitionIndexInputBuilder
source · #[non_exhaustive]pub struct DeletePartitionIndexInputBuilder { /* private fields */ }Expand description
A builder for DeletePartitionIndexInput.
Implementations§
source§impl DeletePartitionIndexInputBuilder
impl DeletePartitionIndexInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The catalog ID where the table resides.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The catalog ID where the table resides.
sourcepub fn get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
The catalog ID where the table resides.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
Specifies the name of a database from which you want to delete a partition index.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
Specifies the name of a database from which you want to delete a partition index.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
Specifies the name of a database from which you want to delete a partition index.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
Specifies the name of a table from which you want to delete a partition index.
This field is required.sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
Specifies the name of a table from which you want to delete a partition index.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
Specifies the name of a table from which you want to delete a partition index.
sourcepub fn index_name(self, input: impl Into<String>) -> Self
pub fn index_name(self, input: impl Into<String>) -> Self
The name of the partition index to be deleted.
This field is required.sourcepub fn set_index_name(self, input: Option<String>) -> Self
pub fn set_index_name(self, input: Option<String>) -> Self
The name of the partition index to be deleted.
sourcepub fn get_index_name(&self) -> &Option<String>
pub fn get_index_name(&self) -> &Option<String>
The name of the partition index to be deleted.
sourcepub fn build(self) -> Result<DeletePartitionIndexInput, BuildError>
pub fn build(self) -> Result<DeletePartitionIndexInput, BuildError>
Consumes the builder and constructs a DeletePartitionIndexInput.
source§impl DeletePartitionIndexInputBuilder
impl DeletePartitionIndexInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeletePartitionIndexOutput, SdkError<DeletePartitionIndexError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeletePartitionIndexOutput, SdkError<DeletePartitionIndexError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeletePartitionIndexInputBuilder
impl Clone for DeletePartitionIndexInputBuilder
source§fn clone(&self) -> DeletePartitionIndexInputBuilder
fn clone(&self) -> DeletePartitionIndexInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeletePartitionIndexInputBuilder
impl Default for DeletePartitionIndexInputBuilder
source§fn default() -> DeletePartitionIndexInputBuilder
fn default() -> DeletePartitionIndexInputBuilder
source§impl PartialEq for DeletePartitionIndexInputBuilder
impl PartialEq for DeletePartitionIndexInputBuilder
source§fn eq(&self, other: &DeletePartitionIndexInputBuilder) -> bool
fn eq(&self, other: &DeletePartitionIndexInputBuilder) -> bool
self and other values to be equal, and is used
by ==.