This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codeartifact/include/aws/codeartifact/model/DeleteDomainResult.h

73 lines
1.9 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codeartifact/CodeArtifact_EXPORTS.h>
#include <aws/codeartifact/model/DomainDescription.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CodeArtifact
{
namespace Model
{
class AWS_CODEARTIFACT_API DeleteDomainResult
{
public:
DeleteDomainResult();
DeleteDomainResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DeleteDomainResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p> Contains information about the deleted domain after processing the request.
* </p>
*/
inline const DomainDescription& GetDomain() const{ return m_domain; }
/**
* <p> Contains information about the deleted domain after processing the request.
* </p>
*/
inline void SetDomain(const DomainDescription& value) { m_domain = value; }
/**
* <p> Contains information about the deleted domain after processing the request.
* </p>
*/
inline void SetDomain(DomainDescription&& value) { m_domain = std::move(value); }
/**
* <p> Contains information about the deleted domain after processing the request.
* </p>
*/
inline DeleteDomainResult& WithDomain(const DomainDescription& value) { SetDomain(value); return *this;}
/**
* <p> Contains information about the deleted domain after processing the request.
* </p>
*/
inline DeleteDomainResult& WithDomain(DomainDescription&& value) { SetDomain(std::move(value)); return *this;}
private:
DomainDescription m_domain;
};
} // namespace Model
} // namespace CodeArtifact
} // namespace Aws