/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AlexaForBusiness { namespace Model { /** *

The attributes of a skill group.

See Also:

AWS * API Reference

*/ class SkillGroupData { public: AWS_ALEXAFORBUSINESS_API SkillGroupData(); AWS_ALEXAFORBUSINESS_API SkillGroupData(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API SkillGroupData& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The skill group ARN of a skill group.

*/ inline const Aws::String& GetSkillGroupArn() const{ return m_skillGroupArn; } /** *

The skill group ARN of a skill group.

*/ inline bool SkillGroupArnHasBeenSet() const { return m_skillGroupArnHasBeenSet; } /** *

The skill group ARN of a skill group.

*/ inline void SetSkillGroupArn(const Aws::String& value) { m_skillGroupArnHasBeenSet = true; m_skillGroupArn = value; } /** *

The skill group ARN of a skill group.

*/ inline void SetSkillGroupArn(Aws::String&& value) { m_skillGroupArnHasBeenSet = true; m_skillGroupArn = std::move(value); } /** *

The skill group ARN of a skill group.

*/ inline void SetSkillGroupArn(const char* value) { m_skillGroupArnHasBeenSet = true; m_skillGroupArn.assign(value); } /** *

The skill group ARN of a skill group.

*/ inline SkillGroupData& WithSkillGroupArn(const Aws::String& value) { SetSkillGroupArn(value); return *this;} /** *

The skill group ARN of a skill group.

*/ inline SkillGroupData& WithSkillGroupArn(Aws::String&& value) { SetSkillGroupArn(std::move(value)); return *this;} /** *

The skill group ARN of a skill group.

*/ inline SkillGroupData& WithSkillGroupArn(const char* value) { SetSkillGroupArn(value); return *this;} /** *

The skill group name of a skill group.

*/ inline const Aws::String& GetSkillGroupName() const{ return m_skillGroupName; } /** *

The skill group name of a skill group.

*/ inline bool SkillGroupNameHasBeenSet() const { return m_skillGroupNameHasBeenSet; } /** *

The skill group name of a skill group.

*/ inline void SetSkillGroupName(const Aws::String& value) { m_skillGroupNameHasBeenSet = true; m_skillGroupName = value; } /** *

The skill group name of a skill group.

*/ inline void SetSkillGroupName(Aws::String&& value) { m_skillGroupNameHasBeenSet = true; m_skillGroupName = std::move(value); } /** *

The skill group name of a skill group.

*/ inline void SetSkillGroupName(const char* value) { m_skillGroupNameHasBeenSet = true; m_skillGroupName.assign(value); } /** *

The skill group name of a skill group.

*/ inline SkillGroupData& WithSkillGroupName(const Aws::String& value) { SetSkillGroupName(value); return *this;} /** *

The skill group name of a skill group.

*/ inline SkillGroupData& WithSkillGroupName(Aws::String&& value) { SetSkillGroupName(std::move(value)); return *this;} /** *

The skill group name of a skill group.

*/ inline SkillGroupData& WithSkillGroupName(const char* value) { SetSkillGroupName(value); return *this;} /** *

The description of a skill group.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of a skill group.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of a skill group.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of a skill group.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of a skill group.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of a skill group.

*/ inline SkillGroupData& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of a skill group.

*/ inline SkillGroupData& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of a skill group.

*/ inline SkillGroupData& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_skillGroupArn; bool m_skillGroupArnHasBeenSet = false; Aws::String m_skillGroupName; bool m_skillGroupNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws