/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of resources ARNs corresponding to the segments in a
* trace.See Also:
AWS
* API Reference
The ARN of a corresponding resource.
*/ inline const Aws::String& GetARN() const{ return m_aRN; } /** *The ARN of a corresponding resource.
*/ inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; } /** *The ARN of a corresponding resource.
*/ inline void SetARN(const Aws::String& value) { m_aRNHasBeenSet = true; m_aRN = value; } /** *The ARN of a corresponding resource.
*/ inline void SetARN(Aws::String&& value) { m_aRNHasBeenSet = true; m_aRN = std::move(value); } /** *The ARN of a corresponding resource.
*/ inline void SetARN(const char* value) { m_aRNHasBeenSet = true; m_aRN.assign(value); } /** *The ARN of a corresponding resource.
*/ inline ResourceARNDetail& WithARN(const Aws::String& value) { SetARN(value); return *this;} /** *The ARN of a corresponding resource.
*/ inline ResourceARNDetail& WithARN(Aws::String&& value) { SetARN(std::move(value)); return *this;} /** *The ARN of a corresponding resource.
*/ inline ResourceARNDetail& WithARN(const char* value) { SetARN(value); return *this;} private: Aws::String m_aRN; bool m_aRNHasBeenSet = false; }; } // namespace Model } // namespace XRay } // namespace Aws