This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ssm/include/aws/ssm/model/GetMaintenanceWindowExecutionTaskInvocationRequest.h

182 lines
6.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ssm/SSM_EXPORTS.h>
#include <aws/ssm/SSMRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace SSM
{
namespace Model
{
/**
*/
class AWS_SSM_API GetMaintenanceWindowExecutionTaskInvocationRequest : public SSMRequest
{
public:
GetMaintenanceWindowExecutionTaskInvocationRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetMaintenanceWindowExecutionTaskInvocation"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline const Aws::String& GetWindowExecutionId() const{ return m_windowExecutionId; }
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline bool WindowExecutionIdHasBeenSet() const { return m_windowExecutionIdHasBeenSet; }
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline void SetWindowExecutionId(const Aws::String& value) { m_windowExecutionIdHasBeenSet = true; m_windowExecutionId = value; }
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline void SetWindowExecutionId(Aws::String&& value) { m_windowExecutionIdHasBeenSet = true; m_windowExecutionId = std::move(value); }
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline void SetWindowExecutionId(const char* value) { m_windowExecutionIdHasBeenSet = true; m_windowExecutionId.assign(value); }
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithWindowExecutionId(const Aws::String& value) { SetWindowExecutionId(value); return *this;}
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithWindowExecutionId(Aws::String&& value) { SetWindowExecutionId(std::move(value)); return *this;}
/**
* <p>The ID of the maintenance window execution for which the task is a part.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithWindowExecutionId(const char* value) { SetWindowExecutionId(value); return *this;}
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline const Aws::String& GetTaskId() const{ return m_taskId; }
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline bool TaskIdHasBeenSet() const { return m_taskIdHasBeenSet; }
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline void SetTaskId(const Aws::String& value) { m_taskIdHasBeenSet = true; m_taskId = value; }
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline void SetTaskId(Aws::String&& value) { m_taskIdHasBeenSet = true; m_taskId = std::move(value); }
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline void SetTaskId(const char* value) { m_taskIdHasBeenSet = true; m_taskId.assign(value); }
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithTaskId(const Aws::String& value) { SetTaskId(value); return *this;}
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithTaskId(Aws::String&& value) { SetTaskId(std::move(value)); return *this;}
/**
* <p>The ID of the specific task in the maintenance window task that should be
* retrieved. </p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithTaskId(const char* value) { SetTaskId(value); return *this;}
/**
* <p>The invocation ID to retrieve.</p>
*/
inline const Aws::String& GetInvocationId() const{ return m_invocationId; }
/**
* <p>The invocation ID to retrieve.</p>
*/
inline bool InvocationIdHasBeenSet() const { return m_invocationIdHasBeenSet; }
/**
* <p>The invocation ID to retrieve.</p>
*/
inline void SetInvocationId(const Aws::String& value) { m_invocationIdHasBeenSet = true; m_invocationId = value; }
/**
* <p>The invocation ID to retrieve.</p>
*/
inline void SetInvocationId(Aws::String&& value) { m_invocationIdHasBeenSet = true; m_invocationId = std::move(value); }
/**
* <p>The invocation ID to retrieve.</p>
*/
inline void SetInvocationId(const char* value) { m_invocationIdHasBeenSet = true; m_invocationId.assign(value); }
/**
* <p>The invocation ID to retrieve.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithInvocationId(const Aws::String& value) { SetInvocationId(value); return *this;}
/**
* <p>The invocation ID to retrieve.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithInvocationId(Aws::String&& value) { SetInvocationId(std::move(value)); return *this;}
/**
* <p>The invocation ID to retrieve.</p>
*/
inline GetMaintenanceWindowExecutionTaskInvocationRequest& WithInvocationId(const char* value) { SetInvocationId(value); return *this;}
private:
Aws::String m_windowExecutionId;
bool m_windowExecutionIdHasBeenSet;
Aws::String m_taskId;
bool m_taskIdHasBeenSet;
Aws::String m_invocationId;
bool m_invocationIdHasBeenSet;
};
} // namespace Model
} // namespace SSM
} // namespace Aws