1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteTableVersion`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`catalog_id(impl Into<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.</p><br>
    ///   - [`database_name(impl Into<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::set_database_name):<br>required: **true**<br><p>The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.</p><br>
    ///   - [`table_name(impl Into<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table. For Hive compatibility, this name is entirely lowercase.</p><br>
    ///   - [`version_id(impl Into<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::version_id) / [`set_version_id(Option<String>)`](crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::set_version_id):<br>required: **true**<br><p>The ID of the table version to be deleted. A <code>VersionID</code> is a string representation of an integer. Each version is incremented by 1.</p><br>
    /// - On success, responds with [`DeleteTableVersionOutput`](crate::operation::delete_table_version::DeleteTableVersionOutput)
    /// - On failure, responds with [`SdkError<DeleteTableVersionError>`](crate::operation::delete_table_version::DeleteTableVersionError)
    pub fn delete_table_version(&self) -> crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder {
        crate::operation::delete_table_version::builders::DeleteTableVersionFluentBuilder::new(self.handle.clone())
    }
}