/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object containing the identifier of a group member.See
* Also:
AWS
* API Reference
An object containing the identifiers of resources that can be members.
*/ inline const Aws::String& GetUserId() const{ return m_userId; } /** *An object containing the identifiers of resources that can be members.
*/ inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; } /** *An object containing the identifiers of resources that can be members.
*/ inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; } /** *An object containing the identifiers of resources that can be members.
*/ inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); } /** *An object containing the identifiers of resources that can be members.
*/ inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); } /** *An object containing the identifiers of resources that can be members.
*/ inline MemberId& WithUserId(const Aws::String& value) { SetUserId(value); return *this;} /** *An object containing the identifiers of resources that can be members.
*/ inline MemberId& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;} /** *An object containing the identifiers of resources that can be members.
*/ inline MemberId& WithUserId(const char* value) { SetUserId(value); return *this;} private: Aws::String m_userId; bool m_userIdHasBeenSet = false; }; } // namespace Model } // namespace IdentityStore } // namespace Aws