/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the response to the
* GetReusableDelegationSet
request.See Also:
AWS
* API Reference
A complex type that contains information about the reusable delegation * set.
*/ inline const DelegationSet& GetDelegationSet() const{ return m_delegationSet; } /** *A complex type that contains information about the reusable delegation * set.
*/ inline void SetDelegationSet(const DelegationSet& value) { m_delegationSet = value; } /** *A complex type that contains information about the reusable delegation * set.
*/ inline void SetDelegationSet(DelegationSet&& value) { m_delegationSet = std::move(value); } /** *A complex type that contains information about the reusable delegation * set.
*/ inline GetReusableDelegationSetResult& WithDelegationSet(const DelegationSet& value) { SetDelegationSet(value); return *this;} /** *A complex type that contains information about the reusable delegation * set.
*/ inline GetReusableDelegationSetResult& WithDelegationSet(DelegationSet&& value) { SetDelegationSet(std::move(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 GetReusableDelegationSetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetReusableDelegationSetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetReusableDelegationSetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DelegationSet m_delegationSet; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws