/** * 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 ConfigService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API DescribeConfigRulesResult { public: DescribeConfigRulesResult(); DescribeConfigRulesResult(const Aws::AmazonWebServiceResult& result); DescribeConfigRulesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The details about your AWS Config rules.

*/ inline const Aws::Vector& GetConfigRules() const{ return m_configRules; } /** *

The details about your AWS Config rules.

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

The details about your AWS Config rules.

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

The details about your AWS Config rules.

*/ inline DescribeConfigRulesResult& WithConfigRules(const Aws::Vector& value) { SetConfigRules(value); return *this;} /** *

The details about your AWS Config rules.

*/ inline DescribeConfigRulesResult& WithConfigRules(Aws::Vector&& value) { SetConfigRules(std::move(value)); return *this;} /** *

The details about your AWS Config rules.

*/ inline DescribeConfigRulesResult& AddConfigRules(const ConfigRule& value) { m_configRules.push_back(value); return *this; } /** *

The details about your AWS Config rules.

*/ inline DescribeConfigRulesResult& AddConfigRules(ConfigRule&& value) { m_configRules.push_back(std::move(value)); return *this; } /** *

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

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

The string that you use in a subsequent request to get the next page of * results in a paginated response.

*/ inline DescribeConfigRulesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_configRules; Aws::String m_nextToken; }; } // namespace Model } // namespace ConfigService } // namespace Aws