aws_sdk_lakeformation/client/extend_transaction.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 [`ExtendTransaction`](crate::operation::extend_transaction::builders::ExtendTransactionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`transaction_id(impl Into<String>)`](crate::operation::extend_transaction::builders::ExtendTransactionFluentBuilder::transaction_id) / [`set_transaction_id(Option<String>)`](crate::operation::extend_transaction::builders::ExtendTransactionFluentBuilder::set_transaction_id):<br>required: **false**<br><p>The transaction to extend.</p><br>
7 /// - On success, responds with [`ExtendTransactionOutput`](crate::operation::extend_transaction::ExtendTransactionOutput)
8 /// - On failure, responds with [`SdkError<ExtendTransactionError>`](crate::operation::extend_transaction::ExtendTransactionError)
9 pub fn extend_transaction(&self) -> crate::operation::extend_transaction::builders::ExtendTransactionFluentBuilder {
10 crate::operation::extend_transaction::builders::ExtendTransactionFluentBuilder::new(self.handle.clone())
11 }
12}