/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #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 GetMaintenanceWindowTaskResult { public: AWS_SSM_API GetMaintenanceWindowTaskResult(); AWS_SSM_API GetMaintenanceWindowTaskResult(const Aws::AmazonWebServiceResult& result); AWS_SSM_API GetMaintenanceWindowTaskResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The retrieved maintenance window ID.

*/ inline const Aws::String& GetWindowId() const{ return m_windowId; } /** *

The retrieved maintenance window ID.

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

The retrieved maintenance window ID.

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

The retrieved maintenance window ID.

*/ inline void SetWindowId(const char* value) { m_windowId.assign(value); } /** *

The retrieved maintenance window ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;} /** *

The retrieved maintenance window ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;} /** *

The retrieved maintenance window ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowId(const char* value) { SetWindowId(value); return *this;} /** *

The retrieved maintenance window task ID.

*/ inline const Aws::String& GetWindowTaskId() const{ return m_windowTaskId; } /** *

The retrieved maintenance window task ID.

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

The retrieved maintenance window task ID.

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

The retrieved maintenance window task ID.

*/ inline void SetWindowTaskId(const char* value) { m_windowTaskId.assign(value); } /** *

The retrieved maintenance window task ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowTaskId(const Aws::String& value) { SetWindowTaskId(value); return *this;} /** *

The retrieved maintenance window task ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowTaskId(Aws::String&& value) { SetWindowTaskId(std::move(value)); return *this;} /** *

The retrieved maintenance window task ID.

*/ inline GetMaintenanceWindowTaskResult& WithWindowTaskId(const char* value) { SetWindowTaskId(value); return *this;} /** *

The targets where the task should run.

*/ inline const Aws::Vector& GetTargets() const{ return m_targets; } /** *

The targets where the task should run.

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

The targets where the task should run.

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

The targets where the task should run.

*/ inline GetMaintenanceWindowTaskResult& WithTargets(const Aws::Vector& value) { SetTargets(value); return *this;} /** *

The targets where the task should run.

*/ inline GetMaintenanceWindowTaskResult& WithTargets(Aws::Vector&& value) { SetTargets(std::move(value)); return *this;} /** *

The targets where the task should run.

*/ inline GetMaintenanceWindowTaskResult& AddTargets(const Target& value) { m_targets.push_back(value); return *this; } /** *

The targets where the task should run.

*/ inline GetMaintenanceWindowTaskResult& AddTargets(Target&& value) { m_targets.push_back(std::move(value)); return *this; } /** *

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

*/ inline const Aws::String& GetTaskArn() const{ return m_taskArn; } /** *

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

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

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

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

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

*/ inline void SetTaskArn(const char* value) { m_taskArn.assign(value); } /** *

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

*/ inline GetMaintenanceWindowTaskResult& WithTaskArn(const Aws::String& value) { SetTaskArn(value); return *this;} /** *

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

*/ inline GetMaintenanceWindowTaskResult& WithTaskArn(Aws::String&& value) { SetTaskArn(std::move(value)); return *this;} /** *

The resource that the task used during execution. For * RUN_COMMAND and AUTOMATION task types, the value of * TaskArn is the SSM document name/ARN. For LAMBDA * tasks, the value is the function name/ARN. For STEP_FUNCTIONS * tasks, the value is the state machine ARN.

*/ inline GetMaintenanceWindowTaskResult& WithTaskArn(const char* value) { SetTaskArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

*/ inline const Aws::String& GetServiceRoleArn() const{ return m_serviceRoleArn; } /** *

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

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

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

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

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

*/ inline void SetServiceRoleArn(const char* value) { m_serviceRoleArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

*/ inline GetMaintenanceWindowTaskResult& WithServiceRoleArn(const Aws::String& value) { SetServiceRoleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

*/ inline GetMaintenanceWindowTaskResult& WithServiceRoleArn(Aws::String&& value) { SetServiceRoleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) * service role to use to publish Amazon Simple Notification Service (Amazon SNS) * notifications for maintenance window Run Command tasks.

*/ inline GetMaintenanceWindowTaskResult& WithServiceRoleArn(const char* value) { SetServiceRoleArn(value); return *this;} /** *

The type of task to run.

*/ inline const MaintenanceWindowTaskType& GetTaskType() const{ return m_taskType; } /** *

The type of task to run.

*/ inline void SetTaskType(const MaintenanceWindowTaskType& value) { m_taskType = value; } /** *

The type of task to run.

*/ inline void SetTaskType(MaintenanceWindowTaskType&& value) { m_taskType = std::move(value); } /** *

The type of task to run.

*/ inline GetMaintenanceWindowTaskResult& WithTaskType(const MaintenanceWindowTaskType& value) { SetTaskType(value); return *this;} /** *

The type of task to run.

*/ inline GetMaintenanceWindowTaskResult& WithTaskType(MaintenanceWindowTaskType&& value) { SetTaskType(std::move(value)); return *this;} /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline const Aws::Map& GetTaskParameters() const{ return m_taskParameters; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline void SetTaskParameters(const Aws::Map& value) { m_taskParameters = value; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline void SetTaskParameters(Aws::Map&& value) { m_taskParameters = std::move(value); } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& WithTaskParameters(const Aws::Map& value) { SetTaskParameters(value); return *this;} /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& WithTaskParameters(Aws::Map&& value) { SetTaskParameters(std::move(value)); return *this;} /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(const Aws::String& key, const MaintenanceWindowTaskParameterValueExpression& value) { m_taskParameters.emplace(key, value); return *this; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(Aws::String&& key, const MaintenanceWindowTaskParameterValueExpression& value) { m_taskParameters.emplace(std::move(key), value); return *this; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(const Aws::String& key, MaintenanceWindowTaskParameterValueExpression&& value) { m_taskParameters.emplace(key, std::move(value)); return *this; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(Aws::String&& key, MaintenanceWindowTaskParameterValueExpression&& value) { m_taskParameters.emplace(std::move(key), std::move(value)); return *this; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(const char* key, MaintenanceWindowTaskParameterValueExpression&& value) { m_taskParameters.emplace(key, std::move(value)); return *this; } /** *

The parameters to pass to the task when it runs.

* TaskParameters has been deprecated. To specify parameters to pass * to a task when it runs, instead use the Parameters option in the * TaskInvocationParameters structure. For information about how * Systems Manager handles these options for the supported maintenance window task * types, see MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& AddTaskParameters(const char* key, const MaintenanceWindowTaskParameterValueExpression& value) { m_taskParameters.emplace(key, value); return *this; } /** *

The parameters to pass to the task when it runs.

*/ inline const MaintenanceWindowTaskInvocationParameters& GetTaskInvocationParameters() const{ return m_taskInvocationParameters; } /** *

The parameters to pass to the task when it runs.

*/ inline void SetTaskInvocationParameters(const MaintenanceWindowTaskInvocationParameters& value) { m_taskInvocationParameters = value; } /** *

The parameters to pass to the task when it runs.

*/ inline void SetTaskInvocationParameters(MaintenanceWindowTaskInvocationParameters&& value) { m_taskInvocationParameters = std::move(value); } /** *

The parameters to pass to the task when it runs.

*/ inline GetMaintenanceWindowTaskResult& WithTaskInvocationParameters(const MaintenanceWindowTaskInvocationParameters& value) { SetTaskInvocationParameters(value); return *this;} /** *

The parameters to pass to the task when it runs.

*/ inline GetMaintenanceWindowTaskResult& WithTaskInvocationParameters(MaintenanceWindowTaskInvocationParameters&& value) { SetTaskInvocationParameters(std::move(value)); return *this;} /** *

The priority of the task when it runs. The lower the number, the higher the * priority. Tasks that have the same priority are scheduled in parallel.

*/ inline int GetPriority() const{ return m_priority; } /** *

The priority of the task when it runs. The lower the number, the higher the * priority. Tasks that have the same priority are scheduled in parallel.

*/ inline void SetPriority(int value) { m_priority = value; } /** *

The priority of the task when it runs. The lower the number, the higher the * priority. Tasks that have the same priority are scheduled in parallel.

*/ inline GetMaintenanceWindowTaskResult& WithPriority(int value) { SetPriority(value); return *this;} /** *

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

*/ inline const Aws::String& GetMaxConcurrency() const{ return m_maxConcurrency; } /** *

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

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

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

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

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

*/ inline void SetMaxConcurrency(const char* value) { m_maxConcurrency.assign(value); } /** *

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxConcurrency(const Aws::String& value) { SetMaxConcurrency(value); return *this;} /** *

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxConcurrency(Aws::String&& value) { SetMaxConcurrency(std::move(value)); return *this;} /** *

The maximum number of targets allowed to run this task in parallel.

*

For maintenance window tasks without a target specified, you can't * supply a value for this option. Instead, the system inserts a placeholder value * of 1, which may be reported in the response to this command. This * value doesn't affect the running of your task and can be ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxConcurrency(const char* value) { SetMaxConcurrency(value); return *this;} /** *

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

*/ inline const Aws::String& GetMaxErrors() const{ return m_maxErrors; } /** *

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

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

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

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

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

*/ inline void SetMaxErrors(const char* value) { m_maxErrors.assign(value); } /** *

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxErrors(const Aws::String& value) { SetMaxErrors(value); return *this;} /** *

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxErrors(Aws::String&& value) { SetMaxErrors(std::move(value)); return *this;} /** *

The maximum number of errors allowed before the task stops being * scheduled.

For maintenance window tasks without a target * specified, you can't supply a value for this option. Instead, the system inserts * a placeholder value of 1, which may be reported in the response to * this command. This value doesn't affect the running of your task and can be * ignored.

*/ inline GetMaintenanceWindowTaskResult& WithMaxErrors(const char* value) { SetMaxErrors(value); return *this;} /** *

The location in Amazon Simple Storage Service (Amazon S3) where the task * results are logged.

LoggingInfo has been deprecated. * To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, * instead use the OutputS3BucketName and * OutputS3KeyPrefix options in the * TaskInvocationParameters structure. For information about how * Amazon Web Services Systems Manager handles these options for the supported * maintenance window task types, see * MaintenanceWindowTaskInvocationParameters.

*/ inline const LoggingInfo& GetLoggingInfo() const{ return m_loggingInfo; } /** *

The location in Amazon Simple Storage Service (Amazon S3) where the task * results are logged.

LoggingInfo has been deprecated. * To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, * instead use the OutputS3BucketName and * OutputS3KeyPrefix options in the * TaskInvocationParameters structure. For information about how * Amazon Web Services Systems Manager handles these options for the supported * maintenance window task types, see * MaintenanceWindowTaskInvocationParameters.

*/ inline void SetLoggingInfo(const LoggingInfo& value) { m_loggingInfo = value; } /** *

The location in Amazon Simple Storage Service (Amazon S3) where the task * results are logged.

LoggingInfo has been deprecated. * To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, * instead use the OutputS3BucketName and * OutputS3KeyPrefix options in the * TaskInvocationParameters structure. For information about how * Amazon Web Services Systems Manager handles these options for the supported * maintenance window task types, see * MaintenanceWindowTaskInvocationParameters.

*/ inline void SetLoggingInfo(LoggingInfo&& value) { m_loggingInfo = std::move(value); } /** *

The location in Amazon Simple Storage Service (Amazon S3) where the task * results are logged.

LoggingInfo has been deprecated. * To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, * instead use the OutputS3BucketName and * OutputS3KeyPrefix options in the * TaskInvocationParameters structure. For information about how * Amazon Web Services Systems Manager handles these options for the supported * maintenance window task types, see * MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& WithLoggingInfo(const LoggingInfo& value) { SetLoggingInfo(value); return *this;} /** *

The location in Amazon Simple Storage Service (Amazon S3) where the task * results are logged.

LoggingInfo has been deprecated. * To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, * instead use the OutputS3BucketName and * OutputS3KeyPrefix options in the * TaskInvocationParameters structure. For information about how * Amazon Web Services Systems Manager handles these options for the supported * maintenance window task types, see * MaintenanceWindowTaskInvocationParameters.

*/ inline GetMaintenanceWindowTaskResult& WithLoggingInfo(LoggingInfo&& value) { SetLoggingInfo(std::move(value)); return *this;} /** *

The retrieved task name.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The retrieved task name.

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

The retrieved task name.

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

The retrieved task name.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

The retrieved task name.

*/ inline GetMaintenanceWindowTaskResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The retrieved task name.

*/ inline GetMaintenanceWindowTaskResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The retrieved task name.

*/ inline GetMaintenanceWindowTaskResult& WithName(const char* value) { SetName(value); return *this;} /** *

The retrieved task description.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The retrieved task description.

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

The retrieved task description.

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

The retrieved task description.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

The retrieved task description.

*/ inline GetMaintenanceWindowTaskResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The retrieved task description.

*/ inline GetMaintenanceWindowTaskResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The retrieved task description.

*/ inline GetMaintenanceWindowTaskResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The action to take on tasks when the maintenance window cutoff time is * reached. CONTINUE_TASK means that tasks continue to run. For * Automation, Lambda, Step Functions tasks, CANCEL_TASK means that * currently running task invocations continue, but no new task invocations are * started. For Run Command tasks, CANCEL_TASK means the system * attempts to stop the task by sending a CancelCommand operation.

*/ inline const MaintenanceWindowTaskCutoffBehavior& GetCutoffBehavior() const{ return m_cutoffBehavior; } /** *

The action to take on tasks when the maintenance window cutoff time is * reached. CONTINUE_TASK means that tasks continue to run. For * Automation, Lambda, Step Functions tasks, CANCEL_TASK means that * currently running task invocations continue, but no new task invocations are * started. For Run Command tasks, CANCEL_TASK means the system * attempts to stop the task by sending a CancelCommand operation.

*/ inline void SetCutoffBehavior(const MaintenanceWindowTaskCutoffBehavior& value) { m_cutoffBehavior = value; } /** *

The action to take on tasks when the maintenance window cutoff time is * reached. CONTINUE_TASK means that tasks continue to run. For * Automation, Lambda, Step Functions tasks, CANCEL_TASK means that * currently running task invocations continue, but no new task invocations are * started. For Run Command tasks, CANCEL_TASK means the system * attempts to stop the task by sending a CancelCommand operation.

*/ inline void SetCutoffBehavior(MaintenanceWindowTaskCutoffBehavior&& value) { m_cutoffBehavior = std::move(value); } /** *

The action to take on tasks when the maintenance window cutoff time is * reached. CONTINUE_TASK means that tasks continue to run. For * Automation, Lambda, Step Functions tasks, CANCEL_TASK means that * currently running task invocations continue, but no new task invocations are * started. For Run Command tasks, CANCEL_TASK means the system * attempts to stop the task by sending a CancelCommand operation.

*/ inline GetMaintenanceWindowTaskResult& WithCutoffBehavior(const MaintenanceWindowTaskCutoffBehavior& value) { SetCutoffBehavior(value); return *this;} /** *

The action to take on tasks when the maintenance window cutoff time is * reached. CONTINUE_TASK means that tasks continue to run. For * Automation, Lambda, Step Functions tasks, CANCEL_TASK means that * currently running task invocations continue, but no new task invocations are * started. For Run Command tasks, CANCEL_TASK means the system * attempts to stop the task by sending a CancelCommand operation.

*/ inline GetMaintenanceWindowTaskResult& WithCutoffBehavior(MaintenanceWindowTaskCutoffBehavior&& value) { SetCutoffBehavior(std::move(value)); return *this;} /** *

The details for the CloudWatch alarm you applied to your maintenance window * task.

*/ inline const AlarmConfiguration& GetAlarmConfiguration() const{ return m_alarmConfiguration; } /** *

The details for the CloudWatch alarm you applied to your maintenance window * task.

*/ inline void SetAlarmConfiguration(const AlarmConfiguration& value) { m_alarmConfiguration = value; } /** *

The details for the CloudWatch alarm you applied to your maintenance window * task.

*/ inline void SetAlarmConfiguration(AlarmConfiguration&& value) { m_alarmConfiguration = std::move(value); } /** *

The details for the CloudWatch alarm you applied to your maintenance window * task.

*/ inline GetMaintenanceWindowTaskResult& WithAlarmConfiguration(const AlarmConfiguration& value) { SetAlarmConfiguration(value); return *this;} /** *

The details for the CloudWatch alarm you applied to your maintenance window * task.

*/ inline GetMaintenanceWindowTaskResult& WithAlarmConfiguration(AlarmConfiguration&& value) { SetAlarmConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetMaintenanceWindowTaskResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetMaintenanceWindowTaskResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetMaintenanceWindowTaskResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_windowId; Aws::String m_windowTaskId; Aws::Vector m_targets; Aws::String m_taskArn; Aws::String m_serviceRoleArn; MaintenanceWindowTaskType m_taskType; Aws::Map m_taskParameters; MaintenanceWindowTaskInvocationParameters m_taskInvocationParameters; int m_priority; Aws::String m_maxConcurrency; Aws::String m_maxErrors; LoggingInfo m_loggingInfo; Aws::String m_name; Aws::String m_description; MaintenanceWindowTaskCutoffBehavior m_cutoffBehavior; AlarmConfiguration m_alarmConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace SSM } // namespace Aws