68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
|
|||
|
|
#include <aws/cognito-idp/model/DomainDescriptionType.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CognitoIdentityProvider
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_COGNITOIDENTITYPROVIDER_API DescribeUserPoolDomainResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeUserPoolDomainResult();
|
|||
|
|
DescribeUserPoolDomainResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
DescribeUserPoolDomainResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A domain description object containing information about the domain.</p>
|
|||
|
|
*/
|
|||
|
|
inline const DomainDescriptionType& GetDomainDescription() const{ return m_domainDescription; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A domain description object containing information about the domain.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDomainDescription(const DomainDescriptionType& value) { m_domainDescription = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A domain description object containing information about the domain.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDomainDescription(DomainDescriptionType&& value) { m_domainDescription = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A domain description object containing information about the domain.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeUserPoolDomainResult& WithDomainDescription(const DomainDescriptionType& value) { SetDomainDescription(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A domain description object containing information about the domain.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeUserPoolDomainResult& WithDomainDescription(DomainDescriptionType&& value) { SetDomainDescription(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
DomainDescriptionType m_domainDescription;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CognitoIdentityProvider
|
|||
|
|
} // namespace Aws
|