/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a Letter of Authorization - Connecting Facility Assignment
* (LOA-CFA) for a connection.See Also:
AWS
* API Reference
The binary contents of the LOA-CFA document.
*/ inline const Aws::Utils::ByteBuffer& GetLoaContent() const{ return m_loaContent; } /** *The binary contents of the LOA-CFA document.
*/ inline void SetLoaContent(const Aws::Utils::ByteBuffer& value) { m_loaContent = value; } /** *The binary contents of the LOA-CFA document.
*/ inline void SetLoaContent(Aws::Utils::ByteBuffer&& value) { m_loaContent = std::move(value); } /** *The binary contents of the LOA-CFA document.
*/ inline DescribeLoaResult& WithLoaContent(const Aws::Utils::ByteBuffer& value) { SetLoaContent(value); return *this;} /** *The binary contents of the LOA-CFA document.
*/ inline DescribeLoaResult& WithLoaContent(Aws::Utils::ByteBuffer&& value) { SetLoaContent(std::move(value)); return *this;} /** *The standard media type for the LOA-CFA document. The only supported value is * application/pdf.
*/ inline const LoaContentType& GetLoaContentType() const{ return m_loaContentType; } /** *The standard media type for the LOA-CFA document. The only supported value is * application/pdf.
*/ inline void SetLoaContentType(const LoaContentType& value) { m_loaContentType = value; } /** *The standard media type for the LOA-CFA document. The only supported value is * application/pdf.
*/ inline void SetLoaContentType(LoaContentType&& value) { m_loaContentType = std::move(value); } /** *The standard media type for the LOA-CFA document. The only supported value is * application/pdf.
*/ inline DescribeLoaResult& WithLoaContentType(const LoaContentType& value) { SetLoaContentType(value); return *this;} /** *The standard media type for the LOA-CFA document. The only supported value is * application/pdf.
*/ inline DescribeLoaResult& WithLoaContentType(LoaContentType&& value) { SetLoaContentType(std::move(value)); return *this;} private: Aws::Utils::ByteBuffer m_loaContent; LoaContentType m_loaContentType; }; } // namespace Model } // namespace DirectConnect } // namespace Aws