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

Information about the task executions.

*/ inline const Aws::Vector& GetWindowExecutionTaskIdentities() const{ return m_windowExecutionTaskIdentities; } /** *

Information about the task executions.

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

Information about the task executions.

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

Information about the task executions.

*/ inline DescribeMaintenanceWindowExecutionTasksResult& WithWindowExecutionTaskIdentities(const Aws::Vector& value) { SetWindowExecutionTaskIdentities(value); return *this;} /** *

Information about the task executions.

*/ inline DescribeMaintenanceWindowExecutionTasksResult& WithWindowExecutionTaskIdentities(Aws::Vector&& value) { SetWindowExecutionTaskIdentities(std::move(value)); return *this;} /** *

Information about the task executions.

*/ inline DescribeMaintenanceWindowExecutionTasksResult& AddWindowExecutionTaskIdentities(const MaintenanceWindowExecutionTaskIdentity& value) { m_windowExecutionTaskIdentities.push_back(value); return *this; } /** *

Information about the task executions.

*/ inline DescribeMaintenanceWindowExecutionTasksResult& AddWindowExecutionTaskIdentities(MaintenanceWindowExecutionTaskIdentity&& value) { m_windowExecutionTaskIdentities.push_back(std::move(value)); return *this; } /** *

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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

The token to use when requesting the next set of items. If there are no * additional items to return, the string is empty.

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