/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents an Amazon Connect contact object. See
* Also:
AWS
* API Reference
A unique identifier of a contact in Amazon Connect.
*/ inline const Aws::String& GetContactArn() const{ return m_contactArn; } /** *A unique identifier of a contact in Amazon Connect.
*/ inline bool ContactArnHasBeenSet() const { return m_contactArnHasBeenSet; } /** *A unique identifier of a contact in Amazon Connect.
*/ inline void SetContactArn(const Aws::String& value) { m_contactArnHasBeenSet = true; m_contactArn = value; } /** *A unique identifier of a contact in Amazon Connect.
*/ inline void SetContactArn(Aws::String&& value) { m_contactArnHasBeenSet = true; m_contactArn = std::move(value); } /** *A unique identifier of a contact in Amazon Connect.
*/ inline void SetContactArn(const char* value) { m_contactArnHasBeenSet = true; m_contactArn.assign(value); } /** *A unique identifier of a contact in Amazon Connect.
*/ inline Contact& WithContactArn(const Aws::String& value) { SetContactArn(value); return *this;} /** *A unique identifier of a contact in Amazon Connect.
*/ inline Contact& WithContactArn(Aws::String&& value) { SetContactArn(std::move(value)); return *this;} /** *A unique identifier of a contact in Amazon Connect.
*/ inline Contact& WithContactArn(const char* value) { SetContactArn(value); return *this;} private: Aws::String m_contactArn; bool m_contactArnHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws