/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about Amazon Connect Wisdom.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline const Aws::String& GetSessionArn() const{ return m_sessionArn; } /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline bool SessionArnHasBeenSet() const { return m_sessionArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline void SetSessionArn(const Aws::String& value) { m_sessionArnHasBeenSet = true; m_sessionArn = value; } /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline void SetSessionArn(Aws::String&& value) { m_sessionArnHasBeenSet = true; m_sessionArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline void SetSessionArn(const char* value) { m_sessionArnHasBeenSet = true; m_sessionArn.assign(value); } /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline WisdomInfo& WithSessionArn(const Aws::String& value) { SetSessionArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline WisdomInfo& WithSessionArn(Aws::String&& value) { SetSessionArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the Wisdom session.
*/ inline WisdomInfo& WithSessionArn(const char* value) { SetSessionArn(value); return *this;} private: Aws::String m_sessionArn; bool m_sessionArnHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws