aws_sdk_directconnect/client/describe_connection_loa.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 [`DescribeConnectionLoa`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`connection_id(impl Into<String>)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::connection_id) / [`set_connection_id(Option<String>)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::set_connection_id):<br>required: **true**<br><p>The ID of the connection.</p><br>
7 /// - [`provider_name(impl Into<String>)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::provider_name) / [`set_provider_name(Option<String>)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::set_provider_name):<br>required: **false**<br><p>The name of the APN partner or service provider who establishes connectivity on your behalf. If you specify this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.</p><br>
8 /// - [`loa_content_type(LoaContentType)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::loa_content_type) / [`set_loa_content_type(Option<LoaContentType>)`](crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::set_loa_content_type):<br>required: **false**<br><p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p><br>
9 /// - On success, responds with [`DescribeConnectionLoaOutput`](crate::operation::describe_connection_loa::DescribeConnectionLoaOutput) with field(s):
10 /// - [`loa(Option<Loa>)`](crate::operation::describe_connection_loa::DescribeConnectionLoaOutput::loa): <p>The Letter of Authorization - Connecting Facility Assignment (LOA-CFA).</p>
11 /// - On failure, responds with [`SdkError<DescribeConnectionLoaError>`](crate::operation::describe_connection_loa::DescribeConnectionLoaError)
12 #[deprecated]
13 pub fn describe_connection_loa(&self) -> crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder {
14 crate::operation::describe_connection_loa::builders::DescribeConnectionLoaFluentBuilder::new(self.handle.clone())
15 }
16}