aws_sdk_cloudfront/client/
describe_connection_function.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 [`DescribeConnectionFunction`](crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`identifier(impl Into<String>)`](crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder::set_identifier):<br>required: **true**<br><p>The connection function's identifier.</p><br>
7    ///   - [`stage(FunctionStage)`](crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder::stage) / [`set_stage(Option<FunctionStage>)`](crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder::set_stage):<br>required: **false**<br><p>The connection function's stage.</p><br>
8    /// - On success, responds with [`DescribeConnectionFunctionOutput`](crate::operation::describe_connection_function::DescribeConnectionFunctionOutput) with field(s):
9    ///   - [`connection_function_summary(Option<ConnectionFunctionSummary>)`](crate::operation::describe_connection_function::DescribeConnectionFunctionOutput::connection_function_summary): <p>The connection function's summary.</p>
10    ///   - [`e_tag(Option<String>)`](crate::operation::describe_connection_function::DescribeConnectionFunctionOutput::e_tag): <p>The version identifier for the current version of the connection function.</p>
11    /// - On failure, responds with [`SdkError<DescribeConnectionFunctionError>`](crate::operation::describe_connection_function::DescribeConnectionFunctionError)
12    pub fn describe_connection_function(&self) -> crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder {
13        crate::operation::describe_connection_function::builders::DescribeConnectionFunctionFluentBuilder::new(self.handle.clone())
14    }
15}