Struct aws_sdk_keyspaces::client::fluent_builders::GetTable
source · [−]pub struct GetTable { /* private fields */ }
Expand description
Fluent builder constructing a request to GetTable
.
Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata.
To read table metadata using GetTable
, Select
action permissions for the table and system tables are required to complete the operation.
Implementations
sourceimpl GetTable
impl GetTable
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetTable, AwsResponseRetryClassifier>, SdkError<GetTableError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetTable, AwsResponseRetryClassifier>, SdkError<GetTableError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<GetTableOutput, SdkError<GetTableError>>
pub async fn send(self) -> Result<GetTableOutput, SdkError<GetTableError>>
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 keyspace_name(self, input: impl Into<String>) -> Self
pub fn keyspace_name(self, input: impl Into<String>) -> Self
The name of the keyspace that the table is stored in.
sourcepub fn set_keyspace_name(self, input: Option<String>) -> Self
pub fn set_keyspace_name(self, input: Option<String>) -> Self
The name of the keyspace that the table is stored in.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table.