repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Settings specific to the Amazon Transcribe Medical engine. /// </summary> public partial class EngineTranscribeMedicalSettings { private TranscribeMedicalContentIdentificationType _contentIdentificationType; private TranscribeMedicalLanguageCode _languageCode; private TranscribeMedicalRegion _region; private TranscribeMedicalSpecialty _specialty; private TranscribeMedicalType _type; private string _vocabularyName; /// <summary> /// Gets and sets the property ContentIdentificationType. /// <para> /// Labels all personally identifiable information (PII) identified in your transcript. /// If you don't include <code>PiiEntityTypes</code>, all PII is identified. /// </para> /// /// <para> /// You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>. /// </para> /// </summary> public TranscribeMedicalContentIdentificationType ContentIdentificationType { get { return this._contentIdentificationType; } set { this._contentIdentificationType = value; } } // Check to see if ContentIdentificationType property is set internal bool IsSetContentIdentificationType() { return this._contentIdentificationType != null; } /// <summary> /// Gets and sets the property LanguageCode. /// <para> /// The language code specified for the Amazon Transcribe Medical engine. /// </para> /// </summary> [AWSProperty(Required=true)] public TranscribeMedicalLanguageCode LanguageCode { get { return this._languageCode; } set { this._languageCode = value; } } // Check to see if LanguageCode property is set internal bool IsSetLanguageCode() { return this._languageCode != null; } /// <summary> /// Gets and sets the property Region. /// <para> /// The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, /// Amazon Chime uses the meeting's Region. /// </para> /// </summary> public TranscribeMedicalRegion Region { get { return this._region; } set { this._region = value; } } // Check to see if Region property is set internal bool IsSetRegion() { return this._region != null; } /// <summary> /// Gets and sets the property Specialty. /// <para> /// The specialty specified for the Amazon Transcribe Medical engine. /// </para> /// </summary> [AWSProperty(Required=true)] public TranscribeMedicalSpecialty Specialty { get { return this._specialty; } set { this._specialty = value; } } // Check to see if Specialty property is set internal bool IsSetSpecialty() { return this._specialty != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of transcription. /// </para> /// </summary> [AWSProperty(Required=true)] public TranscribeMedicalType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property VocabularyName. /// <para> /// The name of the vocabulary passed to Amazon Transcribe Medical. /// </para> /// </summary> public string VocabularyName { get { return this._vocabularyName; } set { this._vocabularyName = value; } } // Check to see if VocabularyName property is set internal bool IsSetVocabularyName() { return this._vocabularyName != null; } } }
161
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Settings specific for Amazon Transcribe as the live transcription engine. /// /// /// <para> /// If you specify an invalid combination of parameters, a <code>TranscriptFailed</code> /// event will be sent with the contents of the <code>BadRequestException</code> generated /// by Amazon Transcribe. For more information on each parameter and which combinations /// are valid, refer to the <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html">StartStreamTranscription</a> /// API in the <i>Amazon Transcribe Developer Guide</i>. /// </para> /// </summary> public partial class EngineTranscribeSettings { private TranscribeContentIdentificationType _contentIdentificationType; private TranscribeContentRedactionType _contentRedactionType; private bool? _enablePartialResultsStabilization; private bool? _identifyLanguage; private TranscribeLanguageCode _languageCode; private string _languageModelName; private string _languageOptions; private TranscribePartialResultsStability _partialResultsStability; private string _piiEntityTypes; private TranscribeLanguageCode _preferredLanguage; private TranscribeRegion _region; private TranscribeVocabularyFilterMethod _vocabularyFilterMethod; private string _vocabularyFilterName; private string _vocabularyFilterNames; private string _vocabularyName; private string _vocabularyNames; /// <summary> /// Gets and sets the property ContentIdentificationType. /// <para> /// Labels all personally identifiable information (PII) identified in your transcript. /// If you don't include <code>PiiEntityTypes</code>, all PII is identified. /// </para> /// /// <para> /// You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>. /// </para> /// </summary> public TranscribeContentIdentificationType ContentIdentificationType { get { return this._contentIdentificationType; } set { this._contentIdentificationType = value; } } // Check to see if ContentIdentificationType property is set internal bool IsSetContentIdentificationType() { return this._contentIdentificationType != null; } /// <summary> /// Gets and sets the property ContentRedactionType. /// <para> /// Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, /// all PII is redacted. /// </para> /// /// <para> /// You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>. /// </para> /// </summary> public TranscribeContentRedactionType ContentRedactionType { get { return this._contentRedactionType; } set { this._contentRedactionType = value; } } // Check to see if ContentRedactionType property is set internal bool IsSetContentRedactionType() { return this._contentRedactionType != null; } /// <summary> /// Gets and sets the property EnablePartialResultsStabilization. /// <para> /// Enables partial result stabilization for your transcription. Partial result stabilization /// can reduce latency in your output, but may impact accuracy. /// </para> /// </summary> public bool EnablePartialResultsStabilization { get { return this._enablePartialResultsStabilization.GetValueOrDefault(); } set { this._enablePartialResultsStabilization = value; } } // Check to see if EnablePartialResultsStabilization property is set internal bool IsSetEnablePartialResultsStabilization() { return this._enablePartialResultsStabilization.HasValue; } /// <summary> /// Gets and sets the property IdentifyLanguage. /// <para> /// Enables automatic language identification for your transcription. /// </para> /// /// <para> /// If you include <code>IdentifyLanguage</code>, you can optionally use <code>LanguageOptions</code> /// to include a list of language codes that you think may be present in your audio stream. /// Including language options can improve transcription accuracy. /// </para> /// /// <para> /// You can also use <code>PreferredLanguage</code> to include a preferred language. Doing /// so can help Amazon Transcribe identify the language faster. /// </para> /// /// <para> /// You must include either <code>LanguageCode</code> or <code>IdentifyLanguage</code>. /// </para> /// /// <para> /// Language identification can't be combined with custom language models or redaction. /// </para> /// </summary> public bool IdentifyLanguage { get { return this._identifyLanguage.GetValueOrDefault(); } set { this._identifyLanguage = value; } } // Check to see if IdentifyLanguage property is set internal bool IsSetIdentifyLanguage() { return this._identifyLanguage.HasValue; } /// <summary> /// Gets and sets the property LanguageCode. /// <para> /// Specify the language code that represents the language spoken. /// </para> /// /// <para> /// If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> /// to enable automatic language identification. /// </para> /// </summary> public TranscribeLanguageCode LanguageCode { get { return this._languageCode; } set { this._languageCode = value; } } // Check to see if LanguageCode property is set internal bool IsSetLanguageCode() { return this._languageCode != null; } /// <summary> /// Gets and sets the property LanguageModelName. /// <para> /// Specify the name of the custom language model that you want to use when processing /// your transcription. Note that language model names are case sensitive. /// </para> /// /// <para> /// The language of the specified language model must match the language code. If the /// languages don't match, the custom language model isn't applied. There are no errors /// or warnings associated with a language mismatch. /// </para> /// /// <para> /// If you use Amazon Transcribe in multiple Regions, the custom language model must be /// available in Amazon Transcribe in each Region. /// </para> /// </summary> [AWSProperty(Min=1, Max=200)] public string LanguageModelName { get { return this._languageModelName; } set { this._languageModelName = value; } } // Check to see if LanguageModelName property is set internal bool IsSetLanguageModelName() { return this._languageModelName != null; } /// <summary> /// Gets and sets the property LanguageOptions. /// <para> /// Specify two or more language codes that represent the languages you think may be present /// in your media; including more than five is not recommended. If you're unsure what /// languages are present, do not include this parameter. /// </para> /// /// <para> /// Including language options can improve the accuracy of language identification. /// </para> /// /// <para> /// If you include <code>LanguageOptions</code>, you must also include <code>IdentifyLanguage</code>. /// </para> /// <important> /// <para> /// You can only include one language dialect per language. For example, you cannot include /// <code>en-US</code> and <code>en-AU</code>. /// </para> /// </important> /// </summary> [AWSProperty(Min=1, Max=200)] public string LanguageOptions { get { return this._languageOptions; } set { this._languageOptions = value; } } // Check to see if LanguageOptions property is set internal bool IsSetLanguageOptions() { return this._languageOptions != null; } /// <summary> /// Gets and sets the property PartialResultsStability. /// <para> /// Specify the level of stability to use when you enable partial results stabilization /// (<code>EnablePartialResultsStabilization</code>). /// </para> /// /// <para> /// Low stability provides the highest accuracy. High stability transcribes faster, but /// with slightly lower accuracy. /// </para> /// </summary> public TranscribePartialResultsStability PartialResultsStability { get { return this._partialResultsStability; } set { this._partialResultsStability = value; } } // Check to see if PartialResultsStability property is set internal bool IsSetPartialResultsStability() { return this._partialResultsStability != null; } /// <summary> /// Gets and sets the property PiiEntityTypes. /// <para> /// Specify which types of personally identifiable information (PII) you want to redact /// in your transcript. You can include as many types as you'd like, or you can select /// <code>ALL</code>. /// </para> /// /// <para> /// Values must be comma-separated and can include: <code>ADDRESS</code>, <code>BANK_ACCOUNT_NUMBER</code>, /// <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code> /// <code>CREDIT_DEBIT_NUMBER</code>, <code>EMAIL</code>,<code>NAME</code>, <code>PHONE</code>, /// <code>PIN</code>, <code>SSN</code>, or <code>ALL</code>. /// </para> /// /// <para> /// Note that if you include <code>PiiEntityTypes</code>, you must also include <code>ContentIdentificationType</code> /// or <code>ContentRedactionType</code>. /// </para> /// /// <para> /// If you include <code>ContentRedactionType</code> or <code>ContentIdentificationType</code>, /// but do not include <code>PiiEntityTypes</code>, all PII is redacted or identified. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string PiiEntityTypes { get { return this._piiEntityTypes; } set { this._piiEntityTypes = value; } } // Check to see if PiiEntityTypes property is set internal bool IsSetPiiEntityTypes() { return this._piiEntityTypes != null; } /// <summary> /// Gets and sets the property PreferredLanguage. /// <para> /// Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>. /// </para> /// /// <para> /// You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>. /// </para> /// </summary> public TranscribeLanguageCode PreferredLanguage { get { return this._preferredLanguage; } set { this._preferredLanguage = value; } } // Check to see if PreferredLanguage property is set internal bool IsSetPreferredLanguage() { return this._preferredLanguage != null; } /// <summary> /// Gets and sets the property Region. /// <para> /// The AWS Region in which to use Amazon Transcribe. /// </para> /// /// <para> /// If you don't specify a Region, then the <code>MediaRegion</code> parameter of the /// <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html">CreateMeeting.html</a> /// API will be used. However, if Amazon Transcribe is not available in the <code>MediaRegion</code>, /// then a TranscriptFailed event is sent. /// </para> /// /// <para> /// Use <code>auto</code> to use Amazon Transcribe in a Region near the meeting’s <code>MediaRegion</code>. /// For more information, refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region">Choosing /// a transcription Region</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </summary> public TranscribeRegion Region { get { return this._region; } set { this._region = value; } } // Check to see if Region property is set internal bool IsSetRegion() { return this._region != null; } /// <summary> /// Gets and sets the property VocabularyFilterMethod. /// <para> /// Specify how you want your vocabulary filter applied to your transcript. /// </para> /// /// <para> /// To replace words with <code>***</code>, choose <code>mask</code>. /// </para> /// /// <para> /// To delete words, choose <code>remove</code>. /// </para> /// /// <para> /// To flag words without changing them, choose <code>tag</code>. /// </para> /// </summary> public TranscribeVocabularyFilterMethod VocabularyFilterMethod { get { return this._vocabularyFilterMethod; } set { this._vocabularyFilterMethod = value; } } // Check to see if VocabularyFilterMethod property is set internal bool IsSetVocabularyFilterMethod() { return this._vocabularyFilterMethod != null; } /// <summary> /// Gets and sets the property VocabularyFilterName. /// <para> /// Specify the name of the custom vocabulary filter that you want to use when processing /// your transcription. Note that vocabulary filter names are case sensitive. /// </para> /// /// <para> /// If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available /// in Amazon Transcribe in each Region. /// </para> /// /// <para> /// If you include <code>IdentifyLanguage</code> and want to use one or more vocabulary /// filters with your transcription, use the <code>VocabularyFilterNames</code> parameter /// instead. /// </para> /// </summary> public string VocabularyFilterName { get { return this._vocabularyFilterName; } set { this._vocabularyFilterName = value; } } // Check to see if VocabularyFilterName property is set internal bool IsSetVocabularyFilterName() { return this._vocabularyFilterName != null; } /// <summary> /// Gets and sets the property VocabularyFilterNames. /// <para> /// Specify the names of the custom vocabulary filters that you want to use when processing /// your transcription. Note that vocabulary filter names are case sensitive. /// </para> /// /// <para> /// If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available /// in Amazon Transcribe in each Region. /// </para> /// /// <para> /// If you're <i>not</i> including <code>IdentifyLanguage</code> and want to use a custom /// vocabulary filter with your transcription, use the <code>VocabularyFilterName</code> /// parameter instead. /// </para> /// </summary> [AWSProperty(Min=1, Max=3000)] public string VocabularyFilterNames { get { return this._vocabularyFilterNames; } set { this._vocabularyFilterNames = value; } } // Check to see if VocabularyFilterNames property is set internal bool IsSetVocabularyFilterNames() { return this._vocabularyFilterNames != null; } /// <summary> /// Gets and sets the property VocabularyName. /// <para> /// Specify the name of the custom vocabulary that you want to use when processing your /// transcription. Note that vocabulary names are case sensitive. /// </para> /// /// <para> /// If you use Amazon Transcribe multiple Regions, the vocabulary must be available in /// Amazon Transcribe in each Region. /// </para> /// /// <para> /// If you include <code>IdentifyLanguage</code> and want to use one or more custom vocabularies /// with your transcription, use the <code>VocabularyNames</code> parameter instead. /// </para> /// </summary> public string VocabularyName { get { return this._vocabularyName; } set { this._vocabularyName = value; } } // Check to see if VocabularyName property is set internal bool IsSetVocabularyName() { return this._vocabularyName != null; } /// <summary> /// Gets and sets the property VocabularyNames. /// <para> /// Specify the names of the custom vocabularies that you want to use when processing /// your transcription. Note that vocabulary names are case sensitive. /// </para> /// /// <para> /// If you use Amazon Transcribe in multiple Regions, the vocabulary must be available /// in Amazon Transcribe in each Region. /// </para> /// /// <para> /// If you don't include <code>IdentifyLanguage</code> and want to use a custom vocabulary /// with your transcription, use the <code>VocabularyName</code> parameter instead. /// </para> /// </summary> [AWSProperty(Min=1, Max=3000)] public string VocabularyNames { get { return this._vocabularyNames; } set { this._vocabularyNames = value; } } // Check to see if VocabularyNames property is set internal bool IsSetVocabularyNames() { return this._vocabularyNames != null; } } }
519
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The configuration that allows a bot to receive outgoing events. Can be either an HTTPS /// endpoint or a Lambda function ARN. /// </summary> public partial class EventsConfiguration { private string _botId; private string _lambdaFunctionArn; private string _outboundEventsHTTPSEndpoint; /// <summary> /// Gets and sets the property BotId. /// <para> /// The bot ID. /// </para> /// </summary> public string BotId { get { return this._botId; } set { this._botId = value; } } // Check to see if BotId property is set internal bool IsSetBotId() { return this._botId != null; } /// <summary> /// Gets and sets the property LambdaFunctionArn. /// <para> /// Lambda function ARN that allows a bot to receive outgoing events. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string LambdaFunctionArn { get { return this._lambdaFunctionArn; } set { this._lambdaFunctionArn = value; } } // Check to see if LambdaFunctionArn property is set internal bool IsSetLambdaFunctionArn() { return this._lambdaFunctionArn != null; } /// <summary> /// Gets and sets the property OutboundEventsHTTPSEndpoint. /// <para> /// HTTPS endpoint that allows a bot to receive outgoing events. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string OutboundEventsHTTPSEndpoint { get { return this._outboundEventsHTTPSEndpoint; } set { this._outboundEventsHTTPSEndpoint = value; } } // Check to see if OutboundEventsHTTPSEndpoint property is set internal bool IsSetOutboundEventsHTTPSEndpoint() { return this._outboundEventsHTTPSEndpoint != null; } } }
98
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The client is permanently forbidden from making the request. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class ForbiddenException : AmazonChimeException { private ErrorCode _code; /// <summary> /// Constructs a new ForbiddenException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public ForbiddenException(string message) : base(message) {} /// <summary> /// Construct instance of ForbiddenException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public ForbiddenException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of ForbiddenException /// </summary> /// <param name="innerException"></param> public ForbiddenException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of ForbiddenException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public ForbiddenException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of ForbiddenException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public ForbiddenException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the ForbiddenException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected ForbiddenException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.Code = (ErrorCode)info.GetValue("Code", typeof(ErrorCode)); } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); info.AddValue("Code", this.Code); } #endif /// <summary> /// Gets and sets the property Code. /// </summary> public ErrorCode Code { get { return this._code; } set { this._code = value; } } // Check to see if Code property is set internal bool IsSetCode() { return this._code != null; } } }
142
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The country and area code for a proxy phone number in a proxy phone session. /// </summary> public partial class GeoMatchParams { private string _areaCode; private string _country; /// <summary> /// Gets and sets the property AreaCode. /// <para> /// The area code. /// </para> /// </summary> [AWSProperty(Required=true)] public string AreaCode { get { return this._areaCode; } set { this._areaCode = value; } } // Check to see if AreaCode property is set internal bool IsSetAreaCode() { return this._areaCode != null; } /// <summary> /// Gets and sets the property Country. /// <para> /// The country. /// </para> /// </summary> [AWSProperty(Required=true)] public string Country { get { return this._country; } set { this._country = value; } } // Check to see if Country property is set internal bool IsSetCountry() { return this._country != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetAccount operation. /// Retrieves details for the specified Amazon Chime account, such as account type and /// supported licenses. /// </summary> public partial class GetAccountRequest : AmazonChimeRequest { private string _accountId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } } }
60
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetAccount operation. /// </summary> public partial class GetAccountResponse : AmazonWebServiceResponse { private Account _account; /// <summary> /// Gets and sets the property Account. /// <para> /// The Amazon Chime account details. /// </para> /// </summary> public Account Account { get { return this._account; } set { this._account = value; } } // Check to see if Account property is set internal bool IsSetAccount() { return this._account != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetAccountSettings operation. /// Retrieves account settings for the specified Amazon Chime account ID, such as remote /// control and dialout settings. For more information about these settings, see <a href="https://docs.aws.amazon.com/chime/latest/ag/policies.html">Use /// the Policies Page</a> in the <i>Amazon Chime Administration Guide</i>. /// </summary> public partial class GetAccountSettingsRequest : AmazonChimeRequest { private string _accountId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } } }
61
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetAccountSettings operation. /// </summary> public partial class GetAccountSettingsResponse : AmazonWebServiceResponse { private AccountSettings _accountSettings; /// <summary> /// Gets and sets the property AccountSettings. /// <para> /// The Amazon Chime account settings. /// </para> /// </summary> public AccountSettings AccountSettings { get { return this._accountSettings; } set { this._accountSettings = value; } } // Check to see if AccountSettings property is set internal bool IsSetAccountSettings() { return this._accountSettings != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetAppInstanceRetentionSettings operation. /// Gets the retention settings for an <code>AppInstance</code>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_GetAppInstanceRetentionSettings.html">GetMessagingRetentionSettings</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetAppInstanceRetentionSettingsRequest : AmazonChimeRequest { private string _appInstanceArn; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetAppInstanceRetentionSettings operation. /// </summary> public partial class GetAppInstanceRetentionSettingsResponse : AmazonWebServiceResponse { private AppInstanceRetentionSettings _appInstanceRetentionSettings; private DateTime? _initiateDeletionTimestamp; /// <summary> /// Gets and sets the property AppInstanceRetentionSettings. /// <para> /// The retention settings for the <code>AppInstance</code>. /// </para> /// </summary> public AppInstanceRetentionSettings AppInstanceRetentionSettings { get { return this._appInstanceRetentionSettings; } set { this._appInstanceRetentionSettings = value; } } // Check to see if AppInstanceRetentionSettings property is set internal bool IsSetAppInstanceRetentionSettings() { return this._appInstanceRetentionSettings != null; } /// <summary> /// Gets and sets the property InitiateDeletionTimestamp. /// <para> /// The timestamp representing the time at which the specified items are retained, in /// Epoch Seconds. /// </para> /// </summary> public DateTime InitiateDeletionTimestamp { get { return this._initiateDeletionTimestamp.GetValueOrDefault(); } set { this._initiateDeletionTimestamp = value; } } // Check to see if InitiateDeletionTimestamp property is set internal bool IsSetInitiateDeletionTimestamp() { return this._initiateDeletionTimestamp.HasValue; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetAppInstanceStreamingConfigurations operation. /// Gets the streaming settings for an <code>AppInstance</code>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetMessagingStreamingConfigurations.html">GetMessagingStreamingConfigurations</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetAppInstanceStreamingConfigurationsRequest : AmazonChimeRequest { private string _appInstanceArn; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetAppInstanceStreamingConfigurations operation. /// </summary> public partial class GetAppInstanceStreamingConfigurationsResponse : AmazonWebServiceResponse { private List<AppInstanceStreamingConfiguration> _appInstanceStreamingConfigurations = new List<AppInstanceStreamingConfiguration>(); /// <summary> /// Gets and sets the property AppInstanceStreamingConfigurations. /// <para> /// The streaming settings. /// </para> /// </summary> [AWSProperty(Min=1, Max=2)] public List<AppInstanceStreamingConfiguration> AppInstanceStreamingConfigurations { get { return this._appInstanceStreamingConfigurations; } set { this._appInstanceStreamingConfigurations = value; } } // Check to see if AppInstanceStreamingConfigurations property is set internal bool IsSetAppInstanceStreamingConfigurations() { return this._appInstanceStreamingConfigurations != null && this._appInstanceStreamingConfigurations.Count > 0; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetAttendee operation. /// Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee /// ID. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html">Using /// the Amazon Chime SDK</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_GetAttendee.html">GetAttendee</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetAttendeeRequest : AmazonChimeRequest { private string _attendeeId; private string _meetingId; /// <summary> /// Gets and sets the property AttendeeId. /// <para> /// The Amazon Chime SDK attendee ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AttendeeId { get { return this._attendeeId; } set { this._attendeeId = value; } } // Check to see if AttendeeId property is set internal bool IsSetAttendeeId() { return this._attendeeId != null; } /// <summary> /// Gets and sets the property MeetingId. /// <para> /// The Amazon Chime SDK meeting ID. /// </para> /// </summary> [AWSProperty(Required=true)] 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; } } }
95
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetAttendee operation. /// </summary> public partial class GetAttendeeResponse : AmazonWebServiceResponse { private Attendee _attendee; /// <summary> /// Gets and sets the property Attendee. /// <para> /// The Amazon Chime SDK attendee information. /// </para> /// </summary> public Attendee Attendee { get { return this._attendee; } set { this._attendee = value; } } // Check to see if Attendee property is set internal bool IsSetAttendee() { return this._attendee != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetBot operation. /// Retrieves details for the specified bot, such as bot email address, bot type, status, /// and display name. /// </summary> public partial class GetBotRequest : AmazonChimeRequest { private string _accountId; private string _botId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property BotId. /// <para> /// The bot ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string BotId { get { return this._botId; } set { this._botId = value; } } // Check to see if BotId property is set internal bool IsSetBotId() { return this._botId != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetBot operation. /// </summary> public partial class GetBotResponse : AmazonWebServiceResponse { private Bot _bot; /// <summary> /// Gets and sets the property Bot. /// <para> /// The chat bot details. /// </para> /// </summary> public Bot Bot { get { return this._bot; } set { this._bot = value; } } // Check to see if Bot property is set internal bool IsSetBot() { return this._bot != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetChannelMessage operation. /// Gets the full details of a channel message. /// /// <note> /// <para> /// The x-amz-chime-bearer request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetChannelMessage.html">GetChannelMessage</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetChannelMessageRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private string _messageId; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MessageId. /// <para> /// The ID of the message. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string MessageId { get { return this._messageId; } set { this._messageId = value; } } // Check to see if MessageId property is set internal bool IsSetMessageId() { return this._messageId != null; } } }
118
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetChannelMessage operation. /// </summary> public partial class GetChannelMessageResponse : AmazonWebServiceResponse { private ChannelMessage _channelMessage; /// <summary> /// Gets and sets the property ChannelMessage. /// <para> /// The details of and content in the message. /// </para> /// </summary> public ChannelMessage ChannelMessage { get { return this._channelMessage; } set { this._channelMessage = value; } } // Check to see if ChannelMessage property is set internal bool IsSetChannelMessage() { return this._channelMessage != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetEventsConfiguration operation. /// Gets details for an events configuration that allows a bot to receive outgoing events, /// such as an HTTPS endpoint or Lambda function ARN. /// </summary> public partial class GetEventsConfigurationRequest : AmazonChimeRequest { private string _accountId; private string _botId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property BotId. /// <para> /// The bot ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string BotId { get { return this._botId; } set { this._botId = value; } } // Check to see if BotId property is set internal bool IsSetBotId() { return this._botId != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetEventsConfiguration operation. /// </summary> public partial class GetEventsConfigurationResponse : AmazonWebServiceResponse { private EventsConfiguration _eventsConfiguration; /// <summary> /// Gets and sets the property EventsConfiguration. /// <para> /// The events configuration details. /// </para> /// </summary> public EventsConfiguration EventsConfiguration { get { return this._eventsConfiguration; } set { this._eventsConfiguration = value; } } // Check to see if EventsConfiguration property is set internal bool IsSetEventsConfiguration() { return this._eventsConfiguration != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetGlobalSettings operation. /// Retrieves global settings for the administrator's AWS account, such as Amazon Chime /// Business Calling and Amazon Chime Voice Connector settings. /// </summary> public partial class GetGlobalSettingsRequest : AmazonChimeRequest { } }
40
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetGlobalSettings operation. /// </summary> public partial class GetGlobalSettingsResponse : AmazonWebServiceResponse { private BusinessCallingSettings _businessCalling; private VoiceConnectorSettings _voiceConnector; /// <summary> /// Gets and sets the property BusinessCalling. /// <para> /// The Amazon Chime Business Calling settings. /// </para> /// </summary> public BusinessCallingSettings BusinessCalling { get { return this._businessCalling; } set { this._businessCalling = value; } } // Check to see if BusinessCalling property is set internal bool IsSetBusinessCalling() { return this._businessCalling != null; } /// <summary> /// Gets and sets the property VoiceConnector. /// <para> /// The Amazon Chime Voice Connector settings. /// </para> /// </summary> public VoiceConnectorSettings VoiceConnector { get { return this._voiceConnector; } set { this._voiceConnector = value; } } // Check to see if VoiceConnector property is set internal bool IsSetVoiceConnector() { return this._voiceConnector != null; } } }
76
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetMediaCapturePipeline operation. /// Gets an existing media capture pipeline. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_GetMediaCapturePipeline.html">GetMediaCapturePipeline</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetMediaCapturePipelineRequest : AmazonChimeRequest { private string _mediaPipelineId; /// <summary> /// Gets and sets the property MediaPipelineId. /// <para> /// The ID of the pipeline that you want to get. /// </para> /// </summary> [AWSProperty(Required=true)] public string MediaPipelineId { get { return this._mediaPipelineId; } set { this._mediaPipelineId = value; } } // Check to see if MediaPipelineId property is set internal bool IsSetMediaPipelineId() { return this._mediaPipelineId != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetMediaCapturePipeline operation. /// </summary> public partial class GetMediaCapturePipelineResponse : AmazonWebServiceResponse { private MediaCapturePipeline _mediaCapturePipeline; /// <summary> /// Gets and sets the property MediaCapturePipeline. /// <para> /// The media capture pipeline object. /// </para> /// </summary> public MediaCapturePipeline MediaCapturePipeline { get { return this._mediaCapturePipeline; } set { this._mediaCapturePipeline = value; } } // Check to see if MediaCapturePipeline property is set internal bool IsSetMediaCapturePipeline() { return this._mediaCapturePipeline != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetMeeting operation. /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_GetMeeting.html">GetMeeting</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// <para> /// Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more /// information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html">Using /// the Amazon Chime SDK</a> in the <i>Amazon Chime SDK Developer Guide</i> . /// </para> /// </summary> public partial class GetMeetingRequest : AmazonChimeRequest { private string _meetingId; /// <summary> /// Gets and sets the property MeetingId. /// <para> /// The Amazon Chime SDK meeting ID. /// </para> /// </summary> [AWSProperty(Required=true)] 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; } } }
76
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetMeeting operation. /// </summary> public partial class GetMeetingResponse : AmazonWebServiceResponse { private Meeting _meeting; /// <summary> /// Gets and sets the property Meeting. /// <para> /// The Amazon Chime SDK meeting information. /// </para> /// </summary> public Meeting Meeting { get { return this._meeting; } set { this._meeting = value; } } // Check to see if Meeting property is set internal bool IsSetMeeting() { return this._meeting != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetMessagingSessionEndpoint operation. /// The details of the endpoint for the messaging session. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_GetMessagingSessionEndpoint.html">GetMessagingSessionEndpoint</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetMessagingSessionEndpointRequest : AmazonChimeRequest { } }
53
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetMessagingSessionEndpoint operation. /// </summary> public partial class GetMessagingSessionEndpointResponse : AmazonWebServiceResponse { private MessagingSessionEndpoint _endpoint; /// <summary> /// Gets and sets the property Endpoint. /// <para> /// The endpoint returned in the response. /// </para> /// </summary> public MessagingSessionEndpoint Endpoint { get { return this._endpoint; } set { this._endpoint = value; } } // Check to see if Endpoint property is set internal bool IsSetEndpoint() { return this._endpoint != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetPhoneNumberOrder operation. /// Retrieves details for the specified phone number order, such as the order creation /// timestamp, phone numbers in E.164 format, product type, and order status. /// </summary> public partial class GetPhoneNumberOrderRequest : AmazonChimeRequest { private string _phoneNumberOrderId; /// <summary> /// Gets and sets the property PhoneNumberOrderId. /// <para> /// The ID for the phone number order. /// </para> /// </summary> [AWSProperty(Required=true)] public string PhoneNumberOrderId { get { return this._phoneNumberOrderId; } set { this._phoneNumberOrderId = value; } } // Check to see if PhoneNumberOrderId property is set internal bool IsSetPhoneNumberOrderId() { return this._phoneNumberOrderId != null; } } }
60
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetPhoneNumberOrder operation. /// </summary> public partial class GetPhoneNumberOrderResponse : AmazonWebServiceResponse { private PhoneNumberOrder _phoneNumberOrder; /// <summary> /// Gets and sets the property PhoneNumberOrder. /// <para> /// The phone number order details. /// </para> /// </summary> public PhoneNumberOrder PhoneNumberOrder { get { return this._phoneNumberOrder; } set { this._phoneNumberOrder = value; } } // Check to see if PhoneNumberOrder property is set internal bool IsSetPhoneNumberOrder() { return this._phoneNumberOrder != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetPhoneNumber operation. /// Retrieves details for the specified phone number ID, such as associations, capabilities, /// and product type. /// </summary> public partial class GetPhoneNumberRequest : AmazonChimeRequest { private string _phoneNumberId; /// <summary> /// Gets and sets the property PhoneNumberId. /// <para> /// The phone number ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string PhoneNumberId { get { return this._phoneNumberId; } set { this._phoneNumberId = value; } } // Check to see if PhoneNumberId property is set internal bool IsSetPhoneNumberId() { return this._phoneNumberId != null; } } }
60
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetPhoneNumber operation. /// </summary> public partial class GetPhoneNumberResponse : AmazonWebServiceResponse { private PhoneNumber _phoneNumber; /// <summary> /// Gets and sets the property PhoneNumber. /// <para> /// The phone number details. /// </para> /// </summary> public PhoneNumber PhoneNumber { get { return this._phoneNumber; } set { this._phoneNumber = value; } } // Check to see if PhoneNumber property is set internal bool IsSetPhoneNumber() { return this._phoneNumber != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetPhoneNumberSettings operation. /// Retrieves the phone number settings for the administrator's AWS account, such as the /// default outbound calling name. /// </summary> public partial class GetPhoneNumberSettingsRequest : AmazonChimeRequest { } }
40
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetPhoneNumberSettings operation. /// </summary> public partial class GetPhoneNumberSettingsResponse : AmazonWebServiceResponse { private string _callingName; private DateTime? _callingNameUpdatedTimestamp; /// <summary> /// Gets and sets the property CallingName. /// <para> /// The default outbound calling name for the account. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string CallingName { get { return this._callingName; } set { this._callingName = value; } } // Check to see if CallingName property is set internal bool IsSetCallingName() { return this._callingName != null; } /// <summary> /// Gets and sets the property CallingNameUpdatedTimestamp. /// <para> /// The updated outbound calling name timestamp, in ISO 8601 format. /// </para> /// </summary> public DateTime CallingNameUpdatedTimestamp { get { return this._callingNameUpdatedTimestamp.GetValueOrDefault(); } set { this._callingNameUpdatedTimestamp = value; } } // Check to see if CallingNameUpdatedTimestamp property is set internal bool IsSetCallingNameUpdatedTimestamp() { return this._callingNameUpdatedTimestamp.HasValue; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetProxySession operation. /// Gets the specified proxy session details for the specified Amazon Chime Voice Connector. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetProxySession.html">GetProxySession</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetProxySessionRequest : AmazonChimeRequest { private string _proxySessionId; private string _voiceConnectorId; /// <summary> /// Gets and sets the property ProxySessionId. /// <para> /// The proxy session ID. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string ProxySessionId { get { return this._proxySessionId; } set { this._proxySessionId = value; } } // Check to see if ProxySessionId property is set internal bool IsSetProxySessionId() { return this._proxySessionId != null; } /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime voice connector ID. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
93
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetProxySession operation. /// </summary> public partial class GetProxySessionResponse : AmazonWebServiceResponse { private ProxySession _proxySession; /// <summary> /// Gets and sets the property ProxySession. /// <para> /// The proxy session details. /// </para> /// </summary> public ProxySession ProxySession { get { return this._proxySession; } set { this._proxySession = value; } } // Check to see if ProxySession property is set internal bool IsSetProxySession() { return this._proxySession != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetRetentionSettings operation. /// Gets the retention settings for the specified Amazon Chime Enterprise account. For /// more information about retention settings, see <a href="https://docs.aws.amazon.com/chime/latest/ag/chat-retention.html">Managing /// Chat Retention Policies</a> in the <i>Amazon Chime Administration Guide</i>. /// </summary> public partial class GetRetentionSettingsRequest : AmazonChimeRequest { private string _accountId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } } }
61
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetRetentionSettings operation. /// </summary> public partial class GetRetentionSettingsResponse : AmazonWebServiceResponse { private DateTime? _initiateDeletionTimestamp; private RetentionSettings _retentionSettings; /// <summary> /// Gets and sets the property InitiateDeletionTimestamp. /// <para> /// The timestamp representing the time at which the specified items are permanently deleted, /// in ISO 8601 format. /// </para> /// </summary> public DateTime InitiateDeletionTimestamp { get { return this._initiateDeletionTimestamp.GetValueOrDefault(); } set { this._initiateDeletionTimestamp = value; } } // Check to see if InitiateDeletionTimestamp property is set internal bool IsSetInitiateDeletionTimestamp() { return this._initiateDeletionTimestamp.HasValue; } /// <summary> /// Gets and sets the property RetentionSettings. /// <para> /// The retention settings. /// </para> /// </summary> public RetentionSettings RetentionSettings { get { return this._retentionSettings; } set { this._retentionSettings = value; } } // Check to see if RetentionSettings property is set internal bool IsSetRetentionSettings() { return this._retentionSettings != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetRoom operation. /// Retrieves room details, such as the room name, for a room in an Amazon Chime Enterprise /// account. /// </summary> public partial class GetRoomRequest : AmazonChimeRequest { private string _accountId; private string _roomId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property RoomId. /// <para> /// The room ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string RoomId { get { return this._roomId; } set { this._roomId = value; } } // Check to see if RoomId property is set internal bool IsSetRoomId() { return this._roomId != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetRoom operation. /// </summary> public partial class GetRoomResponse : AmazonWebServiceResponse { private Room _room; /// <summary> /// Gets and sets the property Room. /// <para> /// The room details. /// </para> /// </summary> public Room Room { get { return this._room; } set { this._room = value; } } // Check to see if Room property is set internal bool IsSetRoom() { return this._room != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetSipMediaApplicationLoggingConfiguration operation. /// Returns the logging configuration for the specified SIP media application. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipMediaApplicationLoggingConfiguration.html">GetSipMediaApplicationLoggingConfiguration</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetSipMediaApplicationLoggingConfigurationRequest : AmazonChimeRequest { private string _sipMediaApplicationId; /// <summary> /// Gets and sets the property SipMediaApplicationId. /// <para> /// The SIP media application ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string SipMediaApplicationId { get { return this._sipMediaApplicationId; } set { this._sipMediaApplicationId = value; } } // Check to see if SipMediaApplicationId property is set internal bool IsSetSipMediaApplicationId() { return this._sipMediaApplicationId != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetSipMediaApplicationLoggingConfiguration operation. /// </summary> public partial class GetSipMediaApplicationLoggingConfigurationResponse : AmazonWebServiceResponse { private SipMediaApplicationLoggingConfiguration _sipMediaApplicationLoggingConfiguration; /// <summary> /// Gets and sets the property SipMediaApplicationLoggingConfiguration. /// <para> /// The actual logging configuration. /// </para> /// </summary> public SipMediaApplicationLoggingConfiguration SipMediaApplicationLoggingConfiguration { get { return this._sipMediaApplicationLoggingConfiguration; } set { this._sipMediaApplicationLoggingConfiguration = value; } } // Check to see if SipMediaApplicationLoggingConfiguration property is set internal bool IsSetSipMediaApplicationLoggingConfiguration() { return this._sipMediaApplicationLoggingConfiguration != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetSipMediaApplication operation. /// Retrieves the information for a SIP media application, including name, AWS Region, /// and endpoints. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipMediaApplication.html">GetSipMediaApplication</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetSipMediaApplicationRequest : AmazonChimeRequest { private string _sipMediaApplicationId; /// <summary> /// Gets and sets the property SipMediaApplicationId. /// <para> /// The SIP media application ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string SipMediaApplicationId { get { return this._sipMediaApplicationId; } set { this._sipMediaApplicationId = value; } } // Check to see if SipMediaApplicationId property is set internal bool IsSetSipMediaApplicationId() { return this._sipMediaApplicationId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetSipMediaApplication operation. /// </summary> public partial class GetSipMediaApplicationResponse : AmazonWebServiceResponse { private SipMediaApplication _sipMediaApplication; /// <summary> /// Gets and sets the property SipMediaApplication. /// <para> /// The SIP media application details. /// </para> /// </summary> public SipMediaApplication SipMediaApplication { get { return this._sipMediaApplication; } set { this._sipMediaApplication = value; } } // Check to see if SipMediaApplication property is set internal bool IsSetSipMediaApplication() { return this._sipMediaApplication != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetSipRule operation. /// Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target /// endpoints. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetSipRule.html">GetSipRule</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetSipRuleRequest : AmazonChimeRequest { private string _sipRuleId; /// <summary> /// Gets and sets the property SipRuleId. /// <para> /// The SIP rule ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string SipRuleId { get { return this._sipRuleId; } set { this._sipRuleId = value; } } // Check to see if SipRuleId property is set internal bool IsSetSipRuleId() { return this._sipRuleId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetSipRule operation. /// </summary> public partial class GetSipRuleResponse : AmazonWebServiceResponse { private SipRule _sipRule; /// <summary> /// Gets and sets the property SipRule. /// <para> /// The SIP rule details. /// </para> /// </summary> public SipRule SipRule { get { return this._sipRule; } set { this._sipRule = value; } } // Check to see if SipRule property is set internal bool IsSetSipRule() { return this._sipRule != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetUser operation. /// Retrieves details for the specified user ID, such as primary email address, license /// type,and personal meeting PIN. /// /// /// <para> /// To retrieve user details with an email address instead of a user ID, use the <a>ListUsers</a> /// action, and then filter by email address. /// </para> /// </summary> public partial class GetUserRequest : AmazonChimeRequest { private string _accountId; private string _userId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property UserId. /// <para> /// The user ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string UserId { get { return this._userId; } set { this._userId = value; } } // Check to see if UserId property is set internal bool IsSetUserId() { return this._userId != null; } } }
86
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetUser operation. /// </summary> public partial class GetUserResponse : AmazonWebServiceResponse { private User _user; /// <summary> /// Gets and sets the property User. /// <para> /// The user details. /// </para> /// </summary> public User User { get { return this._user; } set { this._user = value; } } // Check to see if User property is set internal bool IsSetUser() { return this._user != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetUserSettings operation. /// Retrieves settings for the specified user ID, such as any associated phone number /// settings. /// </summary> public partial class GetUserSettingsRequest : AmazonChimeRequest { private string _accountId; private string _userId; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property UserId. /// <para> /// The user ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string UserId { get { return this._userId; } set { this._userId = value; } } // Check to see if UserId property is set internal bool IsSetUserId() { return this._userId != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetUserSettings operation. /// </summary> public partial class GetUserSettingsResponse : AmazonWebServiceResponse { private UserSettings _userSettings; /// <summary> /// Gets and sets the property UserSettings. /// <para> /// The user settings. /// </para> /// </summary> public UserSettings UserSettings { get { return this._userSettings; } set { this._userSettings = value; } } // Check to see if UserSettings property is set internal bool IsSetUserSettings() { return this._userSettings != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorEmergencyCallingConfiguration operation. /// Gets the emergency calling configuration details for the specified Amazon Chime Voice /// Connector. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorEmergencyCallingConfiguration.html">GetVoiceConnectorEmergencyCallingConfiguration</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorEmergencyCallingConfigurationRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorEmergencyCallingConfiguration operation. /// </summary> public partial class GetVoiceConnectorEmergencyCallingConfigurationResponse : AmazonWebServiceResponse { private EmergencyCallingConfiguration _emergencyCallingConfiguration; /// <summary> /// Gets and sets the property EmergencyCallingConfiguration. /// <para> /// The emergency calling configuration details. /// </para> /// </summary> public EmergencyCallingConfiguration EmergencyCallingConfiguration { get { return this._emergencyCallingConfiguration; } set { this._emergencyCallingConfiguration = value; } } // Check to see if EmergencyCallingConfiguration property is set internal bool IsSetEmergencyCallingConfiguration() { return this._emergencyCallingConfiguration != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorGroup operation. /// Retrieves details for the specified Amazon Chime Voice Connector group, such as timestamps,name, /// and associated <code>VoiceConnectorItems</code>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorGroup.html">GetVoiceConnectorGroup</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorGroupRequest : AmazonChimeRequest { private string _voiceConnectorGroupId; /// <summary> /// Gets and sets the property VoiceConnectorGroupId. /// <para> /// The Amazon Chime Voice Connector group ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorGroupId { get { return this._voiceConnectorGroupId; } set { this._voiceConnectorGroupId = value; } } // Check to see if VoiceConnectorGroupId property is set internal bool IsSetVoiceConnectorGroupId() { return this._voiceConnectorGroupId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorGroup operation. /// </summary> public partial class GetVoiceConnectorGroupResponse : AmazonWebServiceResponse { private VoiceConnectorGroup _voiceConnectorGroup; /// <summary> /// Gets and sets the property VoiceConnectorGroup. /// <para> /// The Amazon Chime Voice Connector group details. /// </para> /// </summary> public VoiceConnectorGroup VoiceConnectorGroup { get { return this._voiceConnectorGroup; } set { this._voiceConnectorGroup = value; } } // Check to see if VoiceConnectorGroup property is set internal bool IsSetVoiceConnectorGroup() { return this._voiceConnectorGroup != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorLoggingConfiguration operation. /// Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. /// Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorLoggingConfiguration.html">GetVoiceConnectorLoggingConfiguration</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorLoggingConfigurationRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorLoggingConfiguration operation. /// </summary> public partial class GetVoiceConnectorLoggingConfigurationResponse : AmazonWebServiceResponse { private LoggingConfiguration _loggingConfiguration; /// <summary> /// Gets and sets the property LoggingConfiguration. /// <para> /// The logging configuration details. /// </para> /// </summary> public LoggingConfiguration LoggingConfiguration { get { return this._loggingConfiguration; } set { this._loggingConfiguration = value; } } // Check to see if LoggingConfiguration property is set internal bool IsSetLoggingConfiguration() { return this._loggingConfiguration != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorOrigination operation. /// Retrieves origination setting details for the specified Amazon Chime Voice Connector. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorOrigination.html">GetVoiceConnectorOrigination</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorOriginationRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorOrigination operation. /// </summary> public partial class GetVoiceConnectorOriginationResponse : AmazonWebServiceResponse { private Origination _origination; /// <summary> /// Gets and sets the property Origination. /// <para> /// The origination setting details. /// </para> /// </summary> public Origination Origination { get { return this._origination; } set { this._origination = value; } } // Check to see if Origination property is set internal bool IsSetOrigination() { return this._origination != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorProxy operation. /// Gets the proxy configuration details for the specified Amazon Chime Voice Connector. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorProxy.html">GetVoiceConnectorProxy</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorProxyRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime voice connector ID. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorProxy operation. /// </summary> public partial class GetVoiceConnectorProxyResponse : AmazonWebServiceResponse { private Proxy _proxy; /// <summary> /// Gets and sets the property Proxy. /// <para> /// The proxy configuration details. /// </para> /// </summary> public Proxy Proxy { get { return this._proxy; } set { this._proxy = value; } } // Check to see if Proxy property is set internal bool IsSetProxy() { return this._proxy != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnector operation. /// Retrieves details for the specified Amazon Chime Voice Connector, such as timestamps,name, /// outbound host, and encryption requirements. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnector.html">GetVoiceConnector</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
74
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnector operation. /// </summary> public partial class GetVoiceConnectorResponse : AmazonWebServiceResponse { private VoiceConnector _voiceConnector; /// <summary> /// Gets and sets the property VoiceConnector. /// <para> /// The Amazon Chime Voice Connector details. /// </para> /// </summary> public VoiceConnector VoiceConnector { get { return this._voiceConnector; } set { this._voiceConnector = value; } } // Check to see if VoiceConnector property is set internal bool IsSetVoiceConnector() { return this._voiceConnector != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorStreamingConfiguration operation. /// Retrieves the streaming configuration details for the specified Amazon Chime Voice /// Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis. /// It also shows the retention period, in hours, for the Amazon Kinesis data. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorStreamingConfiguration.html">GetVoiceConnectorStreamingConfiguration</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorStreamingConfigurationRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
75
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorStreamingConfiguration operation. /// </summary> public partial class GetVoiceConnectorStreamingConfigurationResponse : AmazonWebServiceResponse { private StreamingConfiguration _streamingConfiguration; /// <summary> /// Gets and sets the property StreamingConfiguration. /// <para> /// The streaming configuration details. /// </para> /// </summary> public StreamingConfiguration StreamingConfiguration { get { return this._streamingConfiguration; } set { this._streamingConfiguration = value; } } // Check to see if StreamingConfiguration property is set internal bool IsSetStreamingConfiguration() { return this._streamingConfiguration != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorTerminationHealth operation. /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorTerminationHealth.html">GetVoiceConnectorTerminationHealth</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// <para> /// Retrieves information about the last time a SIP <code>OPTIONS</code> ping was received /// from your SIP infrastructure for the specified Amazon Chime Voice Connector. /// </para> /// </summary> public partial class GetVoiceConnectorTerminationHealthRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
75
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorTerminationHealth operation. /// </summary> public partial class GetVoiceConnectorTerminationHealthResponse : AmazonWebServiceResponse { private TerminationHealth _terminationHealth; /// <summary> /// Gets and sets the property TerminationHealth. /// <para> /// The termination health details. /// </para> /// </summary> public TerminationHealth TerminationHealth { get { return this._terminationHealth; } set { this._terminationHealth = value; } } // Check to see if TerminationHealth property is set internal bool IsSetTerminationHealth() { return this._terminationHealth != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the GetVoiceConnectorTermination operation. /// Retrieves termination setting details for the specified Amazon Chime Voice Connector. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_GetVoiceConnectorTermination.html">GetVoiceConnectorTermination</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class GetVoiceConnectorTerminationRequest : AmazonChimeRequest { private string _voiceConnectorId; /// <summary> /// Gets and sets the property VoiceConnectorId. /// <para> /// The Amazon Chime Voice Connector ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string VoiceConnectorId { get { return this._voiceConnectorId; } set { this._voiceConnectorId = value; } } // Check to see if VoiceConnectorId property is set internal bool IsSetVoiceConnectorId() { return this._voiceConnectorId != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the GetVoiceConnectorTermination operation. /// </summary> public partial class GetVoiceConnectorTerminationResponse : AmazonWebServiceResponse { private Termination _termination; /// <summary> /// Gets and sets the property Termination. /// <para> /// The termination setting details. /// </para> /// </summary> public Termination Termination { get { return this._termination; } set { this._termination = value; } } // Check to see if Termination property is set internal bool IsSetTermination() { return this._termination != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The details of a user. /// </summary> public partial class Identity { private string _arn; private string _name; /// <summary> /// Gets and sets the property Arn. /// <para> /// The ARN in an Identity. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name in an Identity. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=256)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Invitation object returned after emailing users to invite them to join the Amazon /// Chime <code>Team</code> account. /// </summary> public partial class Invite { private string _emailAddress; private EmailStatus _emailStatus; private string _inviteId; private InviteStatus _status; /// <summary> /// Gets and sets the property EmailAddress. /// <para> /// The email address to which the invite is sent. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string EmailAddress { get { return this._emailAddress; } set { this._emailAddress = value; } } // Check to see if EmailAddress property is set internal bool IsSetEmailAddress() { return this._emailAddress != null; } /// <summary> /// Gets and sets the property EmailStatus. /// <para> /// The status of the invite email. /// </para> /// </summary> public EmailStatus EmailStatus { get { return this._emailStatus; } set { this._emailStatus = value; } } // Check to see if EmailStatus property is set internal bool IsSetEmailStatus() { return this._emailStatus != null; } /// <summary> /// Gets and sets the property InviteId. /// <para> /// The invite ID. /// </para> /// </summary> public string InviteId { get { return this._inviteId; } set { this._inviteId = value; } } // Check to see if InviteId property is set internal bool IsSetInviteId() { return this._inviteId != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the invite. /// </para> /// </summary> public InviteStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }
116
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the InviteUsers operation. /// Sends email to a maximum of 50 users, inviting them to the specified Amazon Chime /// <code>Team</code> account. Only <code>Team</code> account types are currently supported /// for this action. /// </summary> public partial class InviteUsersRequest : AmazonChimeRequest { private string _accountId; private List<string> _userEmailList = new List<string>(); private UserType _userType; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property UserEmailList. /// <para> /// The user email addresses to which to send the email invitation. /// </para> /// </summary> [AWSProperty(Required=true, Max=50)] public List<string> UserEmailList { get { return this._userEmailList; } set { this._userEmailList = value; } } // Check to see if UserEmailList property is set internal bool IsSetUserEmailList() { return this._userEmailList != null && this._userEmailList.Count > 0; } /// <summary> /// Gets and sets the property UserType. /// <para> /// The user type. /// </para> /// </summary> public UserType UserType { get { return this._userType; } set { this._userType = value; } } // Check to see if UserType property is set internal bool IsSetUserType() { return this._userType != null; } } }
100
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the InviteUsers operation. /// </summary> public partial class InviteUsersResponse : AmazonWebServiceResponse { private List<Invite> _invites = new List<Invite>(); /// <summary> /// Gets and sets the property Invites. /// <para> /// The email invitation details. /// </para> /// </summary> public List<Invite> Invites { get { return this._invites; } set { this._invites = value; } } // Check to see if Invites property is set internal bool IsSetInvites() { return this._invites != null && this._invites.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAccounts operation. /// Lists the Amazon Chime accounts under the administrator's AWS account. You can filter /// accounts by account name prefix. To find out which Amazon Chime account a user belongs /// to, you can filter by the user's email address, which returns one account result. /// </summary> public partial class ListAccountsRequest : AmazonChimeRequest { private int? _maxResults; private string _name; private string _nextToken; private string _userEmail; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to return in a single call. Defaults to 100. /// </para> /// </summary> [AWSProperty(Min=1, Max=200)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// Amazon Chime account name prefix with which to filter results. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property UserEmail. /// <para> /// User email address with which to filter results. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string UserEmail { get { return this._userEmail; } set { this._userEmail = value; } } // Check to see if UserEmail property is set internal bool IsSetUserEmail() { return this._userEmail != null; } } }
120
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAccounts operation. /// </summary> public partial class ListAccountsResponse : AmazonWebServiceResponse { private List<Account> _accounts = new List<Account>(); private string _nextToken; /// <summary> /// Gets and sets the property Accounts. /// <para> /// List of Amazon Chime accounts and account details. /// </para> /// </summary> public List<Account> Accounts { get { return this._accounts; } set { this._accounts = value; } } // Check to see if Accounts property is set internal bool IsSetAccounts() { return this._accounts != null && this._accounts.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAppInstanceAdmins operation. /// Returns a list of the administrators in the <code>AppInstance</code>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstanceAdmins.html">ListAppInstanceAdmins</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListAppInstanceAdminsRequest : AmazonChimeRequest { private string _appInstanceArn; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of administrators that you want to return. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token returned from previous API requests until the number of administrators is /// reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
114
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAppInstanceAdmins operation. /// </summary> public partial class ListAppInstanceAdminsResponse : AmazonWebServiceResponse { private List<AppInstanceAdminSummary> _appInstanceAdmins = new List<AppInstanceAdminSummary>(); private string _appInstanceArn; private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceAdmins. /// <para> /// The information for each administrator. /// </para> /// </summary> public List<AppInstanceAdminSummary> AppInstanceAdmins { get { return this._appInstanceAdmins; } set { this._appInstanceAdmins = value; } } // Check to see if AppInstanceAdmins property is set internal bool IsSetAppInstanceAdmins() { return this._appInstanceAdmins != null && this._appInstanceAdmins.Count > 0; } /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token returned from previous API requests until the number of administrators is /// reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
98
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAppInstances operation. /// Lists all Amazon Chime <code>AppInstance</code>s created under a single AWS account. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstances.html">ListAppInstances</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListAppInstancesRequest : AmazonChimeRequest { private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of <code>AppInstance</code>s that you want to return. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API requests until you reach the maximum number of <code>AppInstance</code>s. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
93
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAppInstances operation. /// </summary> public partial class ListAppInstancesResponse : AmazonWebServiceResponse { private List<AppInstanceSummary> _appInstances = new List<AppInstanceSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property AppInstances. /// <para> /// The information for each <code>AppInstance</code>. /// </para> /// </summary> public List<AppInstanceSummary> AppInstances { get { return this._appInstances; } set { this._appInstances = value; } } // Check to see if AppInstances property is set internal bool IsSetAppInstances() { return this._appInstances != null && this._appInstances.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API requests until the maximum number of <code>AppInstance</code>s /// is reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAppInstanceUsers operation. /// List all <code>AppInstanceUsers</code> created under a single <code>AppInstance</code>. /// /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_ListAppInstanceUsers.html">ListAppInstanceUsers</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListAppInstanceUsersRequest : AmazonChimeRequest { private string _appInstanceArn; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of requests that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested users are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
114
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAppInstanceUsers operation. /// </summary> public partial class ListAppInstanceUsersResponse : AmazonWebServiceResponse { private string _appInstanceArn; private List<AppInstanceUserSummary> _appInstanceUsers = new List<AppInstanceUserSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } /// <summary> /// Gets and sets the property AppInstanceUsers. /// <para> /// The information for each requested <code>AppInstanceUser</code>. /// </para> /// </summary> public List<AppInstanceUserSummary> AppInstanceUsers { get { return this._appInstanceUsers; } set { this._appInstanceUsers = value; } } // Check to see if AppInstanceUsers property is set internal bool IsSetAppInstanceUsers() { return this._appInstanceUsers != null && this._appInstanceUsers.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested users are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAttendees operation. /// Lists the attendees for the specified Amazon Chime SDK meeting. For more information /// about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html">Using /// the Amazon Chime SDK</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// /// <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListAttendees.html">ListAttendees</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListAttendeesRequest : AmazonChimeRequest { private int? _maxResults; private string _meetingId; private string _nextToken; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to return in a single call. /// </para> /// </summary> [AWSProperty(Min=1, Max=99)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property MeetingId. /// <para> /// The Amazon Chime SDK meeting ID. /// </para> /// </summary> [AWSProperty(Required=true)] 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; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
114
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAttendees operation. /// </summary> public partial class ListAttendeesResponse : AmazonWebServiceResponse { private List<Attendee> _attendees = new List<Attendee>(); private string _nextToken; /// <summary> /// Gets and sets the property Attendees. /// <para> /// The Amazon Chime SDK attendee information. /// </para> /// </summary> public List<Attendee> Attendees { get { return this._attendees; } set { this._attendees = value; } } // Check to see if Attendees property is set internal bool IsSetAttendees() { return this._attendees != null && this._attendees.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListAttendeeTags operation. /// Lists the tags applied to an Amazon Chime SDK attendee resource. /// /// <important> /// <para> /// ListAttendeeTags is not supported in the Amazon Chime SDK Meetings Namespace. Update /// your application to remove calls to this API. /// </para> /// </important> /// </summary> public partial class ListAttendeeTagsRequest : AmazonChimeRequest { private string _attendeeId; private string _meetingId; /// <summary> /// Gets and sets the property AttendeeId. /// <para> /// The Amazon Chime SDK attendee ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AttendeeId { get { return this._attendeeId; } set { this._attendeeId = value; } } // Check to see if AttendeeId property is set internal bool IsSetAttendeeId() { return this._attendeeId != null; } /// <summary> /// Gets and sets the property MeetingId. /// <para> /// The Amazon Chime SDK meeting ID. /// </para> /// </summary> [AWSProperty(Required=true)] 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; } } }
86
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListAttendeeTags operation. /// </summary> public partial class ListAttendeeTagsResponse : AmazonWebServiceResponse { private List<Tag> _tags = new List<Tag>(); /// <summary> /// Gets and sets the property Tags. /// <para> /// A list of tag key-value pairs. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public List<Tag> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListBots operation. /// Lists the bots associated with the administrator's Amazon Chime Enterprise account /// ID. /// </summary> public partial class ListBotsRequest : AmazonChimeRequest { private string _accountId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AccountId. /// <para> /// The Amazon Chime account ID. /// </para> /// </summary> [AWSProperty(Required=true)] public string AccountId { get { return this._accountId; } set { this._accountId = value; } } // Check to see if AccountId property is set internal bool IsSetAccountId() { return this._accountId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to return in a single call. The default is 10. /// </para> /// </summary> [AWSProperty(Min=1, Max=99)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
99
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListBots operation. /// </summary> public partial class ListBotsResponse : AmazonWebServiceResponse { private List<Bot> _bots = new List<Bot>(); private string _nextToken; /// <summary> /// Gets and sets the property Bots. /// <para> /// List of bots and bot details. /// </para> /// </summary> public List<Bot> Bots { get { return this._bots; } set { this._bots = value; } } // Check to see if Bots property is set internal bool IsSetBots() { return this._bots != null && this._bots.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token to use to retrieve the next page of results. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelBans operation. /// Lists all the users banned from a particular channel. /// /// <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelBans.html">ListChannelBans</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelBansRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of bans that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested bans are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
138
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelBans operation. /// </summary> public partial class ListChannelBansResponse : AmazonWebServiceResponse { private string _channelArn; private List<ChannelBanSummary> _channelBans = new List<ChannelBanSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChannelBans. /// <para> /// The information for each requested ban. /// </para> /// </summary> public List<ChannelBanSummary> ChannelBans { get { return this._channelBans; } set { this._channelBans = value; } } // Check to see if ChannelBans property is set internal bool IsSetChannelBans() { return this._channelBans != null && this._channelBans.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested bans are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelMembershipsForAppInstanceUser operation. /// Lists all channels that a particular <code>AppInstanceUser</code> is a part of. Only /// an <code>AppInstanceAdmin</code> can call the API with a user ARN that is not their /// own. /// /// <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMembershipsForAppInstanceUser.html">ListChannelMembershipsForAppInstanceUser</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelMembershipsForAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the <code>AppInstanceUser</code>s /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string AppInstanceUserArn { get { return this._appInstanceUserArn; } set { this._appInstanceUserArn = value; } } // Check to see if AppInstanceUserArn property is set internal bool IsSetAppInstanceUserArn() { return this._appInstanceUserArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of users that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token returned from previous API requests until the number of channel memberships /// is reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
141
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelMembershipsForAppInstanceUser operation. /// </summary> public partial class ListChannelMembershipsForAppInstanceUserResponse : AmazonWebServiceResponse { private List<ChannelMembershipForAppInstanceUserSummary> _channelMemberships = new List<ChannelMembershipForAppInstanceUserSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property ChannelMemberships. /// <para> /// The information for the requested channel memberships. /// </para> /// </summary> public List<ChannelMembershipForAppInstanceUserSummary> ChannelMemberships { get { return this._channelMemberships; } set { this._channelMemberships = value; } } // Check to see if ChannelMemberships property is set internal bool IsSetChannelMemberships() { return this._channelMemberships != null && this._channelMemberships.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested users are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelMemberships operation. /// Lists all channel memberships in a channel. /// /// <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMemberships.html">ListChannelMemberships</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelMembershipsRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; private ChannelMembershipType _type; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The maximum number of channel memberships that you want returned. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of channel memberships that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested channel memberships are /// returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The membership type of a user, <code>DEFAULT</code> or <code>HIDDEN</code>. Default /// members are always returned as part of <code>ListChannelMemberships</code>. Hidden /// members are only returned if the type filter in <code>ListChannelMemberships</code> /// equals <code>HIDDEN</code>. Otherwise hidden members are not returned. /// </para> /// </summary> public ChannelMembershipType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
161
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelMemberships operation. /// </summary> public partial class ListChannelMembershipsResponse : AmazonWebServiceResponse { private string _channelArn; private List<ChannelMembershipSummary> _channelMemberships = new List<ChannelMembershipSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChannelMemberships. /// <para> /// The information for the requested channel memberships. /// </para> /// </summary> public List<ChannelMembershipSummary> ChannelMemberships { get { return this._channelMemberships; } set { this._channelMemberships = value; } } // Check to see if ChannelMemberships property is set internal bool IsSetChannelMemberships() { return this._channelMemberships != null && this._channelMemberships.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested channel memberships are /// returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
98
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelMessages operation. /// List all the messages in a channel. Returns a paginated list of <code>ChannelMessages</code>. /// By default, sorted by creation timestamp in descending order. /// /// <note> /// <para> /// Redacted messages appear in the results as empty, since they are only redacted, not /// deleted. Deleted messages do not appear in the results. This action always returns /// the latest version of an edited message. /// </para> /// /// <para> /// Also, the x-amz-chime-bearer request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMessages.html">ListChannelMessages</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelMessagesRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; private DateTime? _notAfter; private DateTime? _notBefore; private SortOrder _sortOrder; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of messages that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested messages are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property NotAfter. /// <para> /// The final or ending time stamp for your requested messages. /// </para> /// </summary> public DateTime NotAfter { get { return this._notAfter.GetValueOrDefault(); } set { this._notAfter = value; } } // Check to see if NotAfter property is set internal bool IsSetNotAfter() { return this._notAfter.HasValue; } /// <summary> /// Gets and sets the property NotBefore. /// <para> /// The initial or starting time stamp for your requested messages. /// </para> /// </summary> public DateTime NotBefore { get { return this._notBefore.GetValueOrDefault(); } set { this._notBefore = value; } } // Check to see if NotBefore property is set internal bool IsSetNotBefore() { return this._notBefore.HasValue; } /// <summary> /// Gets and sets the property SortOrder. /// <para> /// The order in which you want messages sorted. Default is Descending, based on time /// created. /// </para> /// </summary> public SortOrder SortOrder { get { return this._sortOrder; } set { this._sortOrder = value; } } // Check to see if SortOrder property is set internal bool IsSetSortOrder() { return this._sortOrder != null; } } }
203
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelMessages operation. /// </summary> public partial class ListChannelMessagesResponse : AmazonWebServiceResponse { private string _channelArn; private List<ChannelMessageSummary> _channelMessages = new List<ChannelMessageSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel containing the requested messages. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChannelMessages. /// <para> /// The information about, and content of, each requested message. /// </para> /// </summary> public List<ChannelMessageSummary> ChannelMessages { get { return this._channelMessages; } set { this._channelMessages = value; } } // Check to see if ChannelMessages property is set internal bool IsSetChannelMessages() { return this._channelMessages != null && this._channelMessages.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested messages are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelModerators operation. /// Lists all the moderators for a channel. /// /// <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelModerators.html">ListChannelModerators</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelModeratorsRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of moderators that you want returned. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested moderators are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
138
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelModerators operation. /// </summary> public partial class ListChannelModeratorsResponse : AmazonWebServiceResponse { private string _channelArn; private List<ChannelModeratorSummary> _channelModerators = new List<ChannelModeratorSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChannelArn { get { return this._channelArn; } set { this._channelArn = value; } } // Check to see if ChannelArn property is set internal bool IsSetChannelArn() { return this._channelArn != null; } /// <summary> /// Gets and sets the property ChannelModerators. /// <para> /// The information about and names of each moderator. /// </para> /// </summary> public List<ChannelModeratorSummary> ChannelModerators { get { return this._channelModerators; } set { this._channelModerators = value; } } // Check to see if ChannelModerators property is set internal bool IsSetChannelModerators() { return this._channelModerators != null && this._channelModerators.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested moderators are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannelsModeratedByAppInstanceUser operation. /// A list of the channels moderated by an <code>AppInstanceUser</code>. /// /// <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelsModeratedByAppInstanceUser.html">ListChannelsModeratedByAppInstanceUser</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelsModeratedByAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the user in the moderated channel. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string AppInstanceUserArn { get { return this._appInstanceUserArn; } set { this._appInstanceUserArn = value; } } // Check to see if AppInstanceUserArn property is set internal bool IsSetAppInstanceUserArn() { return this._appInstanceUserArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of channels in the request. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token returned from previous API requests until the number of channels moderated /// by the user is reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
139
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListChannelsModeratedByAppInstanceUser operation. /// </summary> public partial class ListChannelsModeratedByAppInstanceUserResponse : AmazonWebServiceResponse { private List<ChannelModeratedByAppInstanceUserSummary> _channels = new List<ChannelModeratedByAppInstanceUserSummary>(); private string _nextToken; /// <summary> /// Gets and sets the property Channels. /// <para> /// The moderated channels in the request. /// </para> /// </summary> public List<ChannelModeratedByAppInstanceUserSummary> Channels { get { return this._channels; } set { this._channels = value; } } // Check to see if Channels property is set internal bool IsSetChannels() { return this._channels != null && this._channels.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token returned from previous API requests until the number of channels moderated /// by the user is reached. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListChannels operation. /// Lists all Channels created under a single Chime App as a paginated list. You can specify /// filters to narrow results. /// /// <p class="title"> <b>Functionality &amp; restrictions</b> /// </para> /// <ul> <li> /// <para> /// Use privacy = <code>PUBLIC</code> to retrieve all public channels in the account. /// </para> /// </li> <li> /// <para> /// Only an <code>AppInstanceAdmin</code> can set privacy = <code>PRIVATE</code> to list /// the private channels in an account. /// </para> /// </li> </ul> <note> /// <para> /// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code> /// of the user that makes the API call as the value in the header. /// </para> /// </note> <important> /// <para> /// <b>This API is is no longer supported and will not be updated.</b> We recommend using /// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannels.html">ListChannels</a>, /// in the Amazon Chime SDK. /// </para> /// /// <para> /// Using the latest version requires migrating to a dedicated namespace. For more information, /// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating /// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>. /// </para> /// </important> /// </summary> public partial class ListChannelsRequest : AmazonChimeRequest { private string _appInstanceArn; private string _chimeBearer; private int? _maxResults; private string _nextToken; private ChannelPrivacy _privacy; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the <code>AppInstance</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceArn { get { return this._appInstanceArn; } set { this._appInstanceArn = value; } } // Check to see if AppInstanceArn property is set internal bool IsSetAppInstanceArn() { return this._appInstanceArn != null; } /// <summary> /// Gets and sets the property ChimeBearer. /// <para> /// The <code>AppInstanceUserArn</code> of the user that makes the API call. /// </para> /// </summary> [AWSProperty(Min=5, Max=1600)] public string ChimeBearer { get { return this._chimeBearer; } set { this._chimeBearer = value; } } // Check to see if ChimeBearer property is set internal bool IsSetChimeBearer() { return this._chimeBearer != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of channels that you want to return. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The token passed by previous API calls until all requested channels are returned. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=0, Max=2048)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property Privacy. /// <para> /// The privacy setting. <code>PUBLIC</code> retrieves all the public channels. <code>PRIVATE</code> /// retrieves private channels. Only an <code>AppInstanceAdmin</code> can retrieve private /// channels. /// </para> /// </summary> public ChannelPrivacy Privacy { get { return this._privacy; } set { this._privacy = value; } } // Check to see if Privacy property is set internal bool IsSetPrivacy() { return this._privacy != null; } } }
171