Struct aws_sdk_glue::operation::create_partition_index::builders::CreatePartitionIndexFluentBuilder
source · pub struct CreatePartitionIndexFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreatePartitionIndex
.
Creates a specified partition index in an existing table.
Implementations§
source§impl CreatePartitionIndexFluentBuilder
impl CreatePartitionIndexFluentBuilder
sourcepub fn as_input(&self) -> &CreatePartitionIndexInputBuilder
pub fn as_input(&self) -> &CreatePartitionIndexInputBuilder
Access the CreatePartitionIndex as a reference.
sourcepub async fn send(
self,
) -> Result<CreatePartitionIndexOutput, SdkError<CreatePartitionIndexError, HttpResponse>>
pub async fn send( self, ) -> Result<CreatePartitionIndexOutput, SdkError<CreatePartitionIndexError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<CreatePartitionIndexOutput, CreatePartitionIndexError, Self>
pub fn customize( self, ) -> CustomizableOperation<CreatePartitionIndexOutput, CreatePartitionIndexError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 in which you want to create a partition index.
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 in which you want to create 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 in which you want to create 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 in which you want to create a partition index.
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 in which you want to create 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 in which you want to create a partition index.
sourcepub fn partition_index(self, input: PartitionIndex) -> Self
pub fn partition_index(self, input: PartitionIndex) -> Self
Specifies a PartitionIndex
structure to create a partition index in an existing table.
sourcepub fn set_partition_index(self, input: Option<PartitionIndex>) -> Self
pub fn set_partition_index(self, input: Option<PartitionIndex>) -> Self
Specifies a PartitionIndex
structure to create a partition index in an existing table.
sourcepub fn get_partition_index(&self) -> &Option<PartitionIndex>
pub fn get_partition_index(&self) -> &Option<PartitionIndex>
Specifies a PartitionIndex
structure to create a partition index in an existing table.
Trait Implementations§
source§impl Clone for CreatePartitionIndexFluentBuilder
impl Clone for CreatePartitionIndexFluentBuilder
source§fn clone(&self) -> CreatePartitionIndexFluentBuilder
fn clone(&self) -> CreatePartitionIndexFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for CreatePartitionIndexFluentBuilder
impl !RefUnwindSafe for CreatePartitionIndexFluentBuilder
impl Send for CreatePartitionIndexFluentBuilder
impl Sync for CreatePartitionIndexFluentBuilder
impl Unpin for CreatePartitionIndexFluentBuilder
impl !UnwindSafe for CreatePartitionIndexFluentBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more