aws_sdk_glue/client/get_partition_indexes.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetPartitionIndexes`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`catalog_id(impl Into<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The catalog ID where the table resides.</p><br>
8 /// - [`database_name(impl Into<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::set_database_name):<br>required: **true**<br><p>Specifies the name of a database from which you want to retrieve partition indexes.</p><br>
9 /// - [`table_name(impl Into<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::set_table_name):<br>required: **true**<br><p>Specifies the name of a table for which you want to retrieve the partition indexes.</p><br>
10 /// - [`next_token(impl Into<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::set_next_token):<br>required: **false**<br><p>A continuation token, included if this is a continuation call.</p><br>
11 /// - On success, responds with [`GetPartitionIndexesOutput`](crate::operation::get_partition_indexes::GetPartitionIndexesOutput) with field(s):
12 /// - [`partition_index_descriptor_list(Option<Vec::<PartitionIndexDescriptor>>)`](crate::operation::get_partition_indexes::GetPartitionIndexesOutput::partition_index_descriptor_list): <p>A list of index descriptors.</p>
13 /// - [`next_token(Option<String>)`](crate::operation::get_partition_indexes::GetPartitionIndexesOutput::next_token): <p>A continuation token, present if the current list segment is not the last.</p>
14 /// - On failure, responds with [`SdkError<GetPartitionIndexesError>`](crate::operation::get_partition_indexes::GetPartitionIndexesError)
15 pub fn get_partition_indexes(&self) -> crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder {
16 crate::operation::get_partition_indexes::builders::GetPartitionIndexesFluentBuilder::new(self.handle.clone())
17 }
18}