/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Chime.Model { /// /// A meeting created using the Amazon Chime SDK. /// public partial class Meeting { private string _externalMeetingId; private MediaPlacement _mediaPlacement; private string _mediaRegion; private string _meetingId; /// /// Gets and sets the property ExternalMeetingId. /// /// The external meeting ID. /// /// [AWSProperty(Sensitive=true, Min=2, Max=64)] public string ExternalMeetingId { get { return this._externalMeetingId; } set { this._externalMeetingId = value; } } // Check to see if ExternalMeetingId property is set internal bool IsSetExternalMeetingId() { return this._externalMeetingId != null; } /// /// Gets and sets the property MediaPlacement. /// /// The media placement for the meeting. /// /// public MediaPlacement MediaPlacement { get { return this._mediaPlacement; } set { this._mediaPlacement = value; } } // Check to see if MediaPlacement property is set internal bool IsSetMediaPlacement() { return this._mediaPlacement != null; } /// /// Gets and sets the property MediaRegion. /// /// The Region in which you create the meeting. Available values: af-south-1, /// ap-northeast-1, ap-northeast-2, ap-south-1, /// ap-southeast-1, ap-southeast-2, ca-central-1, /// eu-central-1, eu-north-1, eu-south-1, eu-west-1, /// eu-west-2, eu-west-3, sa-east-1, us-east-1, /// us-east-2, us-west-1, us-west-2. /// /// public string MediaRegion { get { return this._mediaRegion; } set { this._mediaRegion = value; } } // Check to see if MediaRegion property is set internal bool IsSetMediaRegion() { return this._mediaRegion != null; } /// /// Gets and sets the property MeetingId. /// /// The Amazon Chime SDK meeting ID. /// /// public string MeetingId { get { return this._meetingId; } set { this._meetingId = value; } } // Check to see if MeetingId property is set internal bool IsSetMeetingId() { return this._meetingId != null; } } }