58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/amplify/Amplify_EXPORTS.h>
|
|||
|
|
#include <aws/amplify/model/DomainAssociation.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Amplify
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_AMPLIFY_API DeleteDomainAssociationResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeleteDomainAssociationResult();
|
|||
|
|
DeleteDomainAssociationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
DeleteDomainAssociationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline const DomainAssociation& GetDomainAssociation() const{ return m_domainAssociation; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetDomainAssociation(const DomainAssociation& value) { m_domainAssociation = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetDomainAssociation(DomainAssociation&& value) { m_domainAssociation = std::move(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline DeleteDomainAssociationResult& WithDomainAssociation(const DomainAssociation& value) { SetDomainAssociation(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline DeleteDomainAssociationResult& WithDomainAssociation(DomainAssociation&& value) { SetDomainAssociation(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
DomainAssociation m_domainAssociation;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Amplify
|
|||
|
|
} // namespace Aws
|