/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CodeArtifact { namespace Model { class AWS_CODEARTIFACT_API DescribeDomainResult { public: DescribeDomainResult(); DescribeDomainResult(const Aws::AmazonWebServiceResult& result); DescribeDomainResult& operator=(const Aws::AmazonWebServiceResult& result); inline const DomainDescription& GetDomain() const{ return m_domain; } inline void SetDomain(const DomainDescription& value) { m_domain = value; } inline void SetDomain(DomainDescription&& value) { m_domain = std::move(value); } inline DescribeDomainResult& WithDomain(const DomainDescription& value) { SetDomain(value); return *this;} inline DescribeDomainResult& WithDomain(DomainDescription&& value) { SetDomain(std::move(value)); return *this;} private: DomainDescription m_domain; }; } // namespace Model } // namespace CodeArtifact } // namespace Aws