This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-chime/include/aws/chime/model/Attendee.h

193 lines
6.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Chime
{
namespace Model
{
/**
* <p>An Amazon Chime SDK meeting attendee. Includes a unique
* <code>AttendeeId</code> and <code>JoinToken</code>. The <code>JoinToken</code>
* allows a client to authenticate and join as the specified attendee. The
* <code>JoinToken</code> expires when the meeting ends or when
* <a>DeleteAttendee</a> is called. After that, the attendee is unable to join the
* meeting.</p> <p>We recommend securely transferring each <code>JoinToken</code>
* from your server application to the client so that no other client has access to
* the token except for the one authorized to represent the attendee.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Attendee">AWS API
* Reference</a></p>
*/
class AWS_CHIME_API Attendee
{
public:
Attendee();
Attendee(Aws::Utils::Json::JsonView jsonValue);
Attendee& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline const Aws::String& GetExternalUserId() const{ return m_externalUserId; }
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline bool ExternalUserIdHasBeenSet() const { return m_externalUserIdHasBeenSet; }
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline void SetExternalUserId(const Aws::String& value) { m_externalUserIdHasBeenSet = true; m_externalUserId = value; }
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline void SetExternalUserId(Aws::String&& value) { m_externalUserIdHasBeenSet = true; m_externalUserId = std::move(value); }
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline void SetExternalUserId(const char* value) { m_externalUserIdHasBeenSet = true; m_externalUserId.assign(value); }
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline Attendee& WithExternalUserId(const Aws::String& value) { SetExternalUserId(value); return *this;}
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline Attendee& WithExternalUserId(Aws::String&& value) { SetExternalUserId(std::move(value)); return *this;}
/**
* <p>The Amazon Chime SDK external user ID. Links the attendee to an identity
* managed by a builder application.</p>
*/
inline Attendee& WithExternalUserId(const char* value) { SetExternalUserId(value); return *this;}
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline const Aws::String& GetAttendeeId() const{ return m_attendeeId; }
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline bool AttendeeIdHasBeenSet() const { return m_attendeeIdHasBeenSet; }
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline void SetAttendeeId(const Aws::String& value) { m_attendeeIdHasBeenSet = true; m_attendeeId = value; }
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline void SetAttendeeId(Aws::String&& value) { m_attendeeIdHasBeenSet = true; m_attendeeId = std::move(value); }
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline void SetAttendeeId(const char* value) { m_attendeeIdHasBeenSet = true; m_attendeeId.assign(value); }
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline Attendee& WithAttendeeId(const Aws::String& value) { SetAttendeeId(value); return *this;}
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline Attendee& WithAttendeeId(Aws::String&& value) { SetAttendeeId(std::move(value)); return *this;}
/**
* <p>The Amazon Chime SDK attendee ID.</p>
*/
inline Attendee& WithAttendeeId(const char* value) { SetAttendeeId(value); return *this;}
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline const Aws::String& GetJoinToken() const{ return m_joinToken; }
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline bool JoinTokenHasBeenSet() const { return m_joinTokenHasBeenSet; }
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline void SetJoinToken(const Aws::String& value) { m_joinTokenHasBeenSet = true; m_joinToken = value; }
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline void SetJoinToken(Aws::String&& value) { m_joinTokenHasBeenSet = true; m_joinToken = std::move(value); }
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline void SetJoinToken(const char* value) { m_joinTokenHasBeenSet = true; m_joinToken.assign(value); }
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline Attendee& WithJoinToken(const Aws::String& value) { SetJoinToken(value); return *this;}
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline Attendee& WithJoinToken(Aws::String&& value) { SetJoinToken(std::move(value)); return *this;}
/**
* <p>The join token used by the Amazon Chime SDK attendee.</p>
*/
inline Attendee& WithJoinToken(const char* value) { SetJoinToken(value); return *this;}
private:
Aws::String m_externalUserId;
bool m_externalUserIdHasBeenSet;
Aws::String m_attendeeId;
bool m_attendeeIdHasBeenSet;
Aws::String m_joinToken;
bool m_joinTokenHasBeenSet;
};
} // namespace Model
} // namespace Chime
} // namespace Aws