/** * 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 ApplicationDiscoveryService { namespace Model { class AWS_APPLICATIONDISCOVERYSERVICE_API StartDataCollectionByAgentIdsResult { public: StartDataCollectionByAgentIdsResult(); StartDataCollectionByAgentIdsResult(const Aws::AmazonWebServiceResult& result); StartDataCollectionByAgentIdsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

*/ inline const Aws::Vector& GetAgentsConfigurationStatus() const{ return m_agentsConfigurationStatus; } /** *

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

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

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

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

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

*/ inline StartDataCollectionByAgentIdsResult& WithAgentsConfigurationStatus(const Aws::Vector& value) { SetAgentsConfigurationStatus(value); return *this;} /** *

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

*/ inline StartDataCollectionByAgentIdsResult& WithAgentsConfigurationStatus(Aws::Vector&& value) { SetAgentsConfigurationStatus(std::move(value)); return *this;} /** *

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

*/ inline StartDataCollectionByAgentIdsResult& AddAgentsConfigurationStatus(const AgentConfigurationStatus& value) { m_agentsConfigurationStatus.push_back(value); return *this; } /** *

Information about agents or the connector that were instructed to start * collecting data. Information includes the agent/connector ID, a description of * the operation performed, and whether the agent/connector configuration was * updated.

*/ inline StartDataCollectionByAgentIdsResult& AddAgentsConfigurationStatus(AgentConfigurationStatus&& value) { m_agentsConfigurationStatus.push_back(std::move(value)); return *this; } private: Aws::Vector m_agentsConfigurationStatus; }; } // namespace Model } // namespace ApplicationDiscoveryService } // namespace Aws