/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The UpdateUserPoolDomain response output.See Also:
AWS
* API Reference
The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline const Aws::String& GetCloudFrontDomain() const{ return m_cloudFrontDomain; } /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline void SetCloudFrontDomain(const Aws::String& value) { m_cloudFrontDomain = value; } /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline void SetCloudFrontDomain(Aws::String&& value) { m_cloudFrontDomain = std::move(value); } /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline void SetCloudFrontDomain(const char* value) { m_cloudFrontDomain.assign(value); } /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline UpdateUserPoolDomainResult& WithCloudFrontDomain(const Aws::String& value) { SetCloudFrontDomain(value); return *this;} /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline UpdateUserPoolDomainResult& WithCloudFrontDomain(Aws::String&& value) { SetCloudFrontDomain(std::move(value)); return *this;} /** *The Amazon CloudFront endpoint that Amazon Cognito set up when you added the * custom domain to your user pool.
*/ inline UpdateUserPoolDomainResult& WithCloudFrontDomain(const char* value) { SetCloudFrontDomain(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateUserPoolDomainResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateUserPoolDomainResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateUserPoolDomainResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_cloudFrontDomain; Aws::String m_requestId; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws