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

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline ListResolverDnssecConfigsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline ListResolverDnssecConfigsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If a response includes the last of the DNSSEC configurations that are * associated with the current Amazon Web Services account, NextToken * doesn't appear in the response.

If a response doesn't include the last of * the configurations, you can get more configurations by submitting another ListResolverDnssecConfigs * request. Get the value of NextToken that Amazon Route 53 returned * in the previous response and include it in NextToken in the next * request.

*/ inline ListResolverDnssecConfigsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

*/ inline const Aws::Vector& GetResolverDnssecConfigs() const{ return m_resolverDnssecConfigs; } /** *

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

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

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

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

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

*/ inline ListResolverDnssecConfigsResult& WithResolverDnssecConfigs(const Aws::Vector& value) { SetResolverDnssecConfigs(value); return *this;} /** *

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

*/ inline ListResolverDnssecConfigsResult& WithResolverDnssecConfigs(Aws::Vector&& value) { SetResolverDnssecConfigs(std::move(value)); return *this;} /** *

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

*/ inline ListResolverDnssecConfigsResult& AddResolverDnssecConfigs(const ResolverDnssecConfig& value) { m_resolverDnssecConfigs.push_back(value); return *this; } /** *

An array that contains one ResolverDnssecConfig * element for each configuration for DNSSEC validation that is associated with the * current Amazon Web Services account.

*/ inline ListResolverDnssecConfigsResult& AddResolverDnssecConfigs(ResolverDnssecConfig&& value) { m_resolverDnssecConfigs.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 ListResolverDnssecConfigsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListResolverDnssecConfigsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListResolverDnssecConfigsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_resolverDnssecConfigs; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws