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

The details of the standards subscriptions that were enabled.

*/ inline const Aws::Vector& GetStandardsSubscriptions() const{ return m_standardsSubscriptions; } /** *

The details of the standards subscriptions that were enabled.

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

The details of the standards subscriptions that were enabled.

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

The details of the standards subscriptions that were enabled.

*/ inline BatchEnableStandardsResult& WithStandardsSubscriptions(const Aws::Vector& value) { SetStandardsSubscriptions(value); return *this;} /** *

The details of the standards subscriptions that were enabled.

*/ inline BatchEnableStandardsResult& WithStandardsSubscriptions(Aws::Vector&& value) { SetStandardsSubscriptions(std::move(value)); return *this;} /** *

The details of the standards subscriptions that were enabled.

*/ inline BatchEnableStandardsResult& AddStandardsSubscriptions(const StandardsSubscription& value) { m_standardsSubscriptions.push_back(value); return *this; } /** *

The details of the standards subscriptions that were enabled.

*/ inline BatchEnableStandardsResult& AddStandardsSubscriptions(StandardsSubscription&& value) { m_standardsSubscriptions.push_back(std::move(value)); return *this; } private: Aws::Vector m_standardsSubscriptions; }; } // namespace Model } // namespace SecurityHub } // namespace Aws