/* * 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-sdk-meetings-2021-07-15.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.ChimeSDKMeetings.Model { /// /// A meeting created using the Amazon Chime SDK. /// public partial class Meeting { private string _externalMeetingId; private MediaPlacement _mediaPlacement; private string _mediaRegion; private string _meetingArn; private MeetingFeaturesConfiguration _meetingFeatures; private string _meetingHostId; private string _meetingId; private string _primaryMeetingId; private List _tenantIds = new List(); /// /// Gets and sets the property ExternalMeetingId. /// /// The external meeting ID. /// /// /// /// Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* /// /// /// /// Values that begin with aws: are reserved. You can't configure a value /// that uses this prefix. Case insensitive. /// /// [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. /// /// /// /// Available values in AWS GovCloud (US) Regions: us-gov-east-1, us-gov-west-1. /// /// [AWSProperty(Min=2, Max=64)] 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 MeetingArn. /// /// The ARN of the meeting. /// /// [AWSProperty(Min=1, Max=1011)] public string MeetingArn { get { return this._meetingArn; } set { this._meetingArn = value; } } // Check to see if MeetingArn property is set internal bool IsSetMeetingArn() { return this._meetingArn != null; } /// /// Gets and sets the property MeetingFeatures. /// /// The features available to a meeting, such as echo reduction. /// /// public MeetingFeaturesConfiguration MeetingFeatures { get { return this._meetingFeatures; } set { this._meetingFeatures = value; } } // Check to see if MeetingFeatures property is set internal bool IsSetMeetingFeatures() { return this._meetingFeatures != null; } /// /// Gets and sets the property MeetingHostId. /// /// Reserved. /// /// [AWSProperty(Sensitive=true, Min=2, Max=64)] public string MeetingHostId { get { return this._meetingHostId; } set { this._meetingHostId = value; } } // Check to see if MeetingHostId property is set internal bool IsSetMeetingHostId() { return this._meetingHostId != 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; } /// /// Gets and sets the property PrimaryMeetingId. /// /// When specified, replicates the media from the primary meeting to this meeting. /// /// [AWSProperty(Min=2, Max=64)] public string PrimaryMeetingId { get { return this._primaryMeetingId; } set { this._primaryMeetingId = value; } } // Check to see if PrimaryMeetingId property is set internal bool IsSetPrimaryMeetingId() { return this._primaryMeetingId != null; } /// /// Gets and sets the property TenantIds. /// /// Array of strings. /// /// [AWSProperty(Min=1, Max=5)] public List TenantIds { get { return this._tenantIds; } set { this._tenantIds = value; } } // Check to see if TenantIds property is set internal bool IsSetTenantIds() { return this._tenantIds != null && this._tenantIds.Count > 0; } } }