/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains details about a task that failed to submit during an
* execution.See Also:
AWS
* API Reference
The service name of the resource in a task state.
*/ inline const Aws::String& GetResourceType() const{ return m_resourceType; } /** *The service name of the resource in a task state.
*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *The service name of the resource in a task state.
*/ inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *The service name of the resource in a task state.
*/ inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *The service name of the resource in a task state.
*/ inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); } /** *The service name of the resource in a task state.
*/ inline TaskSubmitFailedEventDetails& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;} /** *The service name of the resource in a task state.
*/ inline TaskSubmitFailedEventDetails& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;} /** *The service name of the resource in a task state.
*/ inline TaskSubmitFailedEventDetails& WithResourceType(const char* value) { SetResourceType(value); return *this;} /** *The action of the resource called by a task state.
*/ inline const Aws::String& GetResource() const{ return m_resource; } /** *The action of the resource called by a task state.
*/ inline bool ResourceHasBeenSet() const { return m_resourceHasBeenSet; } /** *The action of the resource called by a task state.
*/ inline void SetResource(const Aws::String& value) { m_resourceHasBeenSet = true; m_resource = value; } /** *The action of the resource called by a task state.
*/ inline void SetResource(Aws::String&& value) { m_resourceHasBeenSet = true; m_resource = std::move(value); } /** *The action of the resource called by a task state.
*/ inline void SetResource(const char* value) { m_resourceHasBeenSet = true; m_resource.assign(value); } /** *The action of the resource called by a task state.
*/ inline TaskSubmitFailedEventDetails& WithResource(const Aws::String& value) { SetResource(value); return *this;} /** *The action of the resource called by a task state.
*/ inline TaskSubmitFailedEventDetails& WithResource(Aws::String&& value) { SetResource(std::move(value)); return *this;} /** *The action of the resource called by a task state.
*/ inline TaskSubmitFailedEventDetails& WithResource(const char* value) { SetResource(value); return *this;} /** *The error code of the failure.
*/ inline const Aws::String& GetError() const{ return m_error; } /** *The error code of the failure.
*/ inline bool ErrorHasBeenSet() const { return m_errorHasBeenSet; } /** *The error code of the failure.
*/ inline void SetError(const Aws::String& value) { m_errorHasBeenSet = true; m_error = value; } /** *The error code of the failure.
*/ inline void SetError(Aws::String&& value) { m_errorHasBeenSet = true; m_error = std::move(value); } /** *The error code of the failure.
*/ inline void SetError(const char* value) { m_errorHasBeenSet = true; m_error.assign(value); } /** *The error code of the failure.
*/ inline TaskSubmitFailedEventDetails& WithError(const Aws::String& value) { SetError(value); return *this;} /** *The error code of the failure.
*/ inline TaskSubmitFailedEventDetails& WithError(Aws::String&& value) { SetError(std::move(value)); return *this;} /** *The error code of the failure.
*/ inline TaskSubmitFailedEventDetails& WithError(const char* value) { SetError(value); return *this;} /** *A more detailed explanation of the cause of the failure.
*/ inline const Aws::String& GetCause() const{ return m_cause; } /** *A more detailed explanation of the cause of the failure.
*/ inline bool CauseHasBeenSet() const { return m_causeHasBeenSet; } /** *A more detailed explanation of the cause of the failure.
*/ inline void SetCause(const Aws::String& value) { m_causeHasBeenSet = true; m_cause = value; } /** *A more detailed explanation of the cause of the failure.
*/ inline void SetCause(Aws::String&& value) { m_causeHasBeenSet = true; m_cause = std::move(value); } /** *A more detailed explanation of the cause of the failure.
*/ inline void SetCause(const char* value) { m_causeHasBeenSet = true; m_cause.assign(value); } /** *A more detailed explanation of the cause of the failure.
*/ inline TaskSubmitFailedEventDetails& WithCause(const Aws::String& value) { SetCause(value); return *this;} /** *A more detailed explanation of the cause of the failure.
*/ inline TaskSubmitFailedEventDetails& WithCause(Aws::String&& value) { SetCause(std::move(value)); return *this;} /** *A more detailed explanation of the cause of the failure.
*/ inline TaskSubmitFailedEventDetails& WithCause(const char* value) { SetCause(value); return *this;} private: Aws::String m_resourceType; bool m_resourceTypeHasBeenSet = false; Aws::String m_resource; bool m_resourceHasBeenSet = false; Aws::String m_error; bool m_errorHasBeenSet = false; Aws::String m_cause; bool m_causeHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws