/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Output details listed for an action execution, such as the action execution
* result.See Also:
AWS
* API Reference
Details of output artifacts of the action that correspond to the action * execution.
*/ inline const Aws::VectorDetails of output artifacts of the action that correspond to the action * execution.
*/ inline bool OutputArtifactsHasBeenSet() const { return m_outputArtifactsHasBeenSet; } /** *Details of output artifacts of the action that correspond to the action * execution.
*/ inline void SetOutputArtifacts(const Aws::VectorDetails of output artifacts of the action that correspond to the action * execution.
*/ inline void SetOutputArtifacts(Aws::VectorDetails of output artifacts of the action that correspond to the action * execution.
*/ inline ActionExecutionOutput& WithOutputArtifacts(const Aws::VectorDetails of output artifacts of the action that correspond to the action * execution.
*/ inline ActionExecutionOutput& WithOutputArtifacts(Aws::VectorDetails of output artifacts of the action that correspond to the action * execution.
*/ inline ActionExecutionOutput& AddOutputArtifacts(const ArtifactDetail& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.push_back(value); return *this; } /** *Details of output artifacts of the action that correspond to the action * execution.
*/ inline ActionExecutionOutput& AddOutputArtifacts(ArtifactDetail&& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.push_back(std::move(value)); return *this; } /** *Execution result information listed in the output details for an action * execution.
*/ inline const ActionExecutionResult& GetExecutionResult() const{ return m_executionResult; } /** *Execution result information listed in the output details for an action * execution.
*/ inline bool ExecutionResultHasBeenSet() const { return m_executionResultHasBeenSet; } /** *Execution result information listed in the output details for an action * execution.
*/ inline void SetExecutionResult(const ActionExecutionResult& value) { m_executionResultHasBeenSet = true; m_executionResult = value; } /** *Execution result information listed in the output details for an action * execution.
*/ inline void SetExecutionResult(ActionExecutionResult&& value) { m_executionResultHasBeenSet = true; m_executionResult = std::move(value); } /** *Execution result information listed in the output details for an action * execution.
*/ inline ActionExecutionOutput& WithExecutionResult(const ActionExecutionResult& value) { SetExecutionResult(value); return *this;} /** *Execution result information listed in the output details for an action * execution.
*/ inline ActionExecutionOutput& WithExecutionResult(ActionExecutionResult&& value) { SetExecutionResult(std::move(value)); return *this;} /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline const Aws::MapThe outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline bool OutputVariablesHasBeenSet() const { return m_outputVariablesHasBeenSet; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline void SetOutputVariables(const Aws::MapThe outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline void SetOutputVariables(Aws::MapThe outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& WithOutputVariables(const Aws::MapThe outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& WithOutputVariables(Aws::MapThe outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(const Aws::String& key, const Aws::String& value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(key, value); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(Aws::String&& key, const Aws::String& value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(std::move(key), value); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(const Aws::String& key, Aws::String&& value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(key, std::move(value)); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(Aws::String&& key, Aws::String&& value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(std::move(key), std::move(value)); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(const char* key, Aws::String&& value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(key, std::move(value)); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(Aws::String&& key, const char* value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(std::move(key), value); return *this; } /** *The outputVariables field shows the key-value pairs that were output as part * of that execution.
*/ inline ActionExecutionOutput& AddOutputVariables(const char* key, const char* value) { m_outputVariablesHasBeenSet = true; m_outputVariables.emplace(key, value); return *this; } private: Aws::Vector