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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the CreateVoiceConnector operation.
/// Creates an Amazon Chime SDK Voice Connector. For more information about Voice Connectors,
/// see <a href="https://docs.aws.amazon.com/chime-sdk/latest/ag/voice-connector-groups.html">Managing
/// Amazon Chime SDK Voice Connector groups</a> in the <i>Amazon Chime SDK Administrator
/// Guide</i>.
/// </summary>
public partial class CreateVoiceConnectorRequest : AmazonChimeSDKVoiceRequest
{
private VoiceConnectorAwsRegion _awsRegion;
private string _name;
private bool? _requireEncryption;
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property AwsRegion.
/// <para>
/// The AWS Region in which the Amazon Chime SDK 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 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>
/// Enables or disables encryption for the 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;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// The tags assigned to the Voice Connector.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 122 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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 details of the Voice Connector.
/// </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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the CreateVoiceProfileDomain operation.
/// Creates a voice profile domain, a collection of voice profiles, their voice prints,
/// and encrypted enrollment audio.
///
/// <important>
/// <para>
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the <a href="https://aws.amazon.com/service-terms/">AWS service terms</a>
/// for the Amazon Chime SDK.
/// </para>
/// </important>
/// <para>
/// For more information about voice profile domains, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/pstn-voice-analytics.html">Using
/// Amazon Chime SDK Voice Analytics</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </summary>
public partial class CreateVoiceProfileDomainRequest : AmazonChimeSDKVoiceRequest
{
private string _clientRequestToken;
private string _description;
private string _name;
private ServerSideEncryptionConfiguration _serverSideEncryptionConfiguration;
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property ClientRequestToken.
/// <para>
/// The unique identifier for the client request. Use a different token for different
/// domain creation requests.
/// </para>
/// </summary>
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 Description.
/// <para>
/// A description of the voice profile domain.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=1024)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the voice profile domain.
/// </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 ServerSideEncryptionConfiguration.
/// <para>
/// The server-side encryption configuration for the request.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ServerSideEncryptionConfiguration ServerSideEncryptionConfiguration
{
get { return this._serverSideEncryptionConfiguration; }
set { this._serverSideEncryptionConfiguration = value; }
}
// Check to see if ServerSideEncryptionConfiguration property is set
internal bool IsSetServerSideEncryptionConfiguration()
{
return this._serverSideEncryptionConfiguration != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// The tags assigned to the domain.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 153 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the CreateVoiceProfileDomain operation.
/// </summary>
public partial class CreateVoiceProfileDomainResponse : AmazonWebServiceResponse
{
private VoiceProfileDomain _voiceProfileDomain;
/// <summary>
/// Gets and sets the property VoiceProfileDomain.
/// <para>
/// The requested voice profile domain.
/// </para>
/// </summary>
public VoiceProfileDomain VoiceProfileDomain
{
get { return this._voiceProfileDomain; }
set { this._voiceProfileDomain = value; }
}
// Check to see if VoiceProfileDomain property is set
internal bool IsSetVoiceProfileDomain()
{
return this._voiceProfileDomain != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the CreateVoiceProfile operation.
/// Creates a voice profile, which consists of an enrolled user and their latest voice
/// print.
///
/// <important>
/// <para>
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the <a href="https://aws.amazon.com/service-terms/">AWS service terms</a>
/// for the Amazon Chime SDK.
/// </para>
/// </important>
/// <para>
/// For more information about voice profiles and voice analytics, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/pstn-voice-analytics.html">Using
/// Amazon Chime SDK Voice Analytics</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </summary>
public partial class CreateVoiceProfileRequest : AmazonChimeSDKVoiceRequest
{
private string _speakerSearchTaskId;
/// <summary>
/// Gets and sets the property SpeakerSearchTaskId.
/// <para>
/// The ID of the speaker search task.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string SpeakerSearchTaskId
{
get { return this._speakerSearchTaskId; }
set { this._speakerSearchTaskId = value; }
}
// Check to see if SpeakerSearchTaskId property is set
internal bool IsSetSpeakerSearchTaskId()
{
return this._speakerSearchTaskId != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the CreateVoiceProfile operation.
/// </summary>
public partial class CreateVoiceProfileResponse : AmazonWebServiceResponse
{
private VoiceProfile _voiceProfile;
/// <summary>
/// Gets and sets the property VoiceProfile.
/// <para>
/// The requested voice profile.
/// </para>
/// </summary>
public VoiceProfile VoiceProfile
{
get { return this._voiceProfile; }
set { this._voiceProfile = value; }
}
// Check to see if VoiceProfile property is set
internal bool IsSetVoiceProfile()
{
return this._voiceProfile != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// The SIP credentials used to authenticate requests to an Amazon Chime SDK 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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 SDK Voice Connectors before it can
/// be deleted.
///
///
/// <para>
/// Deleted phone numbers remain in the <b>Deletion queue</b> queue for 7 days before
/// they are deleted permanently.
/// </para>
/// </summary>
public partial class DeletePhoneNumberRequest : AmazonChimeSDKVoiceRequest
{
private string _phoneNumberId;
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The phone number ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteProxySession operation.
/// Deletes the specified proxy session from the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class DeleteProxySessionRequest : AmazonChimeSDKVoiceRequest
{
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 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteSipMediaApplication operation.
/// Deletes a SIP media application.
/// </summary>
public partial class DeleteSipMediaApplicationRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteSipRule operation.
/// Deletes a SIP rule.
/// </summary>
public partial class DeleteSipRuleRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorEmergencyCallingConfiguration operation.
/// Deletes the emergency calling details from the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class DeleteVoiceConnectorEmergencyCallingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorGroup operation.
/// Deletes an Amazon Chime SDK Voice Connector group. Any <code>VoiceConnectorItems</code>
/// and phone numbers associated with the group must be removed before it can be deleted.
/// </summary>
public partial class DeleteVoiceConnectorGroupRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorGroupId;
/// <summary>
/// Gets and sets the property VoiceConnectorGroupId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorOrigination operation.
/// Deletes the origination settings for the specified Amazon Chime SDK Voice Connector.
///
///
/// <note>
/// <para>
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the origination settings.
/// </para>
/// </note>
/// </summary>
public partial class DeleteVoiceConnectorOriginationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorProxy operation.
/// Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class DeleteVoiceConnectorProxyRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnector operation.
/// Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated with the
/// Amazon Chime SDK Voice Connector must be disassociated from it before it can be deleted.
/// </summary>
public partial class DeleteVoiceConnectorRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorStreamingConfiguration operation.
/// Deletes a Voice Connector's streaming configuration.
/// </summary>
public partial class DeleteVoiceConnectorStreamingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorTerminationCredentials operation.
/// Deletes the specified SIP credentials used by your equipment to authenticate during
/// call termination.
/// </summary>
public partial class DeleteVoiceConnectorTerminationCredentialsRequest : AmazonChimeSDKVoiceRequest
{
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 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceConnectorTermination operation.
/// Deletes the termination settings for the specified Amazon Chime SDK Voice Connector.
///
/// <note>
/// <para>
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the termination settings.
/// </para>
/// </note>
/// </summary>
public partial class DeleteVoiceConnectorTerminationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 66 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceProfileDomain operation.
/// Deletes all voice profiles in the domain. WARNING: This action is not reversible.
/// </summary>
public partial class DeleteVoiceProfileDomainRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceProfileDomainId;
/// <summary>
/// Gets and sets the property VoiceProfileDomainId.
/// <para>
/// The voice profile domain ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string VoiceProfileDomainId
{
get { return this._voiceProfileDomainId; }
set { this._voiceProfileDomainId = value; }
}
// Check to see if VoiceProfileDomainId property is set
internal bool IsSetVoiceProfileDomainId()
{
return this._voiceProfileDomainId != null;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the DeleteVoiceProfileDomain operation.
/// </summary>
public partial class DeleteVoiceProfileDomainResponse : 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DeleteVoiceProfile operation.
/// Deletes a voice profile, including its voice print and enrollment data. WARNING: This
/// action is not reversible.
/// </summary>
public partial class DeleteVoiceProfileRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceProfileId;
/// <summary>
/// Gets and sets the property VoiceProfileId.
/// <para>
/// The voice profile ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string VoiceProfileId
{
get { return this._voiceProfileId; }
set { this._voiceProfileId = value; }
}
// Check to see if VoiceProfileId property is set
internal bool IsSetVoiceProfileId()
{
return this._voiceProfileId != null;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the DeleteVoiceProfile operation.
/// </summary>
public partial class DeleteVoiceProfileResponse : 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DisassociatePhoneNumbersFromVoiceConnectorGroup operation.
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector group.
/// </summary>
public partial class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest : AmazonChimeSDKVoiceRequest
{
private List<string> _e164PhoneNumbers = new List<string>();
private string _voiceConnectorGroupId;
/// <summary>
/// Gets and sets the property E164PhoneNumbers.
/// <para>
/// The 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 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the DisassociatePhoneNumbersFromVoiceConnector operation.
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector.
/// </summary>
public partial class DisassociatePhoneNumbersFromVoiceConnectorRequest : AmazonChimeSDKVoiceRequest
{
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 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// The Dialed Number Identification Service (DNIS) emergency calling configuration details
/// associated with an Amazon Chime SDK 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 that you 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 for routing 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// The emergency calling configuration details associated with an Amazon Chime SDK 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 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// The client is permanently forbidden from making the request.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ForbiddenException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new ForbiddenException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ForbiddenException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ForbiddenException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ForbiddenException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ForbiddenException
/// </summary>
/// <param name="innerException"></param>
public ForbiddenException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ForbiddenException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ForbiddenException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ForbiddenException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ForbiddenException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the ForbiddenException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected ForbiddenException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
}
| 124 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// The country and area code for a proxy phone number in a proxy phone session.
/// </summary>
public partial class GeoMatchParams
{
private string _areaCode;
private string _country;
/// <summary>
/// Gets and sets the property AreaCode.
/// <para>
/// The area code.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AreaCode
{
get { return this._areaCode; }
set { this._areaCode = value; }
}
// Check to see if AreaCode property is set
internal bool IsSetAreaCode()
{
return this._areaCode != null;
}
/// <summary>
/// Gets and sets the property Country.
/// <para>
/// The country.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string Country
{
get { return this._country; }
set { this._country = value; }
}
// Check to see if Country property is set
internal bool IsSetCountry()
{
return this._country != null;
}
}
}
| 78 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetGlobalSettings operation.
/// Retrieves the global settings for the Amazon Chime SDK Voice Connectors in an AWS
/// account.
/// </summary>
public partial class GetGlobalSettingsRequest : AmazonChimeSDKVoiceRequest
{
}
}
| 40 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetGlobalSettings operation.
/// </summary>
public partial class GetGlobalSettingsResponse : AmazonWebServiceResponse
{
private VoiceConnectorSettings _voiceConnector;
/// <summary>
/// Gets and sets the property VoiceConnector.
/// <para>
/// The Voice Connector settings.
/// </para>
/// </summary>
public VoiceConnectorSettings VoiceConnector
{
get { return this._voiceConnector; }
set { this._voiceConnector = value; }
}
// Check to see if VoiceConnector property is set
internal bool IsSetVoiceConnector()
{
return this._voiceConnector != null;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetPhoneNumberOrder operation.
/// Retrieves details for the specified phone number order, such as the order creation
/// timestamp, phone numbers in E.164 format, product type, and order status.
/// </summary>
public partial class GetPhoneNumberOrderRequest : AmazonChimeSDKVoiceRequest
{
private string _phoneNumberOrderId;
/// <summary>
/// Gets and sets the property PhoneNumberOrderId.
/// <para>
/// The ID of the phone number order .
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string PhoneNumberOrderId
{
get { return this._phoneNumberOrderId; }
set { this._phoneNumberOrderId = value; }
}
// Check to see if PhoneNumberOrderId property is set
internal bool IsSetPhoneNumberOrderId()
{
return this._phoneNumberOrderId != null;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetPhoneNumberOrder operation.
/// </summary>
public partial class GetPhoneNumberOrderResponse : AmazonWebServiceResponse
{
private PhoneNumberOrder _phoneNumberOrder;
/// <summary>
/// Gets and sets the property PhoneNumberOrder.
/// <para>
/// The phone number order details.
/// </para>
/// </summary>
public PhoneNumberOrder PhoneNumberOrder
{
get { return this._phoneNumberOrder; }
set { this._phoneNumberOrder = value; }
}
// Check to see if PhoneNumberOrder property is set
internal bool IsSetPhoneNumberOrder()
{
return this._phoneNumberOrder != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetPhoneNumber operation.
/// Retrieves details for the specified phone number ID, such as associations, capabilities,
/// and product type.
/// </summary>
public partial class GetPhoneNumberRequest : AmazonChimeSDKVoiceRequest
{
private string _phoneNumberId;
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The phone number ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true)]
public string PhoneNumberId
{
get { return this._phoneNumberId; }
set { this._phoneNumberId = value; }
}
// Check to see if PhoneNumberId property is set
internal bool IsSetPhoneNumberId()
{
return this._phoneNumberId != null;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetPhoneNumber operation.
/// </summary>
public partial class GetPhoneNumberResponse : AmazonWebServiceResponse
{
private PhoneNumber _phoneNumber;
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The phone number details.
/// </para>
/// </summary>
public PhoneNumber PhoneNumber
{
get { return this._phoneNumber; }
set { this._phoneNumber = value; }
}
// Check to see if PhoneNumber property is set
internal bool IsSetPhoneNumber()
{
return this._phoneNumber != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetPhoneNumberSettings operation.
/// Retrieves the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name.
/// </summary>
public partial class GetPhoneNumberSettingsRequest : AmazonChimeSDKVoiceRequest
{
}
}
| 40 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetPhoneNumberSettings operation.
/// </summary>
public partial class GetPhoneNumberSettingsResponse : AmazonWebServiceResponse
{
private string _callingName;
private DateTime? _callingNameUpdatedTimestamp;
/// <summary>
/// Gets and sets the property CallingName.
/// <para>
/// The default outbound calling name for the account.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string CallingName
{
get { return this._callingName; }
set { this._callingName = value; }
}
// Check to see if CallingName property is set
internal bool IsSetCallingName()
{
return this._callingName != null;
}
/// <summary>
/// Gets and sets the property CallingNameUpdatedTimestamp.
/// <para>
/// The updated outbound calling name timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CallingNameUpdatedTimestamp
{
get { return this._callingNameUpdatedTimestamp.GetValueOrDefault(); }
set { this._callingNameUpdatedTimestamp = value; }
}
// Check to see if CallingNameUpdatedTimestamp property is set
internal bool IsSetCallingNameUpdatedTimestamp()
{
return this._callingNameUpdatedTimestamp.HasValue;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetProxySession operation.
/// Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice
/// Connector.
/// </summary>
public partial class GetProxySessionRequest : AmazonChimeSDKVoiceRequest
{
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 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetProxySession operation.
/// </summary>
public partial class GetProxySessionResponse : AmazonWebServiceResponse
{
private ProxySession _proxySession;
/// <summary>
/// Gets and sets the property ProxySession.
/// <para>
/// The proxy session details.
/// </para>
/// </summary>
public ProxySession ProxySession
{
get { return this._proxySession; }
set { this._proxySession = value; }
}
// Check to see if ProxySession property is set
internal bool IsSetProxySession()
{
return this._proxySession != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetSipMediaApplicationAlexaSkillConfiguration operation.
/// Gets the Alexa Skill configuration for the SIP media application.
/// </summary>
public partial class GetSipMediaApplicationAlexaSkillConfigurationRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetSipMediaApplicationAlexaSkillConfiguration operation.
/// </summary>
public partial class GetSipMediaApplicationAlexaSkillConfigurationResponse : AmazonWebServiceResponse
{
private SipMediaApplicationAlexaSkillConfiguration _sipMediaApplicationAlexaSkillConfiguration;
/// <summary>
/// Gets and sets the property SipMediaApplicationAlexaSkillConfiguration.
/// <para>
/// Returns the Alexa Skill configuration.
/// </para>
/// </summary>
public SipMediaApplicationAlexaSkillConfiguration SipMediaApplicationAlexaSkillConfiguration
{
get { return this._sipMediaApplicationAlexaSkillConfiguration; }
set { this._sipMediaApplicationAlexaSkillConfiguration = value; }
}
// Check to see if SipMediaApplicationAlexaSkillConfiguration property is set
internal bool IsSetSipMediaApplicationAlexaSkillConfiguration()
{
return this._sipMediaApplicationAlexaSkillConfiguration != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetSipMediaApplicationLoggingConfiguration operation.
/// Retrieves the logging configuration for the specified SIP media application.
/// </summary>
public partial class GetSipMediaApplicationLoggingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetSipMediaApplicationLoggingConfiguration operation.
/// </summary>
public partial class GetSipMediaApplicationLoggingConfigurationResponse : AmazonWebServiceResponse
{
private SipMediaApplicationLoggingConfiguration _sipMediaApplicationLoggingConfiguration;
/// <summary>
/// Gets and sets the property SipMediaApplicationLoggingConfiguration.
/// <para>
/// The actual logging configuration.
/// </para>
/// </summary>
public SipMediaApplicationLoggingConfiguration SipMediaApplicationLoggingConfiguration
{
get { return this._sipMediaApplicationLoggingConfiguration; }
set { this._sipMediaApplicationLoggingConfiguration = value; }
}
// Check to see if SipMediaApplicationLoggingConfiguration property is set
internal bool IsSetSipMediaApplicationLoggingConfiguration()
{
return this._sipMediaApplicationLoggingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetSipMediaApplication operation.
/// Retrieves the information for a SIP media application, including name, AWS Region,
/// and endpoints.
/// </summary>
public partial class GetSipMediaApplicationRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetSipMediaApplication operation.
/// </summary>
public partial class GetSipMediaApplicationResponse : AmazonWebServiceResponse
{
private SipMediaApplication _sipMediaApplication;
/// <summary>
/// Gets and sets the property SipMediaApplication.
/// <para>
/// The details of the SIP media application.
/// </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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetSipRule operation.
/// Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target
/// endpoints.
/// </summary>
public partial class GetSipRuleRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetSipRule operation.
/// </summary>
public partial class GetSipRuleResponse : AmazonWebServiceResponse
{
private SipRule _sipRule;
/// <summary>
/// Gets and sets the property SipRule.
/// <para>
/// The SIP rule details.
/// </para>
/// </summary>
public SipRule SipRule
{
get { return this._sipRule; }
set { this._sipRule = value; }
}
// Check to see if SipRule property is set
internal bool IsSetSipRule()
{
return this._sipRule != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetSpeakerSearchTask operation.
/// Retrieves the details of the specified speaker search task.
/// </summary>
public partial class GetSpeakerSearchTaskRequest : AmazonChimeSDKVoiceRequest
{
private string _speakerSearchTaskId;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property SpeakerSearchTaskId.
/// <para>
/// The ID of the speaker search task.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string SpeakerSearchTaskId
{
get { return this._speakerSearchTaskId; }
set { this._speakerSearchTaskId = value; }
}
// Check to see if SpeakerSearchTaskId property is set
internal bool IsSetSpeakerSearchTaskId()
{
return this._speakerSearchTaskId != null;
}
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetSpeakerSearchTask operation.
/// </summary>
public partial class GetSpeakerSearchTaskResponse : AmazonWebServiceResponse
{
private SpeakerSearchTask _speakerSearchTask;
/// <summary>
/// Gets and sets the property SpeakerSearchTask.
/// <para>
/// The details of the speaker search task.
/// </para>
/// </summary>
public SpeakerSearchTask SpeakerSearchTask
{
get { return this._speakerSearchTask; }
set { this._speakerSearchTask = value; }
}
// Check to see if SpeakerSearchTask property is set
internal bool IsSetSpeakerSearchTask()
{
return this._speakerSearchTask != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorEmergencyCallingConfiguration operation.
/// Retrieves the emergency calling configuration details for the specified Voice Connector.
/// </summary>
public partial class GetVoiceConnectorEmergencyCallingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorEmergencyCallingConfiguration operation.
/// </summary>
public partial class GetVoiceConnectorEmergencyCallingConfigurationResponse : AmazonWebServiceResponse
{
private EmergencyCallingConfiguration _emergencyCallingConfiguration;
/// <summary>
/// Gets and sets the property EmergencyCallingConfiguration.
/// <para>
/// The details of the emergency calling configuration.
/// </para>
/// </summary>
public EmergencyCallingConfiguration EmergencyCallingConfiguration
{
get { return this._emergencyCallingConfiguration; }
set { this._emergencyCallingConfiguration = value; }
}
// Check to see if EmergencyCallingConfiguration property is set
internal bool IsSetEmergencyCallingConfiguration()
{
return this._emergencyCallingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorGroup operation.
/// Retrieves details for the specified Amazon Chime SDK Voice Connector group, such as
/// timestamps,name, and associated <code>VoiceConnectorItems</code>.
/// </summary>
public partial class GetVoiceConnectorGroupRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorGroupId;
/// <summary>
/// Gets and sets the property VoiceConnectorGroupId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorGroup operation.
/// </summary>
public partial class GetVoiceConnectorGroupResponse : AmazonWebServiceResponse
{
private VoiceConnectorGroup _voiceConnectorGroup;
/// <summary>
/// Gets and sets the property VoiceConnectorGroup.
/// <para>
/// The details of the Voice Connector group.
/// </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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorLoggingConfiguration operation.
/// Retrieves the logging configuration settings for the specified Voice Connector. Shows
/// whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
/// </summary>
public partial class GetVoiceConnectorLoggingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorLoggingConfiguration operation.
/// </summary>
public partial class GetVoiceConnectorLoggingConfigurationResponse : AmazonWebServiceResponse
{
private LoggingConfiguration _loggingConfiguration;
/// <summary>
/// Gets and sets the property LoggingConfiguration.
/// <para>
/// The logging configuration details .
/// </para>
/// </summary>
public LoggingConfiguration LoggingConfiguration
{
get { return this._loggingConfiguration; }
set { this._loggingConfiguration = value; }
}
// Check to see if LoggingConfiguration property is set
internal bool IsSetLoggingConfiguration()
{
return this._loggingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorOrigination operation.
/// Retrieves the origination settings for the specified Voice Connector.
/// </summary>
public partial class GetVoiceConnectorOriginationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorOrigination operation.
/// </summary>
public partial class GetVoiceConnectorOriginationResponse : AmazonWebServiceResponse
{
private Origination _origination;
/// <summary>
/// Gets and sets the property Origination.
/// <para>
/// The origination setting details.
/// </para>
/// </summary>
public Origination Origination
{
get { return this._origination; }
set { this._origination = value; }
}
// Check to see if Origination property is set
internal bool IsSetOrigination()
{
return this._origination != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorProxy operation.
/// Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice
/// Connector.
/// </summary>
public partial class GetVoiceConnectorProxyRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorProxy operation.
/// </summary>
public partial class GetVoiceConnectorProxyResponse : AmazonWebServiceResponse
{
private Proxy _proxy;
/// <summary>
/// Gets and sets the property Proxy.
/// <para>
/// The proxy configuration details.
/// </para>
/// </summary>
public Proxy Proxy
{
get { return this._proxy; }
set { this._proxy = value; }
}
// Check to see if Proxy property is set
internal bool IsSetProxy()
{
return this._proxy != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnector operation.
/// Retrieves details for the specified Amazon Chime SDK Voice Connector, such as timestamps,name,
/// outbound host, and encryption requirements.
/// </summary>
public partial class GetVoiceConnectorRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnector operation.
/// </summary>
public partial class GetVoiceConnectorResponse : AmazonWebServiceResponse
{
private VoiceConnector _voiceConnector;
/// <summary>
/// Gets and sets the property VoiceConnector.
/// <para>
/// The 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorStreamingConfiguration operation.
/// Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice
/// Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis.
/// It also shows the retention period, in hours, for the Amazon Kinesis data.
/// </summary>
public partial class GetVoiceConnectorStreamingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 61 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorStreamingConfiguration operation.
/// </summary>
public partial class GetVoiceConnectorStreamingConfigurationResponse : AmazonWebServiceResponse
{
private StreamingConfiguration _streamingConfiguration;
/// <summary>
/// Gets and sets the property StreamingConfiguration.
/// <para>
/// The details of the streaming configuration.
/// </para>
/// </summary>
public StreamingConfiguration StreamingConfiguration
{
get { return this._streamingConfiguration; }
set { this._streamingConfiguration = value; }
}
// Check to see if StreamingConfiguration property is set
internal bool IsSetStreamingConfiguration()
{
return this._streamingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorTerminationHealth operation.
/// Retrieves information about the last time a <code>SIP OPTIONS</code> ping was received
/// from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class GetVoiceConnectorTerminationHealthRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 60 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorTerminationHealth operation.
/// </summary>
public partial class GetVoiceConnectorTerminationHealthResponse : AmazonWebServiceResponse
{
private TerminationHealth _terminationHealth;
/// <summary>
/// Gets and sets the property TerminationHealth.
/// <para>
/// The termination health details.
/// </para>
/// </summary>
public TerminationHealth TerminationHealth
{
get { return this._terminationHealth; }
set { this._terminationHealth = value; }
}
// Check to see if TerminationHealth property is set
internal bool IsSetTerminationHealth()
{
return this._terminationHealth != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceConnectorTermination operation.
/// Retrieves the termination setting details for the specified Voice Connector.
/// </summary>
public partial class GetVoiceConnectorTerminationRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceConnectorTermination operation.
/// </summary>
public partial class GetVoiceConnectorTerminationResponse : AmazonWebServiceResponse
{
private Termination _termination;
/// <summary>
/// Gets and sets the property Termination.
/// <para>
/// The termination setting details.
/// </para>
/// </summary>
public Termination Termination
{
get { return this._termination; }
set { this._termination = value; }
}
// Check to see if Termination property is set
internal bool IsSetTermination()
{
return this._termination != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceProfileDomain operation.
/// Retrieves the details of the specified voice profile domain.
/// </summary>
public partial class GetVoiceProfileDomainRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceProfileDomainId;
/// <summary>
/// Gets and sets the property VoiceProfileDomainId.
/// <para>
/// The voice profile domain ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string VoiceProfileDomainId
{
get { return this._voiceProfileDomainId; }
set { this._voiceProfileDomainId = value; }
}
// Check to see if VoiceProfileDomainId property is set
internal bool IsSetVoiceProfileDomainId()
{
return this._voiceProfileDomainId != null;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceProfileDomain operation.
/// </summary>
public partial class GetVoiceProfileDomainResponse : AmazonWebServiceResponse
{
private VoiceProfileDomain _voiceProfileDomain;
/// <summary>
/// Gets and sets the property VoiceProfileDomain.
/// <para>
/// The details of the voice profile domain.
/// </para>
/// </summary>
public VoiceProfileDomain VoiceProfileDomain
{
get { return this._voiceProfileDomain; }
set { this._voiceProfileDomain = value; }
}
// Check to see if VoiceProfileDomain property is set
internal bool IsSetVoiceProfileDomain()
{
return this._voiceProfileDomain != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceProfile operation.
/// Retrieves the details of the specified voice profile.
/// </summary>
public partial class GetVoiceProfileRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceProfileId;
/// <summary>
/// Gets and sets the property VoiceProfileId.
/// <para>
/// The voice profile ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string VoiceProfileId
{
get { return this._voiceProfileId; }
set { this._voiceProfileId = value; }
}
// Check to see if VoiceProfileId property is set
internal bool IsSetVoiceProfileId()
{
return this._voiceProfileId != null;
}
}
}
| 59 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceProfile operation.
/// </summary>
public partial class GetVoiceProfileResponse : AmazonWebServiceResponse
{
private VoiceProfile _voiceProfile;
/// <summary>
/// Gets and sets the property VoiceProfile.
/// <para>
/// The voice profile details.
/// </para>
/// </summary>
public VoiceProfile VoiceProfile
{
get { return this._voiceProfile; }
set { this._voiceProfile = value; }
}
// Check to see if VoiceProfile property is set
internal bool IsSetVoiceProfile()
{
return this._voiceProfile != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the GetVoiceToneAnalysisTask operation.
/// Retrieves the details of a voice tone analysis task.
/// </summary>
public partial class GetVoiceToneAnalysisTaskRequest : AmazonChimeSDKVoiceRequest
{
private bool? _isCaller;
private string _voiceConnectorId;
private string _voiceToneAnalysisTaskId;
/// <summary>
/// Gets and sets the property IsCaller.
/// <para>
/// Specifies whether the voice being analyzed is the caller (originator) or the callee
/// (responder).
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool IsCaller
{
get { return this._isCaller.GetValueOrDefault(); }
set { this._isCaller = value; }
}
// Check to see if IsCaller property is set
internal bool IsSetIsCaller()
{
return this._isCaller.HasValue;
}
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
/// <summary>
/// Gets and sets the property VoiceToneAnalysisTaskId.
/// <para>
/// The ID of the voice tone anlysis task.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string VoiceToneAnalysisTaskId
{
get { return this._voiceToneAnalysisTaskId; }
set { this._voiceToneAnalysisTaskId = value; }
}
// Check to see if VoiceToneAnalysisTaskId property is set
internal bool IsSetVoiceToneAnalysisTaskId()
{
return this._voiceToneAnalysisTaskId != null;
}
}
}
| 100 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the GetVoiceToneAnalysisTask operation.
/// </summary>
public partial class GetVoiceToneAnalysisTaskResponse : AmazonWebServiceResponse
{
private VoiceToneAnalysisTask _voiceToneAnalysisTask;
/// <summary>
/// Gets and sets the property VoiceToneAnalysisTask.
/// <para>
/// The details of the voice tone analysis task.
/// </para>
/// </summary>
public VoiceToneAnalysisTask VoiceToneAnalysisTask
{
get { return this._voiceToneAnalysisTask; }
set { this._voiceToneAnalysisTask = value; }
}
// Check to see if VoiceToneAnalysisTask property is set
internal bool IsSetVoiceToneAnalysisTask()
{
return this._voiceToneAnalysisTask != 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class GoneException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new GoneException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public GoneException(string message)
: base(message) {}
/// <summary>
/// Construct instance of GoneException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public GoneException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of GoneException
/// </summary>
/// <param name="innerException"></param>
public GoneException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of GoneException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public GoneException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of GoneException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public GoneException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the GoneException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected GoneException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
}
| 125 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListAvailableVoiceConnectorRegions operation.
/// Lists the available AWS Regions in which you can create an Amazon Chime SDK Voice
/// Connector.
/// </summary>
public partial class ListAvailableVoiceConnectorRegionsRequest : AmazonChimeSDKVoiceRequest
{
}
}
| 40 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListAvailableVoiceConnectorRegions operation.
/// </summary>
public partial class ListAvailableVoiceConnectorRegionsResponse : AmazonWebServiceResponse
{
private List<string> _voiceConnectorRegions = new List<string>();
/// <summary>
/// Gets and sets the property VoiceConnectorRegions.
/// <para>
/// The list of AWS Regions.
/// </para>
/// </summary>
public List<string> VoiceConnectorRegions
{
get { return this._voiceConnectorRegions; }
set { this._voiceConnectorRegions = value; }
}
// Check to see if VoiceConnectorRegions property is set
internal bool IsSetVoiceConnectorRegions()
{
return this._voiceConnectorRegions != null && this._voiceConnectorRegions.Count > 0;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListPhoneNumberOrders operation.
/// Lists the phone numbers for an administrator's Amazon Chime SDK account.
/// </summary>
public partial class ListPhoneNumberOrdersRequest : AmazonChimeSDKVoiceRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListPhoneNumberOrders operation.
/// </summary>
public partial class ListPhoneNumberOrdersResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<PhoneNumberOrder> _phoneNumberOrders = new List<PhoneNumberOrder>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberOrders.
/// <para>
/// The phone number order details.
/// </para>
/// </summary>
public List<PhoneNumberOrder> PhoneNumberOrders
{
get { return this._phoneNumberOrders; }
set { this._phoneNumberOrders = value; }
}
// Check to see if PhoneNumberOrders property is set
internal bool IsSetPhoneNumberOrders()
{
return this._phoneNumberOrders != null && this._phoneNumberOrders.Count > 0;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListPhoneNumbers operation.
/// Lists the phone numbers for the specified Amazon Chime SDK account, Amazon Chime SDK
/// user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice Connector group.
/// </summary>
public partial class ListPhoneNumbersRequest : AmazonChimeSDKVoiceRequest
{
private PhoneNumberAssociationName _filterName;
private string _filterValue;
private int? _maxResults;
private string _nextToken;
private PhoneNumberProductType _productType;
private string _status;
/// <summary>
/// Gets and sets the property FilterName.
/// <para>
/// The filter to limit the number of results.
/// </para>
/// </summary>
public PhoneNumberAssociationName FilterName
{
get { return this._filterName; }
set { this._filterName = value; }
}
// Check to see if FilterName property is set
internal bool IsSetFilterName()
{
return this._filterName != null;
}
/// <summary>
/// Gets and sets the property FilterValue.
/// <para>
/// The filter value.
/// </para>
/// </summary>
public string FilterValue
{
get { return this._filterValue; }
set { this._filterValue = value; }
}
// Check to see if FilterValue property is set
internal bool IsSetFilterValue()
{
return this._filterValue != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The phone number product types.
/// </para>
/// </summary>
public PhoneNumberProductType ProductType
{
get { return this._productType; }
set { this._productType = value; }
}
// Check to see if ProductType property is set
internal bool IsSetProductType()
{
return this._productType != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of your organization's phone numbers.
/// </para>
/// </summary>
public string Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
}
}
| 155 |
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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListPhoneNumbers operation.
/// </summary>
public partial class ListPhoneNumbersResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<PhoneNumber> _phoneNumbers = new List<PhoneNumber>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property PhoneNumbers.
/// <para>
/// The phone number details.
/// </para>
/// </summary>
public List<PhoneNumber> PhoneNumbers
{
get { return this._phoneNumbers; }
set { this._phoneNumbers = value; }
}
// Check to see if PhoneNumbers property is set
internal bool IsSetPhoneNumbers()
{
return this._phoneNumbers != null && this._phoneNumbers.Count > 0;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListProxySessions operation.
/// Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class ListProxySessionsRequest : AmazonChimeSDKVoiceRequest
{
private int? _maxResults;
private string _nextToken;
private ProxySessionStatus _status;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The proxy session status.
/// </para>
/// </summary>
public ProxySessionStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The 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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListProxySessions operation.
/// </summary>
public partial class ListProxySessionsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<ProxySession> _proxySessions = new List<ProxySession>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property ProxySessions.
/// <para>
/// The proxy sessions' details.
/// </para>
/// </summary>
public List<ProxySession> ProxySessions
{
get { return this._proxySessions; }
set { this._proxySessions = value; }
}
// Check to see if ProxySessions property is set
internal bool IsSetProxySessions()
{
return this._proxySessions != null && this._proxySessions.Count > 0;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListSipMediaApplications operation.
/// Lists the SIP media applications under the administrator's AWS account.
/// </summary>
public partial class ListSipMediaApplicationsRequest : AmazonChimeSDKVoiceRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call. Defaults to 100.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListSipMediaApplications operation.
/// </summary>
public partial class ListSipMediaApplicationsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SipMediaApplication> _sipMediaApplications = new List<SipMediaApplication>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipMediaApplications.
/// <para>
/// The list of SIP media applications and application details.
/// </para>
/// </summary>
public List<SipMediaApplication> SipMediaApplications
{
get { return this._sipMediaApplications; }
set { this._sipMediaApplications = value; }
}
// Check to see if SipMediaApplications property is set
internal bool IsSetSipMediaApplications()
{
return this._sipMediaApplications != null && this._sipMediaApplications.Count > 0;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// Container for the parameters to the ListSipRules operation.
/// Lists the SIP rules under the administrator's AWS account.
/// </summary>
public partial class ListSipRulesRequest : AmazonChimeSDKVoiceRequest
{
private int? _maxResults;
private string _nextToken;
private string _sipMediaApplicationId;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call. Defaults to 100.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationId.
/// <para>
/// The SIP media application ID.
/// </para>
/// </summary>
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;
}
}
}
| 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-sdk-voice-2022-08-03.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.ChimeSDKVoice.Model
{
/// <summary>
/// This is the response object from the ListSipRules operation.
/// </summary>
public partial class ListSipRulesResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SipRule> _sipRules = new List<SipRule>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to return the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipRules.
/// <para>
/// The list of SIP rules and details.
/// </para>
/// </summary>
public List<SipRule> SipRules
{
get { return this._sipRules; }
set { this._sipRules = value; }
}
// Check to see if SipRules property is set
internal bool IsSetSipRules()
{
return this._sipRules != null && this._sipRules.Count > 0;
}
}
}
| 77 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.