130 lines
4.3 KiB
C
130 lines
4.3 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/chime/ChimeRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/chime/model/CreateAttendeeRequestItem.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Chime
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_CHIME_API BatchCreateAttendeeRequest : public ChimeRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
BatchCreateAttendeeRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "BatchCreateAttendee"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetMeetingId() const{ return m_meetingId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool MeetingIdHasBeenSet() const { return m_meetingIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMeetingId(const Aws::String& value) { m_meetingIdHasBeenSet = true; m_meetingId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMeetingId(Aws::String&& value) { m_meetingIdHasBeenSet = true; m_meetingId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMeetingId(const char* value) { m_meetingIdHasBeenSet = true; m_meetingId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& WithMeetingId(const Aws::String& value) { SetMeetingId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& WithMeetingId(Aws::String&& value) { SetMeetingId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& WithMeetingId(const char* value) { SetMeetingId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<CreateAttendeeRequestItem>& GetAttendees() const{ return m_attendees; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AttendeesHasBeenSet() const { return m_attendeesHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttendees(const Aws::Vector<CreateAttendeeRequestItem>& value) { m_attendeesHasBeenSet = true; m_attendees = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAttendees(Aws::Vector<CreateAttendeeRequestItem>&& value) { m_attendeesHasBeenSet = true; m_attendees = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& WithAttendees(const Aws::Vector<CreateAttendeeRequestItem>& value) { SetAttendees(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& WithAttendees(Aws::Vector<CreateAttendeeRequestItem>&& value) { SetAttendees(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& AddAttendees(const CreateAttendeeRequestItem& value) { m_attendeesHasBeenSet = true; m_attendees.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The request containing the attendees to create.</p>
|
|||
|
|
*/
|
|||
|
|
inline BatchCreateAttendeeRequest& AddAttendees(CreateAttendeeRequestItem&& value) { m_attendeesHasBeenSet = true; m_attendees.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_meetingId;
|
|||
|
|
bool m_meetingIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<CreateAttendeeRequestItem> m_attendees;
|
|||
|
|
bool m_attendeesHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Chime
|
|||
|
|
} // namespace Aws
|