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> /// This is the response object from the CreateRoomMembership operation. /// </summary> public partial class CreateRoomMembershipResponse : AmazonWebServiceResponse { private RoomMembership _roomMembership; /// <summary> /// Gets and sets the property RoomMembership. /// <para> /// The room membership details. /// </para> /// </summary> public RoomMembership RoomMembership { get { return this._roomMembership; } set { this._roomMembership = value; } } // Check to see if RoomMembership property is set internal bool IsSetRoomMembership() { return this._roomMembership != 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 CreateRoom operation. /// Creates a chat room for the specified Amazon Chime Enterprise account. /// </summary> public partial class CreateRoomRequest : AmazonChimeRequest { private string _accountId; private string _clientRequestToken; private string _name; /// <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 ClientRequestToken. /// <para> /// The idempotency token for the request. /// </para> /// </summary> [AWSProperty(Sensitive=true, Min=2, Max=64)] public string ClientRequestToken { get { return this._clientRequestToken; } set { this._clientRequestToken = value; } } // Check to see if ClientRequestToken property is set internal bool IsSetClientRequestToken() { return this._clientRequestToken != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The room name. /// </para> /// </summary> [AWSProperty(Required=true, Sensitive=true)] 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; } } }
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 CreateRoom operation. /// </summary> public partial class CreateRoomResponse : 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 CreateSipMediaApplicationCall operation. /// Creates an outbound call to a phone number from the phone number specified in the /// request, and it invokes the endpoint of the specified <code>sipMediaApplicationId</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_CreateSipMediaApplicationCall.html">CreateSipMediaApplicationCall</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 CreateSipMediaApplicationCallRequest : AmazonChimeRequest { private string _fromPhoneNumber; private Dictionary<string, string> _sipHeaders = new Dictionary<string, string>(); private string _sipMediaApplicationId; private string _toPhoneNumber; /// <summary> /// Gets and sets the property FromPhoneNumber. /// <para> /// The phone number that a user calls from. This is a phone number in your Amazon Chime /// phone number inventory. /// </para> /// </summary> [AWSProperty(Required=true, Sensitive=true)] public string FromPhoneNumber { get { return this._fromPhoneNumber; } set { this._fromPhoneNumber = value; } } // Check to see if FromPhoneNumber property is set internal bool IsSetFromPhoneNumber() { return this._fromPhoneNumber != null; } /// <summary> /// Gets and sets the property SipHeaders. /// <para> /// The SIP headers added to an outbound call leg. /// </para> /// </summary> [AWSProperty(Min=0, Max=20)] public Dictionary<string, string> SipHeaders { get { return this._sipHeaders; } set { this._sipHeaders = value; } } // Check to see if SipHeaders property is set internal bool IsSetSipHeaders() { return this._sipHeaders != null && this._sipHeaders.Count > 0; } /// <summary> /// Gets and sets the property SipMediaApplicationId. /// <para> /// The ID of the SIP media application. /// </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; } /// <summary> /// Gets and sets the property ToPhoneNumber. /// <para> /// The phone number that the service should call. /// </para> /// </summary> [AWSProperty(Required=true, Sensitive=true)] public string ToPhoneNumber { get { return this._toPhoneNumber; } set { this._toPhoneNumber = value; } } // Check to see if ToPhoneNumber property is set internal bool IsSetToPhoneNumber() { return this._toPhoneNumber != null; } } }
135
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 CreateSipMediaApplicationCall operation. /// </summary> public partial class CreateSipMediaApplicationCallResponse : AmazonWebServiceResponse { private SipMediaApplicationCall _sipMediaApplicationCall; /// <summary> /// Gets and sets the property SipMediaApplicationCall. /// <para> /// The actual call. /// </para> /// </summary> public SipMediaApplicationCall SipMediaApplicationCall { get { return this._sipMediaApplicationCall; } set { this._sipMediaApplicationCall = value; } } // Check to see if SipMediaApplicationCall property is set internal bool IsSetSipMediaApplicationCall() { return this._sipMediaApplicationCall != 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 CreateSipMediaApplication operation. /// Creates a 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_CreateSipMediaApplication.html">CreateSipMediaApplication</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 CreateSipMediaApplicationRequest : AmazonChimeRequest { private string _awsRegion; private List<SipMediaApplicationEndpoint> _endpoints = new List<SipMediaApplicationEndpoint>(); private string _name; /// <summary> /// Gets and sets the property AwsRegion. /// <para> /// The AWS Region assigned to the SIP media application. /// </para> /// </summary> [AWSProperty(Required=true)] public string AwsRegion { get { return this._awsRegion; } set { this._awsRegion = value; } } // Check to see if AwsRegion property is set internal bool IsSetAwsRegion() { return this._awsRegion != null; } /// <summary> /// Gets and sets the property Endpoints. /// <para> /// List of endpoints (Lambda Amazon Resource Names) specified for the SIP media application. /// Currently, only one endpoint is supported. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=1)] public List<SipMediaApplicationEndpoint> Endpoints { get { return this._endpoints; } set { this._endpoints = value; } } // Check to see if Endpoints property is set internal bool IsSetEndpoints() { return this._endpoints != null && this._endpoints.Count > 0; } /// <summary> /// Gets and sets the property Name. /// <para> /// The SIP media application name. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, 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; } } }
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 CreateSipMediaApplication operation. /// </summary> public partial class CreateSipMediaApplicationResponse : 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 CreateSipRule operation. /// Creates a SIP rule which can be used to run a SIP media application as a target for /// a specific trigger type. /// /// <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_CreateSipRule.html">CreateSipRule</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 CreateSipRuleRequest : AmazonChimeRequest { private bool? _disabled; private string _name; private List<SipRuleTargetApplication> _targetApplications = new List<SipRuleTargetApplication>(); private SipRuleTriggerType _triggerType; private string _triggerValue; /// <summary> /// Gets and sets the property Disabled. /// <para> /// Enables or disables a rule. You must disable rules before you can delete them. /// </para> /// </summary> public bool Disabled { get { return this._disabled.GetValueOrDefault(); } set { this._disabled = value; } } // Check to see if Disabled property is set internal bool IsSetDisabled() { return this._disabled.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the SIP rule. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, 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; } /// <summary> /// Gets and sets the property TargetApplications. /// <para> /// List of SIP media applications with priority and AWS Region. Only one SIP application /// per AWS Region can be used. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=25)] public List<SipRuleTargetApplication> TargetApplications { get { return this._targetApplications; } set { this._targetApplications = value; } } // Check to see if TargetApplications property is set internal bool IsSetTargetApplications() { return this._targetApplications != null && this._targetApplications.Count > 0; } /// <summary> /// Gets and sets the property TriggerType. /// <para> /// The type of trigger assigned to the SIP rule in <code>TriggerValue</code>, currently /// <code>RequestUriHostname</code> or <code>ToPhoneNumber</code>. /// </para> /// </summary> [AWSProperty(Required=true)] public SipRuleTriggerType TriggerType { get { return this._triggerType; } set { this._triggerType = value; } } // Check to see if TriggerType property is set internal bool IsSetTriggerType() { return this._triggerType != null; } /// <summary> /// Gets and sets the property TriggerValue. /// <para> /// If <code>TriggerType</code> is <code>RequestUriHostname</code>, the value can be the /// outbound host name of an Amazon Chime Voice Connector. If <code>TriggerType</code> /// is <code>ToPhoneNumber</code>, the value can be a customer-owned phone number in the /// E164 format. The <code>SipMediaApplication</code> specified in the <code>SipRule</code> /// is triggered if the request URI in an incoming SIP request matches the <code>RequestUriHostname</code>, /// or if the <code>To</code> header in the incoming SIP request matches the <code>ToPhoneNumber</code> /// value. /// </para> /// </summary> [AWSProperty(Required=true)] public string TriggerValue { get { return this._triggerValue; } set { this._triggerValue = value; } } // Check to see if TriggerValue property is set internal bool IsSetTriggerValue() { return this._triggerValue != 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 CreateSipRule operation. /// </summary> public partial class CreateSipRuleResponse : AmazonWebServiceResponse { private SipRule _sipRule; /// <summary> /// Gets and sets the property SipRule. /// <para> /// Returns the SIP rule information, including the rule ID, triggers, and target applications. /// </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 CreateUser operation. /// Creates a user under the specified Amazon Chime account. /// </summary> public partial class CreateUserRequest : AmazonChimeRequest { private string _accountId; private string _email; private string _username; 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 Email. /// <para> /// The user's email address. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string Email { get { return this._email; } set { this._email = value; } } // Check to see if Email property is set internal bool IsSetEmail() { return this._email != null; } /// <summary> /// Gets and sets the property Username. /// <para> /// The user name. /// </para> /// </summary> public string Username { get { return this._username; } set { this._username = value; } } // Check to see if Username property is set internal bool IsSetUsername() { return this._username != null; } /// <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; } } }
117
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 CreateUser operation. /// </summary> public partial class CreateUserResponse : AmazonWebServiceResponse { private User _user; /// <summary> /// Gets and sets the property User. /// <para> /// The user on the Amazon Chime account. /// </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 CreateVoiceConnectorGroup operation. /// Creates an Amazon Chime Voice Connector group under the administrator's AWS account. /// You can associate Amazon Chime Voice Connectors with the Amazon Chime Voice Connector /// group by including <code>VoiceConnectorItems</code> in the request. /// /// /// <para> /// You can include Amazon Chime Voice Connectors from different AWS Regions in your group. /// This creates a fault tolerant mechanism for fallback in case of availability events. /// </para> /// <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_CreateVoiceConnectorGroup.html">CreateVoiceConnectorGroup</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 CreateVoiceConnectorGroupRequest : AmazonChimeRequest { private string _name; private List<VoiceConnectorItem> _voiceConnectorItems = new List<VoiceConnectorItem>(); /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the Amazon Chime Voice Connector group. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, 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; } /// <summary> /// Gets and sets the property VoiceConnectorItems. /// <para> /// The Amazon Chime Voice Connectors to route inbound calls to. /// </para> /// </summary> public List<VoiceConnectorItem> VoiceConnectorItems { get { return this._voiceConnectorItems; } set { this._voiceConnectorItems = value; } } // Check to see if VoiceConnectorItems property is set internal bool IsSetVoiceConnectorItems() { return this._voiceConnectorItems != null && this._voiceConnectorItems.Count > 0; } } }
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 CreateVoiceConnectorGroup operation. /// </summary> public partial class CreateVoiceConnectorGroupResponse : 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 CreateVoiceConnector operation. /// Creates an Amazon Chime Voice Connector under the administrator's AWS account. You /// can choose to create an Amazon Chime Voice Connector in a specific AWS Region. /// /// /// <para> /// Enabling <a>CreateVoiceConnectorRequest$RequireEncryption</a> configures your Amazon /// Chime Voice Connector to use TLS transport for SIP signaling and Secure RTP (SRTP) /// for media. Inbound calls use TLS transport, and unencrypted outbound calls are blocked. /// /// </para> /// <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_CreateVoiceConnector.html">CreateVoiceConnector</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 CreateVoiceConnectorRequest : AmazonChimeRequest { private VoiceConnectorAwsRegion _awsRegion; private string _name; private bool? _requireEncryption; /// <summary> /// Gets and sets the property AwsRegion. /// <para> /// The AWS Region in which the Amazon Chime Voice Connector is created. Default value: /// <code>us-east-1</code> . /// </para> /// </summary> public VoiceConnectorAwsRegion AwsRegion { get { return this._awsRegion; } set { this._awsRegion = value; } } // Check to see if AwsRegion property is set internal bool IsSetAwsRegion() { return this._awsRegion != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the Amazon Chime Voice Connector. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, 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; } /// <summary> /// Gets and sets the property RequireEncryption. /// <para> /// When enabled, requires encryption for the Amazon Chime Voice Connector. /// </para> /// </summary> [AWSProperty(Required=true)] public bool RequireEncryption { get { return this._requireEncryption.GetValueOrDefault(); } set { this._requireEncryption = value; } } // Check to see if RequireEncryption property is set internal bool IsSetRequireEncryption() { return this._requireEncryption.HasValue; } } }
121
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 CreateVoiceConnector operation. /// </summary> public partial class CreateVoiceConnectorResponse : 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> /// The SIP credentials used to authenticate requests to your Amazon Chime Voice Connector. /// </summary> public partial class Credential { private string _password; private string _username; /// <summary> /// Gets and sets the property Password. /// <para> /// The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string Password { get { return this._password; } set { this._password = value; } } // Check to see if Password property is set internal bool IsSetPassword() { return this._password != null; } /// <summary> /// Gets and sets the property Username. /// <para> /// The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string Username { get { return this._username; } set { this._username = value; } } // Check to see if Username property is set internal bool IsSetUsername() { return this._username != 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 DeleteAccount operation. /// Deletes the specified Amazon Chime account. You must suspend all users before deleting /// <code>Team</code> account. You can use the <a>BatchSuspendUser</a> action to dodo. /// /// /// <para> /// For <code>EnterpriseLWA</code> and <code>EnterpriseAD</code> accounts, you must release /// the claimed domains for your Amazon Chime account before deletion. As soon as you /// release the domain, all users under that account are suspended. /// </para> /// /// <para> /// Deleted accounts appear in your <code>Disabled</code> accounts list for 90 days. To /// restore deleted account from your <code>Disabled</code> accounts list, you must contact /// AWS Support. /// </para> /// /// <para> /// After 90 days, deleted accounts are permanently removed from your <code>Disabled</code> /// accounts list. /// </para> /// </summary> public partial class DeleteAccountRequest : 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; } } }
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> /// This is the response object from the DeleteAccount operation. /// </summary> public partial class DeleteAccountResponse : AmazonWebServiceResponse { } }
38
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 DeleteAppInstanceAdmin operation. /// Demotes an <code>AppInstanceAdmin</code> to an <code>AppInstanceUser</code>. This /// action does not delete the user. /// /// <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_DeleteAppInstanceAdmin.html">DeleteAppInstanceAdmin</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 DeleteAppInstanceAdminRequest : AmazonChimeRequest { private string _appInstanceAdminArn; private string _appInstanceArn; /// <summary> /// Gets and sets the property AppInstanceAdminArn. /// <para> /// The ARN of the <code>AppInstance</code>'s administrator. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceAdminArn { get { return this._appInstanceAdminArn; } set { this._appInstanceAdminArn = value; } } // Check to see if AppInstanceAdminArn property is set internal bool IsSetAppInstanceAdminArn() { return this._appInstanceAdminArn != null; } /// <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; } } }
94
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 DeleteAppInstanceAdmin operation. /// </summary> public partial class DeleteAppInstanceAdminResponse : AmazonWebServiceResponse { } }
38
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 DeleteAppInstance operation. /// Deletes an <code>AppInstance</code> and all associated data asynchronously. /// /// <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_DeleteAppInstance.html">DeleteAppInstance</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 DeleteAppInstanceRequest : 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 DeleteAppInstance operation. /// </summary> public partial class DeleteAppInstanceResponse : AmazonWebServiceResponse { } }
38
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 DeleteAppInstanceStreamingConfigurations operation. /// Deletes the streaming configurations of 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_DeleteAppInstanceStreamingConfigurations.html">DeleteAppInstanceStreamingConfigurations</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 DeleteAppInstanceStreamingConfigurationsRequest : AmazonChimeRequest { private string _appInstanceArn; /// <summary> /// Gets and sets the property AppInstanceArn. /// <para> /// The ARN of the streaming configurations being deleted. /// </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 DeleteAppInstanceStreamingConfigurations operation. /// </summary> public partial class DeleteAppInstanceStreamingConfigurationsResponse : AmazonWebServiceResponse { } }
38
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 DeleteAppInstanceUser operation. /// Deletes an <code>AppInstanceUser</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_DeleteAppInstanceUser.html">DeleteAppInstanceUser</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 DeleteAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the user request being deleted. /// </para> /// </summary> [AWSProperty(Required=true, 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; } } }
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 DeleteAppInstanceUser operation. /// </summary> public partial class DeleteAppInstanceUserResponse : AmazonWebServiceResponse { } }
38
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 DeleteAttendee operation. /// Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their /// <code>JoinToken</code>. Attendees are automatically deleted when a Amazon Chime SDK /// meeting is deleted. 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_DeleteAttendee.html">DeleteAttendee</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 DeleteAttendeeRequest : 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; } } }
96
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 DeleteAttendee operation. /// </summary> public partial class DeleteAttendeeResponse : AmazonWebServiceResponse { } }
38
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 DeleteChannelBan operation. /// Removes a user from a channel's ban list. /// /// <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_DeleteChannelBan.html">DeleteChannelBan</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 DeleteChannelBanRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private string _memberArn; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel from which the <code>AppInstanceUser</code> was banned. /// </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 MemberArn. /// <para> /// The ARN of the <code>AppInstanceUser</code> that you want to reinstate. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string MemberArn { get { return this._memberArn; } set { this._memberArn = value; } } // Check to see if MemberArn property is set internal bool IsSetMemberArn() { return this._memberArn != 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 DeleteChannelBan operation. /// </summary> public partial class DeleteChannelBanResponse : AmazonWebServiceResponse { } }
38
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 DeleteChannelMembership operation. /// Removes a member from 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_DeleteChannelMembership.html">DeleteChannelMembership</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 DeleteChannelMembershipRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private string _memberArn; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel from which you want to remove the user. /// </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 MemberArn. /// <para> /// The ARN of the member that you're removing from the channel. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string MemberArn { get { return this._memberArn; } set { this._memberArn = value; } } // Check to see if MemberArn property is set internal bool IsSetMemberArn() { return this._memberArn != 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 DeleteChannelMembership operation. /// </summary> public partial class DeleteChannelMembershipResponse : AmazonWebServiceResponse { } }
38
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 DeleteChannelMessage operation. /// Deletes a channel message. Only admins can perform this action. Deletion makes messages /// inaccessible immediately. A background process deletes any revisions created by <code>UpdateChannelMessage</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_DeleteChannelMessage.html">DeleteChannelMessage</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 DeleteChannelMessageRequest : 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 being deleted. /// </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; } } }
119
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 DeleteChannelMessage operation. /// </summary> public partial class DeleteChannelMessageResponse : AmazonWebServiceResponse { } }
38
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 DeleteChannelModerator operation. /// Deletes a channel moderator. /// /// <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_DeleteChannelModerator.html">DeleteChannelModerator</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 DeleteChannelModeratorRequest : AmazonChimeRequest { private string _channelArn; private string _channelModeratorArn; private string _chimeBearer; /// <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 ChannelModeratorArn. /// <para> /// The ARN of the moderator being deleted. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelModeratorArn { get { return this._channelModeratorArn; } set { this._channelModeratorArn = value; } } // Check to see if ChannelModeratorArn property is set internal bool IsSetChannelModeratorArn() { return this._channelModeratorArn != 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; } } }
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 DeleteChannelModerator operation. /// </summary> public partial class DeleteChannelModeratorResponse : AmazonWebServiceResponse { } }
38
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 DeleteChannel operation. /// Immediately makes a channel and its memberships inaccessible and marks them for deletion. /// This is an irreversible process. /// /// <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_DeleteChannel.html">DeleteChannel</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 DeleteChannelRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel being deleted. /// </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; } } }
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 DeleteChannel operation. /// </summary> public partial class DeleteChannelResponse : AmazonWebServiceResponse { } }
38
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 DeleteEventsConfiguration operation. /// Deletes the events configuration that allows a bot to receive outgoing events. /// </summary> public partial class DeleteEventsConfigurationRequest : 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; } } }
79
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 DeleteEventsConfiguration operation. /// </summary> public partial class DeleteEventsConfigurationResponse : AmazonWebServiceResponse { } }
38
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 DeleteMediaCapturePipeline operation. /// Deletes the 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_DeleteMediaCapturePipeline.html">DeleteMediaCapturePipeline</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 DeleteMediaCapturePipelineRequest : AmazonChimeRequest { private string _mediaPipelineId; /// <summary> /// Gets and sets the property MediaPipelineId. /// <para> /// The ID of the media capture pipeline being deleted. /// </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 DeleteMediaCapturePipeline operation. /// </summary> public partial class DeleteMediaCapturePipelineResponse : AmazonWebServiceResponse { } }
38
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 DeleteMeeting operation. /// Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, /// disconnects all clients, and prevents new clients from joining the 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_DeleteMeeting.html">DeleteMeeting</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 DeleteMeetingRequest : 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 DeleteMeeting operation. /// </summary> public partial class DeleteMeetingResponse : AmazonWebServiceResponse { } }
38
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 DeletePhoneNumber operation. /// Moves the specified phone number into the <b>Deletion queue</b>. A phone number must /// be disassociated from any users or Amazon Chime Voice Connectors before it can be /// deleted. /// /// /// <para> /// Deleted phone numbers remain in the <b>Deletion queue</b> for 7 days before they are /// deleted permanently. /// </para> /// </summary> public partial class DeletePhoneNumberRequest : 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; } } }
67
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 DeletePhoneNumber operation. /// </summary> public partial class DeletePhoneNumberResponse : AmazonWebServiceResponse { } }
38
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 DeleteProxySession operation. /// Deletes the specified proxy session from 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_DeleteProxySession.html">DeleteProxySession</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 DeleteProxySessionRequest : 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 DeleteProxySession operation. /// </summary> public partial class DeleteProxySessionResponse : AmazonWebServiceResponse { } }
38
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 DeleteRoomMembership operation. /// Removes a member from a chat room in an Amazon Chime Enterprise account. /// </summary> public partial class DeleteRoomMembershipRequest : AmazonChimeRequest { private string _accountId; private string _memberId; 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 MemberId. /// <para> /// The member ID (user ID or bot ID). /// </para> /// </summary> [AWSProperty(Required=true)] public string MemberId { get { return this._memberId; } set { this._memberId = value; } } // Check to see if MemberId property is set internal bool IsSetMemberId() { return this._memberId != 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; } } }
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 DeleteRoomMembership operation. /// </summary> public partial class DeleteRoomMembershipResponse : AmazonWebServiceResponse { } }
38
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 DeleteRoom operation. /// Deletes a chat room in an Amazon Chime Enterprise account. /// </summary> public partial class DeleteRoomRequest : 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 chat 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; } } }
79
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 DeleteRoom operation. /// </summary> public partial class DeleteRoomResponse : AmazonWebServiceResponse { } }
38
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 DeleteSipMediaApplication operation. /// Deletes a 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_DeleteSipMediaApplication.html">DeleteSipMediaApplication</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 DeleteSipMediaApplicationRequest : 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 DeleteSipMediaApplication operation. /// </summary> public partial class DeleteSipMediaApplicationResponse : AmazonWebServiceResponse { } }
38
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 DeleteSipRule operation. /// Deletes a SIP rule. You must disable a SIP rule before you can delete it. /// /// <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_DeleteSipRule.html">DeleteSipRule</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 DeleteSipRuleRequest : 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; } } }
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 DeleteSipRule operation. /// </summary> public partial class DeleteSipRuleResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorEmergencyCallingConfiguration operation. /// Deletes the emergency calling configuration details from 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_DeleteVoiceConnectorEmergencyCallingConfiguration.html">DeleteVoiceConnectorEmergencyCallingConfiguration</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 DeleteVoiceConnectorEmergencyCallingConfigurationRequest : 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 DeleteVoiceConnectorEmergencyCallingConfiguration operation. /// </summary> public partial class DeleteVoiceConnectorEmergencyCallingConfigurationResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorGroup operation. /// Deletes the specified Amazon Chime Voice Connector group. Any <code>VoiceConnectorItems</code> /// and phone numbers associated with the group must be removed before it can be deleted. /// /// <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_DeleteVoiceConnectorGroup.html">DeleteVoiceConnectorGroup</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 DeleteVoiceConnectorGroupRequest : 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 DeleteVoiceConnectorGroup operation. /// </summary> public partial class DeleteVoiceConnectorGroupResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorOrigination operation. /// Deletes the origination settings for the specified Amazon Chime Voice Connector. /// /// <note> /// <para> /// If emergency calling is configured for the Amazon Chime Voice Connector, it must be /// deleted prior to deleting the origination settings. /// </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_voice-chime_DeleteVoiceConnectorOrigination.html">DeleteVoiceConnectorOrigination</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 DeleteVoiceConnectorOriginationRequest : 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; } } }
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> /// This is the response object from the DeleteVoiceConnectorOrigination operation. /// </summary> public partial class DeleteVoiceConnectorOriginationResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorProxy operation. /// Deletes the proxy configuration from 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_DeleteVoiceConnectorProxy.html">DeleteVoiceProxy</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 DeleteVoiceConnectorProxyRequest : 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 DeleteVoiceConnectorProxy operation. /// </summary> public partial class DeleteVoiceConnectorProxyResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnector operation. /// Deletes the specified Amazon Chime Voice Connector. Any phone numbers associated with /// the Amazon Chime Voice Connector must be disassociated from it before it can be deleted. /// /// <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_DeleteVoiceConnector.html">DeleteVoiceConnector</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 DeleteVoiceConnectorRequest : 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 DeleteVoiceConnector operation. /// </summary> public partial class DeleteVoiceConnectorResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorStreamingConfiguration operation. /// Deletes the streaming configuration 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_DeleteVoiceConnectorStreamingConfiguration.html">DeleteVoiceConnectorStreamingConfiguration</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 DeleteVoiceConnectorStreamingConfigurationRequest : 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 DeleteVoiceConnectorStreamingConfiguration operation. /// </summary> public partial class DeleteVoiceConnectorStreamingConfigurationResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorTerminationCredentials operation. /// Deletes the specified SIP credentials used by your equipment to authenticate during /// call termination. /// /// <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_DeleteVoiceConnectorTerminationCredentials.html">DeleteVoiceConnectorTerminationCredentials</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 DeleteVoiceConnectorTerminationCredentialsRequest : AmazonChimeRequest { private List<string> _usernames = new List<string>(); private string _voiceConnectorId; /// <summary> /// Gets and sets the property Usernames. /// <para> /// The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> Usernames { get { return this._usernames; } set { this._usernames = value; } } // Check to see if Usernames property is set internal bool IsSetUsernames() { return this._usernames != null && this._usernames.Count > 0; } /// <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; } } }
94
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 DeleteVoiceConnectorTerminationCredentials operation. /// </summary> public partial class DeleteVoiceConnectorTerminationCredentialsResponse : AmazonWebServiceResponse { } }
38
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 DeleteVoiceConnectorTermination operation. /// Deletes the termination settings for the specified Amazon Chime Voice Connector. /// /// <note> /// <para> /// If emergency calling is configured for the Amazon Chime Voice Connector, it must be /// deleted prior to deleting the termination settings. /// </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_voice-chime_DeleteVoiceConnectorTermination.html">DeleteVoiceConnectorTermination</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 DeleteVoiceConnectorTerminationRequest : 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; } } }
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> /// This is the response object from the DeleteVoiceConnectorTermination operation. /// </summary> public partial class DeleteVoiceConnectorTerminationResponse : AmazonWebServiceResponse { } }
38
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 DescribeAppInstanceAdmin operation. /// Returns the full details of an <code>AppInstanceAdmin</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_DescribeAppInstanceAdmin.html">DescribeAppInstanceAdmin</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 DescribeAppInstanceAdminRequest : AmazonChimeRequest { private string _appInstanceAdminArn; private string _appInstanceArn; /// <summary> /// Gets and sets the property AppInstanceAdminArn. /// <para> /// The ARN of the <code>AppInstanceAdmin</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string AppInstanceAdminArn { get { return this._appInstanceAdminArn; } set { this._appInstanceAdminArn = value; } } // Check to see if AppInstanceAdminArn property is set internal bool IsSetAppInstanceAdminArn() { return this._appInstanceAdminArn != null; } /// <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; } } }
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 DescribeAppInstanceAdmin operation. /// </summary> public partial class DescribeAppInstanceAdminResponse : AmazonWebServiceResponse { private AppInstanceAdmin _appInstanceAdmin; /// <summary> /// Gets and sets the property AppInstanceAdmin. /// <para> /// The ARN and name of the <code>AppInstanceUser</code>, the ARN of the <code>AppInstance</code>, /// and the created and last-updated timestamps. All timestamps use epoch milliseconds. /// </para> /// </summary> public AppInstanceAdmin AppInstanceAdmin { get { return this._appInstanceAdmin; } set { this._appInstanceAdmin = value; } } // Check to see if AppInstanceAdmin property is set internal bool IsSetAppInstanceAdmin() { return this._appInstanceAdmin != null; } } }
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 DescribeAppInstance operation. /// Returns the full details of 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_DescribeAppInstance.html">DescribeAppInstance</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 DescribeAppInstanceRequest : 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 DescribeAppInstance operation. /// </summary> public partial class DescribeAppInstanceResponse : AmazonWebServiceResponse { private AppInstance _appInstance; /// <summary> /// Gets and sets the property AppInstance. /// <para> /// The ARN, metadata, created and last-updated timestamps, and the name of the <code>AppInstance</code>. /// All timestamps use epoch milliseconds. /// </para> /// </summary> public AppInstance AppInstance { get { return this._appInstance; } set { this._appInstance = value; } } // Check to see if AppInstance property is set internal bool IsSetAppInstance() { return this._appInstance != null; } } }
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 DescribeAppInstanceUser operation. /// Returns the full details of an <code>AppInstanceUser</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_DescribeAppInstanceUser.html">DescribeAppInstanceUser</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 DescribeAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the <code>AppInstanceUser</code>. /// </para> /// </summary> [AWSProperty(Required=true, 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; } } }
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 DescribeAppInstanceUser operation. /// </summary> public partial class DescribeAppInstanceUserResponse : AmazonWebServiceResponse { private AppInstanceUser _appInstanceUser; /// <summary> /// Gets and sets the property AppInstanceUser. /// <para> /// The name of the <code>AppInstanceUser</code>. /// </para> /// </summary> public AppInstanceUser AppInstanceUser { get { return this._appInstanceUser; } set { this._appInstanceUser = value; } } // Check to see if AppInstanceUser property is set internal bool IsSetAppInstanceUser() { return this._appInstanceUser != 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 DescribeChannelBan operation. /// Returns the full details of a channel ban. /// /// <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_DescribeChannelBan.html">DescribeChannelBan</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 DescribeChannelBanRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private string _memberArn; /// <summary> /// Gets and sets the property ChannelArn. /// <para> /// The ARN of the channel from which the user is banned. /// </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 MemberArn. /// <para> /// The ARN of the member being banned. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string MemberArn { get { return this._memberArn; } set { this._memberArn = value; } } // Check to see if MemberArn property is set internal bool IsSetMemberArn() { return this._memberArn != 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 DescribeChannelBan operation. /// </summary> public partial class DescribeChannelBanResponse : AmazonWebServiceResponse { private ChannelBan _channelBan; /// <summary> /// Gets and sets the property ChannelBan. /// <para> /// The details of the ban. /// </para> /// </summary> public ChannelBan ChannelBan { get { return this._channelBan; } set { this._channelBan = value; } } // Check to see if ChannelBan property is set internal bool IsSetChannelBan() { return this._channelBan != 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 DescribeChannelMembershipForAppInstanceUser operation. /// Returns the details of a channel based on the membership of the specified <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_DescribeChannelMembershipForAppInstanceUser.html">DescribeChannelMembershipForAppInstanceUser</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 DescribeChannelMembershipForAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; private string _channelArn; private string _chimeBearer; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the user in a channel. /// </para> /// </summary> [AWSProperty(Required=true, 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 ChannelArn. /// <para> /// The ARN of the channel to which the user belongs. /// </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; } } }
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 DescribeChannelMembershipForAppInstanceUser operation. /// </summary> public partial class DescribeChannelMembershipForAppInstanceUserResponse : AmazonWebServiceResponse { private ChannelMembershipForAppInstanceUserSummary _channelMembership; /// <summary> /// Gets and sets the property ChannelMembership. /// <para> /// The channel to which a user belongs. /// </para> /// </summary> public ChannelMembershipForAppInstanceUserSummary ChannelMembership { get { return this._channelMembership; } set { this._channelMembership = value; } } // Check to see if ChannelMembership property is set internal bool IsSetChannelMembership() { return this._channelMembership != 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 DescribeChannelMembership operation. /// Returns the full details of a user's channel membership. /// /// <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_DescribeChannelMembership.html">DescribeChannelMembership</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 DescribeChannelMembershipRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; private string _memberArn; /// <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 MemberArn. /// <para> /// The ARN of the member. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string MemberArn { get { return this._memberArn; } set { this._memberArn = value; } } // Check to see if MemberArn property is set internal bool IsSetMemberArn() { return this._memberArn != 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 DescribeChannelMembership operation. /// </summary> public partial class DescribeChannelMembershipResponse : AmazonWebServiceResponse { private ChannelMembership _channelMembership; /// <summary> /// Gets and sets the property ChannelMembership. /// <para> /// The details of the membership. /// </para> /// </summary> public ChannelMembership ChannelMembership { get { return this._channelMembership; } set { this._channelMembership = value; } } // Check to see if ChannelMembership property is set internal bool IsSetChannelMembership() { return this._channelMembership != 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 DescribeChannelModeratedByAppInstanceUser operation. /// Returns the full details of a channel moderated by the specified <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_DescribeChannelModeratedByAppInstanceUser.html">DescribeChannelModeratedByAppInstanceUser</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 DescribeChannelModeratedByAppInstanceUserRequest : AmazonChimeRequest { private string _appInstanceUserArn; private string _channelArn; private string _chimeBearer; /// <summary> /// Gets and sets the property AppInstanceUserArn. /// <para> /// The ARN of the <code>AppInstanceUser</code> in the moderated channel. /// </para> /// </summary> [AWSProperty(Required=true, 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 ChannelArn. /// <para> /// The ARN of the moderated 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; } } }
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 DescribeChannelModeratedByAppInstanceUser operation. /// </summary> public partial class DescribeChannelModeratedByAppInstanceUserResponse : AmazonWebServiceResponse { private ChannelModeratedByAppInstanceUserSummary _channel; /// <summary> /// Gets and sets the property Channel. /// <para> /// The moderated channel. /// </para> /// </summary> public ChannelModeratedByAppInstanceUserSummary Channel { get { return this._channel; } set { this._channel = value; } } // Check to see if Channel property is set internal bool IsSetChannel() { return this._channel != 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 DescribeChannelModerator operation. /// Returns the full details of a single ChannelModerator. /// /// <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_DescribeChannelModerator.html">DescribeChannelModerator</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 DescribeChannelModeratorRequest : AmazonChimeRequest { private string _channelArn; private string _channelModeratorArn; private string _chimeBearer; /// <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 ChannelModeratorArn. /// <para> /// The ARN of the channel moderator. /// </para> /// </summary> [AWSProperty(Required=true, Min=5, Max=1600)] public string ChannelModeratorArn { get { return this._channelModeratorArn; } set { this._channelModeratorArn = value; } } // Check to see if ChannelModeratorArn property is set internal bool IsSetChannelModeratorArn() { return this._channelModeratorArn != 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; } } }
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 DescribeChannelModerator operation. /// </summary> public partial class DescribeChannelModeratorResponse : AmazonWebServiceResponse { private ChannelModerator _channelModerator; /// <summary> /// Gets and sets the property ChannelModerator. /// <para> /// The details of the channel moderator. /// </para> /// </summary> public ChannelModerator ChannelModerator { get { return this._channelModerator; } set { this._channelModerator = value; } } // Check to see if ChannelModerator property is set internal bool IsSetChannelModerator() { return this._channelModerator != 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 DescribeChannel operation. /// Returns the full details of a channel in an Amazon Chime <code>AppInstance</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_DescribeChannel.html">DescribeChannel</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 DescribeChannelRequest : AmazonChimeRequest { private string _channelArn; private string _chimeBearer; /// <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; } } }
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> /// This is the response object from the DescribeChannel operation. /// </summary> public partial class DescribeChannelResponse : AmazonWebServiceResponse { private Channel _channel; /// <summary> /// Gets and sets the property Channel. /// <para> /// The channel details. /// </para> /// </summary> public Channel Channel { get { return this._channel; } set { this._channel = value; } } // Check to see if Channel property is set internal bool IsSetChannel() { return this._channel != 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 DisassociatePhoneNumberFromUser operation. /// Disassociates the primary provisioned phone number from the specified Amazon Chime /// user. /// </summary> public partial class DisassociatePhoneNumberFromUserRequest : 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 DisassociatePhoneNumberFromUser operation. /// </summary> public partial class DisassociatePhoneNumberFromUserResponse : AmazonWebServiceResponse { } }
38
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 DisassociatePhoneNumbersFromVoiceConnectorGroup operation. /// Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector /// group. /// /// <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_DisassociatePhoneNumbersFromVoiceConnectorGroup.html">DisassociatePhoneNumbersFromVoiceConnectorGroup</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 DisassociatePhoneNumbersFromVoiceConnectorGroupRequest : AmazonChimeRequest { private List<string> _e164PhoneNumbers = new List<string>(); private string _voiceConnectorGroupId; /// <summary> /// Gets and sets the property E164PhoneNumbers. /// <para> /// List of phone numbers, in E.164 format. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> E164PhoneNumbers { get { return this._e164PhoneNumbers; } set { this._e164PhoneNumbers = value; } } // Check to see if E164PhoneNumbers property is set internal bool IsSetE164PhoneNumbers() { return this._e164PhoneNumbers != null && this._e164PhoneNumbers.Count > 0; } /// <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; } } }
94
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 DisassociatePhoneNumbersFromVoiceConnectorGroup operation. /// </summary> public partial class DisassociatePhoneNumbersFromVoiceConnectorGroupResponse : AmazonWebServiceResponse { private List<PhoneNumberError> _phoneNumberErrors = new List<PhoneNumberError>(); /// <summary> /// Gets and sets the property PhoneNumberErrors. /// <para> /// If the action fails for one or more of the phone numbers in the request, a list of /// the phone numbers is returned, along with error codes and error messages. /// </para> /// </summary> public List<PhoneNumberError> PhoneNumberErrors { get { return this._phoneNumberErrors; } set { this._phoneNumberErrors = value; } } // Check to see if PhoneNumberErrors property is set internal bool IsSetPhoneNumberErrors() { return this._phoneNumberErrors != null && this._phoneNumberErrors.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 DisassociatePhoneNumbersFromVoiceConnector operation. /// Disassociates the specified phone numbers from 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_DisassociatePhoneNumbersFromVoiceConnector.html">DisassociatePhoneNumbersFromVoiceConnector</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 DisassociatePhoneNumbersFromVoiceConnectorRequest : AmazonChimeRequest { private List<string> _e164PhoneNumbers = new List<string>(); private string _voiceConnectorId; /// <summary> /// Gets and sets the property E164PhoneNumbers. /// <para> /// List of phone numbers, in E.164 format. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> E164PhoneNumbers { get { return this._e164PhoneNumbers; } set { this._e164PhoneNumbers = value; } } // Check to see if E164PhoneNumbers property is set internal bool IsSetE164PhoneNumbers() { return this._e164PhoneNumbers != null && this._e164PhoneNumbers.Count > 0; } /// <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; } } }
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 DisassociatePhoneNumbersFromVoiceConnector operation. /// </summary> public partial class DisassociatePhoneNumbersFromVoiceConnectorResponse : AmazonWebServiceResponse { private List<PhoneNumberError> _phoneNumberErrors = new List<PhoneNumberError>(); /// <summary> /// Gets and sets the property PhoneNumberErrors. /// <para> /// If the action fails for one or more of the phone numbers in the request, a list of /// the phone numbers is returned, along with error codes and error messages. /// </para> /// </summary> public List<PhoneNumberError> PhoneNumberErrors { get { return this._phoneNumberErrors; } set { this._phoneNumberErrors = value; } } // Check to see if PhoneNumberErrors property is set internal bool IsSetPhoneNumberErrors() { return this._phoneNumberErrors != null && this._phoneNumberErrors.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 DisassociateSigninDelegateGroupsFromAccount operation. /// Disassociates the specified sign-in delegate groups from the specified Amazon Chime /// account. /// </summary> public partial class DisassociateSigninDelegateGroupsFromAccountRequest : AmazonChimeRequest { private string _accountId; private List<string> _groupNames = new List<string>(); /// <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 GroupNames. /// <para> /// The sign-in delegate group names. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public List<string> GroupNames { get { return this._groupNames; } set { this._groupNames = value; } } // Check to see if GroupNames property is set internal bool IsSetGroupNames() { return this._groupNames != null && this._groupNames.Count > 0; } } }
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 DisassociateSigninDelegateGroupsFromAccount operation. /// </summary> public partial class DisassociateSigninDelegateGroupsFromAccountResponse : AmazonWebServiceResponse { } }
38
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 Dialed Number Identification Service (DNIS) emergency calling configuration details /// associated with an Amazon Chime Voice Connector's emergency calling configuration. /// </summary> public partial class DNISEmergencyCallingConfiguration { private string _callingCountry; private string _emergencyPhoneNumber; private string _testPhoneNumber; /// <summary> /// Gets and sets the property CallingCountry. /// <para> /// The country from which emergency calls are allowed, in ISO 3166-1 alpha-2 format. /// </para> /// </summary> [AWSProperty(Required=true)] public string CallingCountry { get { return this._callingCountry; } set { this._callingCountry = value; } } // Check to see if CallingCountry property is set internal bool IsSetCallingCountry() { return this._callingCountry != null; } /// <summary> /// Gets and sets the property EmergencyPhoneNumber. /// <para> /// The DNIS phone number to route emergency calls to, in E.164 format. /// </para> /// </summary> [AWSProperty(Required=true, Sensitive=true)] public string EmergencyPhoneNumber { get { return this._emergencyPhoneNumber; } set { this._emergencyPhoneNumber = value; } } // Check to see if EmergencyPhoneNumber property is set internal bool IsSetEmergencyPhoneNumber() { return this._emergencyPhoneNumber != null; } /// <summary> /// Gets and sets the property TestPhoneNumber. /// <para> /// The DNIS phone number to route test emergency calls to, in E.164 format. /// </para> /// </summary> [AWSProperty(Sensitive=true)] public string TestPhoneNumber { get { return this._testPhoneNumber; } set { this._testPhoneNumber = value; } } // Check to see if TestPhoneNumber property is set internal bool IsSetTestPhoneNumber() { return this._testPhoneNumber != 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> /// The emergency calling configuration details associated with an Amazon Chime Voice /// Connector. /// </summary> public partial class EmergencyCallingConfiguration { private List<DNISEmergencyCallingConfiguration> _dnis = new List<DNISEmergencyCallingConfiguration>(); /// <summary> /// Gets and sets the property DNIS. /// <para> /// The Dialed Number Identification Service (DNIS) emergency calling configuration details. /// </para> /// </summary> public List<DNISEmergencyCallingConfiguration> DNIS { get { return this._dnis; } set { this._dnis = value; } } // Check to see if DNIS property is set internal bool IsSetDNIS() { return this._dnis != null && this._dnis.Count > 0; } } }
58