aws_sdk_directconnect/client/describe_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 [`DescribeLoa`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`connection_id(impl Into<String>)`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::connection_id) / [`set_connection_id(Option<String>)`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::set_connection_id):<br>required: **true**<br><p>The ID of a connection, LAG, or interconnect.</p><br>
7 /// - [`provider_name(impl Into<String>)`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::provider_name) / [`set_provider_name(Option<String>)`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::set_provider_name):<br>required: **false**<br><p>The name of the 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_loa::builders::DescribeLoaFluentBuilder::loa_content_type) / [`set_loa_content_type(Option<LoaContentType>)`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::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 [`DescribeLoaOutput`](crate::operation::describe_loa::DescribeLoaOutput) with field(s):
10 /// - [`loa_content(Option<Blob>)`](crate::operation::describe_loa::DescribeLoaOutput::loa_content): <p>The binary contents of the LOA-CFA document.</p>
11 /// - [`loa_content_type(Option<LoaContentType>)`](crate::operation::describe_loa::DescribeLoaOutput::loa_content_type): <p>The standard media type for the LOA-CFA document. The only supported value is application/pdf.</p>
12 /// - On failure, responds with [`SdkError<DescribeLoaError>`](crate::operation::describe_loa::DescribeLoaError)
13 pub fn describe_loa(&self) -> crate::operation::describe_loa::builders::DescribeLoaFluentBuilder {
14 crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::new(self.handle.clone())
15 }
16}