/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metadata about a callback step.See Also:
AWS
* API Reference
The pipeline generated token from the Amazon SQS queue.
*/ inline const Aws::String& GetCallbackToken() const{ return m_callbackToken; } /** *The pipeline generated token from the Amazon SQS queue.
*/ inline bool CallbackTokenHasBeenSet() const { return m_callbackTokenHasBeenSet; } /** *The pipeline generated token from the Amazon SQS queue.
*/ inline void SetCallbackToken(const Aws::String& value) { m_callbackTokenHasBeenSet = true; m_callbackToken = value; } /** *The pipeline generated token from the Amazon SQS queue.
*/ inline void SetCallbackToken(Aws::String&& value) { m_callbackTokenHasBeenSet = true; m_callbackToken = std::move(value); } /** *The pipeline generated token from the Amazon SQS queue.
*/ inline void SetCallbackToken(const char* value) { m_callbackTokenHasBeenSet = true; m_callbackToken.assign(value); } /** *The pipeline generated token from the Amazon SQS queue.
*/ inline CallbackStepMetadata& WithCallbackToken(const Aws::String& value) { SetCallbackToken(value); return *this;} /** *The pipeline generated token from the Amazon SQS queue.
*/ inline CallbackStepMetadata& WithCallbackToken(Aws::String&& value) { SetCallbackToken(std::move(value)); return *this;} /** *The pipeline generated token from the Amazon SQS queue.
*/ inline CallbackStepMetadata& WithCallbackToken(const char* value) { SetCallbackToken(value); return *this;} /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline const Aws::String& GetSqsQueueUrl() const{ return m_sqsQueueUrl; } /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline bool SqsQueueUrlHasBeenSet() const { return m_sqsQueueUrlHasBeenSet; } /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline void SetSqsQueueUrl(const Aws::String& value) { m_sqsQueueUrlHasBeenSet = true; m_sqsQueueUrl = value; } /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline void SetSqsQueueUrl(Aws::String&& value) { m_sqsQueueUrlHasBeenSet = true; m_sqsQueueUrl = std::move(value); } /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline void SetSqsQueueUrl(const char* value) { m_sqsQueueUrlHasBeenSet = true; m_sqsQueueUrl.assign(value); } /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline CallbackStepMetadata& WithSqsQueueUrl(const Aws::String& value) { SetSqsQueueUrl(value); return *this;} /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline CallbackStepMetadata& WithSqsQueueUrl(Aws::String&& value) { SetSqsQueueUrl(std::move(value)); return *this;} /** *The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the * callback step.
*/ inline CallbackStepMetadata& WithSqsQueueUrl(const char* value) { SetSqsQueueUrl(value); return *this;} /** *A list of the output parameters of the callback step.
*/ inline const Aws::VectorA list of the output parameters of the callback step.
*/ inline bool OutputParametersHasBeenSet() const { return m_outputParametersHasBeenSet; } /** *A list of the output parameters of the callback step.
*/ inline void SetOutputParameters(const Aws::VectorA list of the output parameters of the callback step.
*/ inline void SetOutputParameters(Aws::VectorA list of the output parameters of the callback step.
*/ inline CallbackStepMetadata& WithOutputParameters(const Aws::VectorA list of the output parameters of the callback step.
*/ inline CallbackStepMetadata& WithOutputParameters(Aws::VectorA list of the output parameters of the callback step.
*/ inline CallbackStepMetadata& AddOutputParameters(const OutputParameter& value) { m_outputParametersHasBeenSet = true; m_outputParameters.push_back(value); return *this; } /** *A list of the output parameters of the callback step.
*/ inline CallbackStepMetadata& AddOutputParameters(OutputParameter&& value) { m_outputParametersHasBeenSet = true; m_outputParameters.push_back(std::move(value)); return *this; } private: Aws::String m_callbackToken; bool m_callbackTokenHasBeenSet = false; Aws::String m_sqsQueueUrl; bool m_sqsQueueUrlHasBeenSet = false; Aws::Vector