/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Route53 { namespace Model { class GetDNSSECResult { public: AWS_ROUTE53_API GetDNSSECResult(); AWS_ROUTE53_API GetDNSSECResult(const Aws::AmazonWebServiceResult& result); AWS_ROUTE53_API GetDNSSECResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A string repesenting the status of DNSSEC.

*/ inline const DNSSECStatus& GetStatus() const{ return m_status; } /** *

A string repesenting the status of DNSSEC.

*/ inline void SetStatus(const DNSSECStatus& value) { m_status = value; } /** *

A string repesenting the status of DNSSEC.

*/ inline void SetStatus(DNSSECStatus&& value) { m_status = std::move(value); } /** *

A string repesenting the status of DNSSEC.

*/ inline GetDNSSECResult& WithStatus(const DNSSECStatus& value) { SetStatus(value); return *this;} /** *

A string repesenting the status of DNSSEC.

*/ inline GetDNSSECResult& WithStatus(DNSSECStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The key-signing keys (KSKs) in your account.

*/ inline const Aws::Vector& GetKeySigningKeys() const{ return m_keySigningKeys; } /** *

The key-signing keys (KSKs) in your account.

*/ inline void SetKeySigningKeys(const Aws::Vector& value) { m_keySigningKeys = value; } /** *

The key-signing keys (KSKs) in your account.

*/ inline void SetKeySigningKeys(Aws::Vector&& value) { m_keySigningKeys = std::move(value); } /** *

The key-signing keys (KSKs) in your account.

*/ inline GetDNSSECResult& WithKeySigningKeys(const Aws::Vector& value) { SetKeySigningKeys(value); return *this;} /** *

The key-signing keys (KSKs) in your account.

*/ inline GetDNSSECResult& WithKeySigningKeys(Aws::Vector&& value) { SetKeySigningKeys(std::move(value)); return *this;} /** *

The key-signing keys (KSKs) in your account.

*/ inline GetDNSSECResult& AddKeySigningKeys(const KeySigningKey& value) { m_keySigningKeys.push_back(value); return *this; } /** *

The key-signing keys (KSKs) in your account.

*/ inline GetDNSSECResult& AddKeySigningKeys(KeySigningKey&& value) { m_keySigningKeys.push_back(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 GetDNSSECResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDNSSECResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDNSSECResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DNSSECStatus m_status; Aws::Vector m_keySigningKeys; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws