aws-sdk-cloudwatchlogs 1.134.0

AWS SDK for Amazon CloudWatch Logs
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetLookupTable`](crate::operation::get_lookup_table::builders::GetLookupTableFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`lookup_table_arn(impl Into<String>)`](crate::operation::get_lookup_table::builders::GetLookupTableFluentBuilder::lookup_table_arn) / [`set_lookup_table_arn(Option<String>)`](crate::operation::get_lookup_table::builders::GetLookupTableFluentBuilder::set_lookup_table_arn):<br>required: **true**<br><p>The ARN of the lookup table to retrieve.</p><br>
    /// - On success, responds with [`GetLookupTableOutput`](crate::operation::get_lookup_table::GetLookupTableOutput) with field(s):
    ///   - [`lookup_table_arn(Option<String>)`](crate::operation::get_lookup_table::GetLookupTableOutput::lookup_table_arn): <p>The ARN of the lookup table.</p>
    ///   - [`lookup_table_name(Option<String>)`](crate::operation::get_lookup_table::GetLookupTableOutput::lookup_table_name): <p>The name of the lookup table.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_lookup_table::GetLookupTableOutput::description): <p>The description of the lookup table.</p>
    ///   - [`table_body(Option<String>)`](crate::operation::get_lookup_table::GetLookupTableOutput::table_body): <p>The full CSV content of the lookup table.</p>
    ///   - [`size_bytes(Option<i64>)`](crate::operation::get_lookup_table::GetLookupTableOutput::size_bytes): <p>The size of the lookup table in bytes.</p>
    ///   - [`last_updated_time(Option<i64>)`](crate::operation::get_lookup_table::GetLookupTableOutput::last_updated_time): <p>The time when the lookup table was last updated, expressed as the number of milliseconds after <code>Jan 1, 1970 00:00:00 UTC</code>.</p>
    ///   - [`kms_key_id(Option<String>)`](crate::operation::get_lookup_table::GetLookupTableOutput::kms_key_id): <p>The ARN of the KMS key used to encrypt the lookup table data, if applicable.</p>
    /// - On failure, responds with [`SdkError<GetLookupTableError>`](crate::operation::get_lookup_table::GetLookupTableError)
    pub fn get_lookup_table(&self) -> crate::operation::get_lookup_table::builders::GetLookupTableFluentBuilder {
        crate::operation::get_lookup_table::builders::GetLookupTableFluentBuilder::new(self.handle.clone())
    }
}