1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeLoa`](crate::operation::describe_loa::builders::DescribeLoaFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DescribeLoaOutput`](crate::operation::describe_loa::DescribeLoaOutput) with field(s):
    ///   - [`loa_content(Option<Blob>)`](crate::operation::describe_loa::DescribeLoaOutput::loa_content): <p>The binary contents of the LOA-CFA document.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<DescribeLoaError>`](crate::operation::describe_loa::DescribeLoaError)
    pub fn describe_loa(&self) -> crate::operation::describe_loa::builders::DescribeLoaFluentBuilder {
        crate::operation::describe_loa::builders::DescribeLoaFluentBuilder::new(self.handle.clone())
    }
}