/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A DeadLetterConfig
object that contains information about a
* dead-letter queue configuration.See Also:
AWS
* API Reference
The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline DeadLetterConfig& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline DeadLetterConfig& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The ARN of the SQS queue specified as the target for the dead-letter * queue.
*/ inline DeadLetterConfig& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace EventBridge } // namespace Aws