/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information for a group identity in an access policy.See
* Also:
AWS
* API Reference
The IAM Identity Center ID of the group.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The IAM Identity Center ID of the group.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The IAM Identity Center ID of the group.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The IAM Identity Center ID of the group.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The IAM Identity Center ID of the group.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The IAM Identity Center ID of the group.
*/ inline GroupIdentity& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The IAM Identity Center ID of the group.
*/ inline GroupIdentity& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The IAM Identity Center ID of the group.
*/ inline GroupIdentity& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws