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 ListSupportedPhoneNumberCountries operation.
/// Lists the countries that you can order phone numbers from.
/// </summary>
public partial class ListSupportedPhoneNumberCountriesRequest : AmazonChimeSDKVoiceRequest
{
private PhoneNumberProductType _productType;
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The phone number product type.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
}
}
| 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 ListSupportedPhoneNumberCountries operation.
/// </summary>
public partial class ListSupportedPhoneNumberCountriesResponse : AmazonWebServiceResponse
{
private List<PhoneNumberCountry> _phoneNumberCountries = new List<PhoneNumberCountry>();
/// <summary>
/// Gets and sets the property PhoneNumberCountries.
/// <para>
/// The supported phone number countries.
/// </para>
/// </summary>
public List<PhoneNumberCountry> PhoneNumberCountries
{
get { return this._phoneNumberCountries; }
set { this._phoneNumberCountries = value; }
}
// Check to see if PhoneNumberCountries property is set
internal bool IsSetPhoneNumberCountries()
{
return this._phoneNumberCountries != null && this._phoneNumberCountries.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 ListTagsForResource operation.
/// Returns a list of the tags in a given resource.
/// </summary>
public partial class ListTagsForResourceRequest : AmazonChimeSDKVoiceRequest
{
private string _resourceARN;
/// <summary>
/// Gets and sets the property ResourceARN.
/// <para>
/// The resource ARN.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=1024)]
public string ResourceARN
{
get { return this._resourceARN; }
set { this._resourceARN = value; }
}
// Check to see if ResourceARN property is set
internal bool IsSetResourceARN()
{
return this._resourceARN != 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 ListTagsForResource operation.
/// </summary>
public partial class ListTagsForResourceResponse : AmazonWebServiceResponse
{
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// The tags in the list.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 ListVoiceConnectorGroups operation.
/// Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS account.
/// </summary>
public partial class ListVoiceConnectorGroupsRequest : 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 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;
}
}
}
| 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 ListVoiceConnectorGroups operation.
/// </summary>
public partial class ListVoiceConnectorGroupsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<VoiceConnectorGroup> _voiceConnectorGroups = new List<VoiceConnectorGroup>();
/// <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 VoiceConnectorGroups.
/// <para>
/// The details of the Voice Connector groups.
/// </para>
/// </summary>
public List<VoiceConnectorGroup> VoiceConnectorGroups
{
get { return this._voiceConnectorGroups; }
set { this._voiceConnectorGroups = value; }
}
// Check to see if VoiceConnectorGroups property is set
internal bool IsSetVoiceConnectorGroups()
{
return this._voiceConnectorGroups != null && this._voiceConnectorGroups.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 ListVoiceConnectors operation.
/// Lists the Amazon Chime SDK Voice Connectors in the administrators AWS account.
/// </summary>
public partial class ListVoiceConnectorsRequest : 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 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;
}
}
}
| 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 ListVoiceConnectors operation.
/// </summary>
public partial class ListVoiceConnectorsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<VoiceConnector> _voiceConnectors = new List<VoiceConnector>();
/// <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 VoiceConnectors.
/// <para>
/// The details of the Voice Connectors.
/// </para>
/// </summary>
public List<VoiceConnector> VoiceConnectors
{
get { return this._voiceConnectors; }
set { this._voiceConnectors = value; }
}
// Check to see if VoiceConnectors property is set
internal bool IsSetVoiceConnectors()
{
return this._voiceConnectors != null && this._voiceConnectors.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 ListVoiceConnectorTerminationCredentials operation.
/// Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class ListVoiceConnectorTerminationCredentialsRequest : 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 ListVoiceConnectorTerminationCredentials operation.
/// </summary>
public partial class ListVoiceConnectorTerminationCredentialsResponse : AmazonWebServiceResponse
{
private List<string> _usernames = new List<string>();
/// <summary>
/// Gets and sets the property Usernames.
/// <para>
/// A list of user names.
/// </para>
/// </summary>
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;
}
}
}
| 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 ListVoiceProfileDomains operation.
/// Lists the specified voice profile domains in the administrator's AWS account.
/// </summary>
public partial class ListVoiceProfileDomainsRequest : 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 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;
}
}
}
| 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 ListVoiceProfileDomains operation.
/// </summary>
public partial class ListVoiceProfileDomainsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<VoiceProfileDomainSummary> _voiceProfileDomains = new List<VoiceProfileDomainSummary>();
/// <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 VoiceProfileDomains.
/// <para>
/// The list of voice profile domains.
/// </para>
/// </summary>
public List<VoiceProfileDomainSummary> VoiceProfileDomains
{
get { return this._voiceProfileDomains; }
set { this._voiceProfileDomains = value; }
}
// Check to see if VoiceProfileDomains property is set
internal bool IsSetVoiceProfileDomains()
{
return this._voiceProfileDomains != null && this._voiceProfileDomains.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 ListVoiceProfiles operation.
/// Lists the voice profiles in a voice profile domain.
/// </summary>
public partial class ListVoiceProfilesRequest : AmazonChimeSDKVoiceRequest
{
private int? _maxResults;
private string _nextToken;
private string _voiceProfileDomainId;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results in the request.
/// </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;
}
/// <summary>
/// Gets and sets the property VoiceProfileDomainId.
/// <para>
/// The ID of the voice profile domain.
/// </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;
}
}
}
| 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 ListVoiceProfiles operation.
/// </summary>
public partial class ListVoiceProfilesResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<VoiceProfileSummary> _voiceProfiles = new List<VoiceProfileSummary>();
/// <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 VoiceProfiles.
/// <para>
/// The list of voice profiles.
/// </para>
/// </summary>
public List<VoiceProfileSummary> VoiceProfiles
{
get { return this._voiceProfiles; }
set { this._voiceProfiles = value; }
}
// Check to see if VoiceProfiles property is set
internal bool IsSetVoiceProfiles()
{
return this._voiceProfiles != null && this._voiceProfiles.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>
/// The logging configuration associated with an Amazon Chime SDK Voice Connector. Specifies
/// whether SIP message logs can be sent to Amazon CloudWatch Logs.
/// </summary>
public partial class LoggingConfiguration
{
private bool? _enableMediaMetricLogs;
private bool? _enableSIPLogs;
/// <summary>
/// Gets and sets the property EnableMediaMetricLogs.
/// <para>
/// Enables or disables media metrics logging.
/// </para>
/// </summary>
public bool EnableMediaMetricLogs
{
get { return this._enableMediaMetricLogs.GetValueOrDefault(); }
set { this._enableMediaMetricLogs = value; }
}
// Check to see if EnableMediaMetricLogs property is set
internal bool IsSetEnableMediaMetricLogs()
{
return this._enableMediaMetricLogs.HasValue;
}
/// <summary>
/// Gets and sets the property EnableSIPLogs.
/// <para>
/// Boolean that enables sending SIP message logs to Amazon CloudWatch.
/// </para>
/// </summary>
public bool EnableSIPLogs
{
get { return this._enableSIPLogs.GetValueOrDefault(); }
set { this._enableSIPLogs = value; }
}
// Check to see if EnableSIPLogs property is set
internal bool IsSetEnableSIPLogs()
{
return this._enableSIPLogs.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>
/// The configuration for a call analytics task.
/// </summary>
public partial class MediaInsightsConfiguration
{
private string _configurationArn;
private bool? _disabled;
/// <summary>
/// Gets and sets the property ConfigurationArn.
/// <para>
/// The configuration's ARN.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=1, Max=1024)]
public string ConfigurationArn
{
get { return this._configurationArn; }
set { this._configurationArn = value; }
}
// Check to see if ConfigurationArn property is set
internal bool IsSetConfigurationArn()
{
return this._configurationArn != null;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// Denotes the configration as enabled or disabled.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
}
}
| 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>
/// The requested resource couldn't be found.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class NotFoundException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new NotFoundException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public NotFoundException(string message)
: base(message) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public NotFoundException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="innerException"></param>
public NotFoundException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of NotFoundException
/// </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 NotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public NotFoundException(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 NotFoundException 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 NotFoundException(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>
/// A phone number for which an order has been placed.
/// </summary>
public partial class OrderedPhoneNumber
{
private string _e164PhoneNumber;
private OrderedPhoneNumberStatus _status;
/// <summary>
/// Gets and sets the property E164PhoneNumber.
/// <para>
/// The phone number, in E.164 format.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string E164PhoneNumber
{
get { return this._e164PhoneNumber; }
set { this._e164PhoneNumber = value; }
}
// Check to see if E164PhoneNumber property is set
internal bool IsSetE164PhoneNumber()
{
return this._e164PhoneNumber != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The phone number status.
/// </para>
/// </summary>
public OrderedPhoneNumberStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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>
/// Origination settings enable your SIP hosts to receive inbound calls using your Amazon
/// Chime SDK Voice Connector.
///
/// <note>
/// <para>
/// The parameters listed below are not required, but you must use at least one.
/// </para>
/// </note>
/// </summary>
public partial class Origination
{
private bool? _disabled;
private List<OriginationRoute> _routes = new List<OriginationRoute>();
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// When origination settings are disabled, inbound calls are not enabled for your Amazon
/// Chime SDK Voice Connector. This parameter is not required, but you must specify this
/// parameter or <code>Routes</code>.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property Routes.
/// <para>
/// The call distribution properties defined for your SIP hosts. Valid range: Minimum
/// value of 1. Maximum value of 20. This parameter is not required, but you must specify
/// this parameter or <code>Disabled</code>.
/// </para>
/// </summary>
public List<OriginationRoute> Routes
{
get { return this._routes; }
set { this._routes = value; }
}
// Check to see if Routes property is set
internal bool IsSetRoutes()
{
return this._routes != null && this._routes.Count > 0;
}
}
}
| 87 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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>
/// Origination routes define call distribution properties for your SIP hosts to receive
/// inbound calls using an Amazon Chime SDK Voice Connector. Limit: Ten origination routes
/// for each Voice Connector.
///
/// <note>
/// <para>
/// The parameters listed below are not required, but you must use at least one.
/// </para>
/// </note>
/// </summary>
public partial class OriginationRoute
{
private string _host;
private int? _port;
private int? _priority;
private OriginationRouteProtocol _protocol;
private int? _weight;
/// <summary>
/// Gets and sets the property Host.
/// <para>
/// The FQDN or IP address to contact for origination traffic.
/// </para>
/// </summary>
public string Host
{
get { return this._host; }
set { this._host = value; }
}
// Check to see if Host property is set
internal bool IsSetHost()
{
return this._host != null;
}
/// <summary>
/// Gets and sets the property Port.
/// <para>
/// The designated origination route port. Defaults to 5060.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=65535)]
public int Port
{
get { return this._port.GetValueOrDefault(); }
set { this._port = value; }
}
// Check to see if Port property is set
internal bool IsSetPort()
{
return this._port.HasValue;
}
/// <summary>
/// Gets and sets the property Priority.
/// <para>
/// The priority associated with the host, with 1 being the highest priority. Higher priority
/// hosts are attempted first.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int Priority
{
get { return this._priority.GetValueOrDefault(); }
set { this._priority = value; }
}
// Check to see if Priority property is set
internal bool IsSetPriority()
{
return this._priority.HasValue;
}
/// <summary>
/// Gets and sets the property Protocol.
/// <para>
/// The protocol to use for the origination route. Encryption-enabled Amazon Chime SDK
/// Voice Connectors use TCP protocol by default.
/// </para>
/// </summary>
public OriginationRouteProtocol Protocol
{
get { return this._protocol; }
set { this._protocol = value; }
}
// Check to see if Protocol property is set
internal bool IsSetProtocol()
{
return this._protocol != null;
}
/// <summary>
/// Gets and sets the property Weight.
/// <para>
/// The weight assigned to an origination route. When hosts have equal priority, calls
/// are distributed between them based on their relative weights.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public int Weight
{
get { return this._weight.GetValueOrDefault(); }
set { this._weight = value; }
}
// Check to see if Weight property is set
internal bool IsSetWeight()
{
return this._weight.HasValue;
}
}
}
| 147 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 phone number and proxy phone number for a participant in an Amazon Chime SDK Voice
/// Connector proxy session.
/// </summary>
public partial class Participant
{
private string _phoneNumber;
private string _proxyPhoneNumber;
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The participant's phone number.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string PhoneNumber
{
get { return this._phoneNumber; }
set { this._phoneNumber = value; }
}
// Check to see if PhoneNumber property is set
internal bool IsSetPhoneNumber()
{
return this._phoneNumber != null;
}
/// <summary>
/// Gets and sets the property ProxyPhoneNumber.
/// <para>
/// The participant's proxy phone number.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string ProxyPhoneNumber
{
get { return this._proxyPhoneNumber; }
set { this._proxyPhoneNumber = value; }
}
// Check to see if ProxyPhoneNumber property is set
internal bool IsSetProxyPhoneNumber()
{
return this._proxyPhoneNumber != 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>
/// A phone number used to call an Amazon Chime SDK Voice Connector.
/// </summary>
public partial class PhoneNumber
{
private List<PhoneNumberAssociation> _associations = new List<PhoneNumberAssociation>();
private string _callingName;
private CallingNameStatus _callingNameStatus;
private PhoneNumberCapabilities _capabilities;
private string _country;
private DateTime? _createdTimestamp;
private DateTime? _deletionTimestamp;
private string _e164PhoneNumber;
private string _orderId;
private string _phoneNumberId;
private PhoneNumberProductType _productType;
private PhoneNumberStatus _status;
private PhoneNumberType _type;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property Associations.
/// <para>
/// The phone number's associations.
/// </para>
/// </summary>
public List<PhoneNumberAssociation> Associations
{
get { return this._associations; }
set { this._associations = value; }
}
// Check to see if Associations property is set
internal bool IsSetAssociations()
{
return this._associations != null && this._associations.Count > 0;
}
/// <summary>
/// Gets and sets the property CallingName.
/// <para>
/// The outbound calling name associated with the phone number.
/// </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 CallingNameStatus.
/// <para>
/// The outbound calling name status.
/// </para>
/// </summary>
public CallingNameStatus CallingNameStatus
{
get { return this._callingNameStatus; }
set { this._callingNameStatus = value; }
}
// Check to see if CallingNameStatus property is set
internal bool IsSetCallingNameStatus()
{
return this._callingNameStatus != null;
}
/// <summary>
/// Gets and sets the property Capabilities.
/// <para>
/// The phone number's capabilities.
/// </para>
/// </summary>
public PhoneNumberCapabilities Capabilities
{
get { return this._capabilities; }
set { this._capabilities = value; }
}
// Check to see if Capabilities property is set
internal bool IsSetCapabilities()
{
return this._capabilities != null;
}
/// <summary>
/// Gets and sets the property Country.
/// <para>
/// The phone number's country. Format: ISO 3166-1 alpha-2.
/// </para>
/// </summary>
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;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The phone number creation timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property DeletionTimestamp.
/// <para>
/// The deleted phone number timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime DeletionTimestamp
{
get { return this._deletionTimestamp.GetValueOrDefault(); }
set { this._deletionTimestamp = value; }
}
// Check to see if DeletionTimestamp property is set
internal bool IsSetDeletionTimestamp()
{
return this._deletionTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property E164PhoneNumber.
/// <para>
/// The phone number, in E.164 format.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string E164PhoneNumber
{
get { return this._e164PhoneNumber; }
set { this._e164PhoneNumber = value; }
}
// Check to see if E164PhoneNumber property is set
internal bool IsSetE164PhoneNumber()
{
return this._e164PhoneNumber != null;
}
/// <summary>
/// Gets and sets the property OrderId.
/// <para>
/// The phone number's order ID.
/// </para>
/// </summary>
public string OrderId
{
get { return this._orderId; }
set { this._orderId = value; }
}
// Check to see if OrderId property is set
internal bool IsSetOrderId()
{
return this._orderId != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The phone number's ID.
/// </para>
/// </summary>
[AWSProperty(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;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The phone number's product type.
/// </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 phone number's status.
/// </para>
/// </summary>
public PhoneNumberStatus 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 Type.
/// <para>
/// The phone number's type.
/// </para>
/// </summary>
public PhoneNumberType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The updated phone number timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
}
}
| 307 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 phone number associations, such as an Amazon Chime SDK account ID, user ID, Voice
/// Connector ID, or Voice Connector group ID.
/// </summary>
public partial class PhoneNumberAssociation
{
private DateTime? _associatedTimestamp;
private PhoneNumberAssociationName _name;
private string _value;
/// <summary>
/// Gets and sets the property AssociatedTimestamp.
/// <para>
/// The timestamp of the phone number association, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime AssociatedTimestamp
{
get { return this._associatedTimestamp.GetValueOrDefault(); }
set { this._associatedTimestamp = value; }
}
// Check to see if AssociatedTimestamp property is set
internal bool IsSetAssociatedTimestamp()
{
return this._associatedTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// Defines the association with an Amazon Chime SDK account ID, user ID, Voice Connector
/// ID, or Voice Connector group ID.
/// </para>
/// </summary>
public PhoneNumberAssociationName 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 Value.
/// <para>
/// Contains the ID for the entity specified in Name.
/// </para>
/// </summary>
public string Value
{
get { return this._value; }
set { this._value = value; }
}
// Check to see if Value property is set
internal bool IsSetValue()
{
return this._value != null;
}
}
}
| 97 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 phone number capabilities for Amazon Chime SDK phone numbers, such as enabled
/// inbound and outbound calling, and text messaging.
/// </summary>
public partial class PhoneNumberCapabilities
{
private bool? _inboundCall;
private bool? _inboundMMS;
private bool? _inboundSMS;
private bool? _outboundCall;
private bool? _outboundMMS;
private bool? _outboundSMS;
/// <summary>
/// Gets and sets the property InboundCall.
/// <para>
/// Allows or denies inbound calling for the specified phone number.
/// </para>
/// </summary>
public bool InboundCall
{
get { return this._inboundCall.GetValueOrDefault(); }
set { this._inboundCall = value; }
}
// Check to see if InboundCall property is set
internal bool IsSetInboundCall()
{
return this._inboundCall.HasValue;
}
/// <summary>
/// Gets and sets the property InboundMMS.
/// <para>
/// Allows or denies inbound MMS messaging for the specified phone number.
/// </para>
/// </summary>
public bool InboundMMS
{
get { return this._inboundMMS.GetValueOrDefault(); }
set { this._inboundMMS = value; }
}
// Check to see if InboundMMS property is set
internal bool IsSetInboundMMS()
{
return this._inboundMMS.HasValue;
}
/// <summary>
/// Gets and sets the property InboundSMS.
/// <para>
/// Allows or denies inbound SMS messaging for the specified phone number.
/// </para>
/// </summary>
public bool InboundSMS
{
get { return this._inboundSMS.GetValueOrDefault(); }
set { this._inboundSMS = value; }
}
// Check to see if InboundSMS property is set
internal bool IsSetInboundSMS()
{
return this._inboundSMS.HasValue;
}
/// <summary>
/// Gets and sets the property OutboundCall.
/// <para>
/// Allows or denies outbound calling for the specified phone number.
/// </para>
/// </summary>
public bool OutboundCall
{
get { return this._outboundCall.GetValueOrDefault(); }
set { this._outboundCall = value; }
}
// Check to see if OutboundCall property is set
internal bool IsSetOutboundCall()
{
return this._outboundCall.HasValue;
}
/// <summary>
/// Gets and sets the property OutboundMMS.
/// <para>
/// Allows or denies inbound MMS messaging for the specified phone number.
/// </para>
/// </summary>
public bool OutboundMMS
{
get { return this._outboundMMS.GetValueOrDefault(); }
set { this._outboundMMS = value; }
}
// Check to see if OutboundMMS property is set
internal bool IsSetOutboundMMS()
{
return this._outboundMMS.HasValue;
}
/// <summary>
/// Gets and sets the property OutboundSMS.
/// <para>
/// Allows or denies outbound SMS messaging for the specified phone number.
/// </para>
/// </summary>
public bool OutboundSMS
{
get { return this._outboundSMS.GetValueOrDefault(); }
set { this._outboundSMS = value; }
}
// Check to see if OutboundSMS property is set
internal bool IsSetOutboundSMS()
{
return this._outboundSMS.HasValue;
}
}
}
| 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>
/// The phone number's country.
/// </summary>
public partial class PhoneNumberCountry
{
private string _countryCode;
private List<string> _supportedPhoneNumberTypes = new List<string>();
/// <summary>
/// Gets and sets the property CountryCode.
/// <para>
/// The phone number country code. Format: ISO 3166-1 alpha-2.
/// </para>
/// </summary>
public string CountryCode
{
get { return this._countryCode; }
set { this._countryCode = value; }
}
// Check to see if CountryCode property is set
internal bool IsSetCountryCode()
{
return this._countryCode != null;
}
/// <summary>
/// Gets and sets the property SupportedPhoneNumberTypes.
/// <para>
/// The supported phone number types.
/// </para>
/// </summary>
public List<string> SupportedPhoneNumberTypes
{
get { return this._supportedPhoneNumberTypes; }
set { this._supportedPhoneNumberTypes = value; }
}
// Check to see if SupportedPhoneNumberTypes property is set
internal bool IsSetSupportedPhoneNumberTypes()
{
return this._supportedPhoneNumberTypes != null && this._supportedPhoneNumberTypes.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>
/// If a phone number action fails for one or more of the phone numbers in a request,
/// a list of the failed phone numbers is returned, along with error codes and error messages.
/// </summary>
public partial class PhoneNumberError
{
private ErrorCode _errorCode;
private string _errorMessage;
private string _phoneNumberId;
/// <summary>
/// Gets and sets the property ErrorCode.
/// <para>
/// The error code.
/// </para>
/// </summary>
public ErrorCode ErrorCode
{
get { return this._errorCode; }
set { this._errorCode = value; }
}
// Check to see if ErrorCode property is set
internal bool IsSetErrorCode()
{
return this._errorCode != null;
}
/// <summary>
/// Gets and sets the property ErrorMessage.
/// <para>
/// The error message.
/// </para>
/// </summary>
public string ErrorMessage
{
get { return this._errorMessage; }
set { this._errorMessage = value; }
}
// Check to see if ErrorMessage property is set
internal bool IsSetErrorMessage()
{
return this._errorMessage != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The phone number ID for which the action failed.
/// </para>
/// </summary>
[AWSProperty(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;
}
}
}
| 97 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 details of an Amazon Chime SDK phone number order.
/// </summary>
public partial class PhoneNumberOrder
{
private DateTime? _createdTimestamp;
private List<OrderedPhoneNumber> _orderedPhoneNumbers = new List<OrderedPhoneNumber>();
private PhoneNumberOrderType _orderType;
private string _phoneNumberOrderId;
private PhoneNumberProductType _productType;
private PhoneNumberOrderStatus _status;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The phone number order creation time stamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property OrderedPhoneNumbers.
/// <para>
/// The ordered phone number details, such as the phone number in E.164 format and the
/// phone number status.
/// </para>
/// </summary>
public List<OrderedPhoneNumber> OrderedPhoneNumbers
{
get { return this._orderedPhoneNumbers; }
set { this._orderedPhoneNumbers = value; }
}
// Check to see if OrderedPhoneNumbers property is set
internal bool IsSetOrderedPhoneNumbers()
{
return this._orderedPhoneNumbers != null && this._orderedPhoneNumbers.Count > 0;
}
/// <summary>
/// Gets and sets the property OrderType.
/// <para>
/// The type of phone number being ordered, local or toll-free.
/// </para>
/// </summary>
public PhoneNumberOrderType OrderType
{
get { return this._orderType; }
set { this._orderType = value; }
}
// Check to see if OrderType property is set
internal bool IsSetOrderType()
{
return this._orderType != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberOrderId.
/// <para>
/// The ID of the phone order.
/// </para>
/// </summary>
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;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The phone number order product type.
/// </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 the phone number order.
/// </para>
/// </summary>
public PhoneNumberOrderStatus 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 UpdatedTimestamp.
/// <para>
/// The updated phone number order time stamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
}
}
| 172 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 proxy configuration for an Amazon Chime SDK Voice Connector.
/// </summary>
public partial class Proxy
{
private int? _defaultSessionExpiryMinutes;
private bool? _disabled;
private string _fallBackPhoneNumber;
private List<string> _phoneNumberCountries = new List<string>();
/// <summary>
/// Gets and sets the property DefaultSessionExpiryMinutes.
/// <para>
/// The default number of minutes allowed for proxy sessions.
/// </para>
/// </summary>
public int DefaultSessionExpiryMinutes
{
get { return this._defaultSessionExpiryMinutes.GetValueOrDefault(); }
set { this._defaultSessionExpiryMinutes = value; }
}
// Check to see if DefaultSessionExpiryMinutes property is set
internal bool IsSetDefaultSessionExpiryMinutes()
{
return this._defaultSessionExpiryMinutes.HasValue;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// When true, stops proxy sessions from being created on the specified Amazon Chime SDK
/// Voice Connector.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property FallBackPhoneNumber.
/// <para>
/// The phone number to route calls to after a proxy session expires.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string FallBackPhoneNumber
{
get { return this._fallBackPhoneNumber; }
set { this._fallBackPhoneNumber = value; }
}
// Check to see if FallBackPhoneNumber property is set
internal bool IsSetFallBackPhoneNumber()
{
return this._fallBackPhoneNumber != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberCountries.
/// <para>
/// The countries for proxy phone numbers to be selected from.
/// </para>
/// </summary>
public List<string> PhoneNumberCountries
{
get { return this._phoneNumberCountries; }
set { this._phoneNumberCountries = value; }
}
// Check to see if PhoneNumberCountries property is set
internal bool IsSetPhoneNumberCountries()
{
return this._phoneNumberCountries != null && this._phoneNumberCountries.Count > 0;
}
}
}
| 116 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 proxy session for an Amazon Chime SDK Voice Connector.
/// </summary>
public partial class ProxySession
{
private List<string> _capabilities = new List<string>();
private DateTime? _createdTimestamp;
private DateTime? _endedTimestamp;
private int? _expiryMinutes;
private GeoMatchLevel _geoMatchLevel;
private GeoMatchParams _geoMatchParams;
private string _name;
private NumberSelectionBehavior _numberSelectionBehavior;
private List<Participant> _participants = new List<Participant>();
private string _proxySessionId;
private ProxySessionStatus _status;
private DateTime? _updatedTimestamp;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Capabilities.
/// <para>
/// The proxy session capabilities.
/// </para>
/// </summary>
public List<string> Capabilities
{
get { return this._capabilities; }
set { this._capabilities = value; }
}
// Check to see if Capabilities property is set
internal bool IsSetCapabilities()
{
return this._capabilities != null && this._capabilities.Count > 0;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The created time stamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property EndedTimestamp.
/// <para>
/// The ended time stamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime EndedTimestamp
{
get { return this._endedTimestamp.GetValueOrDefault(); }
set { this._endedTimestamp = value; }
}
// Check to see if EndedTimestamp property is set
internal bool IsSetEndedTimestamp()
{
return this._endedTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property ExpiryMinutes.
/// <para>
/// The number of minutes allowed for the proxy session.
/// </para>
/// </summary>
[AWSProperty(Min=1)]
public int ExpiryMinutes
{
get { return this._expiryMinutes.GetValueOrDefault(); }
set { this._expiryMinutes = value; }
}
// Check to see if ExpiryMinutes property is set
internal bool IsSetExpiryMinutes()
{
return this._expiryMinutes.HasValue;
}
/// <summary>
/// Gets and sets the property GeoMatchLevel.
/// <para>
/// The preference for matching the country or area code of the proxy phone number with
/// that of the first participant.
/// </para>
/// </summary>
public GeoMatchLevel GeoMatchLevel
{
get { return this._geoMatchLevel; }
set { this._geoMatchLevel = value; }
}
// Check to see if GeoMatchLevel property is set
internal bool IsSetGeoMatchLevel()
{
return this._geoMatchLevel != null;
}
/// <summary>
/// Gets and sets the property GeoMatchParams.
/// <para>
/// The country and area code for the proxy phone number.
/// </para>
/// </summary>
public GeoMatchParams GeoMatchParams
{
get { return this._geoMatchParams; }
set { this._geoMatchParams = value; }
}
// Check to see if GeoMatchParams property is set
internal bool IsSetGeoMatchParams()
{
return this._geoMatchParams != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The proxy session name.
/// </para>
/// </summary>
[AWSProperty(Max=128)]
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 NumberSelectionBehavior.
/// <para>
/// The preference for proxy phone number reuse, or stickiness, between the same participants
/// across sessions.
/// </para>
/// </summary>
public NumberSelectionBehavior NumberSelectionBehavior
{
get { return this._numberSelectionBehavior; }
set { this._numberSelectionBehavior = value; }
}
// Check to see if NumberSelectionBehavior property is set
internal bool IsSetNumberSelectionBehavior()
{
return this._numberSelectionBehavior != null;
}
/// <summary>
/// Gets and sets the property Participants.
/// <para>
/// The proxy session participants.
/// </para>
/// </summary>
public List<Participant> Participants
{
get { return this._participants; }
set { this._participants = value; }
}
// Check to see if Participants property is set
internal bool IsSetParticipants()
{
return this._participants != null && this._participants.Count > 0;
}
/// <summary>
/// Gets and sets the property ProxySessionId.
/// <para>
/// The proxy session ID.
/// </para>
/// </summary>
[AWSProperty(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 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 UpdatedTimestamp.
/// <para>
/// The updated time stamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(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;
}
}
}
| 291 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 PutSipMediaApplicationAlexaSkillConfiguration operation.
/// Updates the Alexa Skill configuration for the SIP media application.
/// </summary>
public partial class PutSipMediaApplicationAlexaSkillConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private SipMediaApplicationAlexaSkillConfiguration _sipMediaApplicationAlexaSkillConfiguration;
private string _sipMediaApplicationId;
/// <summary>
/// Gets and sets the property SipMediaApplicationAlexaSkillConfiguration.
/// <para>
/// 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;
}
/// <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;
}
}
}
| 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 PutSipMediaApplicationAlexaSkillConfiguration operation.
/// </summary>
public partial class PutSipMediaApplicationAlexaSkillConfigurationResponse : 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 PutSipMediaApplicationLoggingConfiguration operation.
/// Updates the logging configuration for the specified SIP media application.
/// </summary>
public partial class PutSipMediaApplicationLoggingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private string _sipMediaApplicationId;
private SipMediaApplicationLoggingConfiguration _sipMediaApplicationLoggingConfiguration;
/// <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;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationLoggingConfiguration.
/// <para>
/// The logging configuration for the specified SIP media application.
/// </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;
}
}
}
| 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 PutSipMediaApplicationLoggingConfiguration operation.
/// </summary>
public partial class PutSipMediaApplicationLoggingConfigurationResponse : AmazonWebServiceResponse
{
private SipMediaApplicationLoggingConfiguration _sipMediaApplicationLoggingConfiguration;
/// <summary>
/// Gets and sets the property SipMediaApplicationLoggingConfiguration.
/// <para>
/// The updated logging configuration for the specified SIP media application.
/// </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 PutVoiceConnectorEmergencyCallingConfiguration operation.
/// Updates a Voice Connector's emergency calling configuration.
/// </summary>
public partial class PutVoiceConnectorEmergencyCallingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private EmergencyCallingConfiguration _emergencyCallingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property EmergencyCallingConfiguration.
/// <para>
/// The configuration being updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
/// <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;
}
}
}
| 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 PutVoiceConnectorEmergencyCallingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorEmergencyCallingConfigurationResponse : AmazonWebServiceResponse
{
private EmergencyCallingConfiguration _emergencyCallingConfiguration;
/// <summary>
/// Gets and sets the property EmergencyCallingConfiguration.
/// <para>
/// The updated 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 PutVoiceConnectorLoggingConfiguration operation.
/// Updates a Voice Connector's logging configuration.
/// </summary>
public partial class PutVoiceConnectorLoggingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private LoggingConfiguration _loggingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property LoggingConfiguration.
/// <para>
/// The logging configuration being updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
/// <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;
}
}
}
| 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 PutVoiceConnectorLoggingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorLoggingConfigurationResponse : AmazonWebServiceResponse
{
private LoggingConfiguration _loggingConfiguration;
/// <summary>
/// Gets and sets the property LoggingConfiguration.
/// <para>
/// The updated logging configuration.
/// </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 PutVoiceConnectorOrigination operation.
/// Updates a Voice Connector's origination settings.
/// </summary>
public partial class PutVoiceConnectorOriginationRequest : AmazonChimeSDKVoiceRequest
{
private Origination _origination;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Origination.
/// <para>
/// The origination settings being updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
/// <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;
}
}
}
| 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 PutVoiceConnectorOrigination operation.
/// </summary>
public partial class PutVoiceConnectorOriginationResponse : AmazonWebServiceResponse
{
private Origination _origination;
/// <summary>
/// Gets and sets the property Origination.
/// <para>
/// The updated origination settings.
/// </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 PutVoiceConnectorProxy operation.
/// Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.
/// </summary>
public partial class PutVoiceConnectorProxyRequest : AmazonChimeSDKVoiceRequest
{
private int? _defaultSessionExpiryMinutes;
private bool? _disabled;
private string _fallBackPhoneNumber;
private List<string> _phoneNumberPoolCountries = new List<string>();
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property DefaultSessionExpiryMinutes.
/// <para>
/// The default number of minutes allowed for proxy session.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public int DefaultSessionExpiryMinutes
{
get { return this._defaultSessionExpiryMinutes.GetValueOrDefault(); }
set { this._defaultSessionExpiryMinutes = value; }
}
// Check to see if DefaultSessionExpiryMinutes property is set
internal bool IsSetDefaultSessionExpiryMinutes()
{
return this._defaultSessionExpiryMinutes.HasValue;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// When true, stops proxy sessions from being created on the specified Amazon Chime SDK
/// Voice Connector.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property FallBackPhoneNumber.
/// <para>
/// The phone number to route calls to after a proxy session expires.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string FallBackPhoneNumber
{
get { return this._fallBackPhoneNumber; }
set { this._fallBackPhoneNumber = value; }
}
// Check to see if FallBackPhoneNumber property is set
internal bool IsSetFallBackPhoneNumber()
{
return this._fallBackPhoneNumber != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberPoolCountries.
/// <para>
/// The countries for proxy phone numbers to be selected from.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public List<string> PhoneNumberPoolCountries
{
get { return this._phoneNumberPoolCountries; }
set { this._phoneNumberPoolCountries = value; }
}
// Check to see if PhoneNumberPoolCountries property is set
internal bool IsSetPhoneNumberPoolCountries()
{
return this._phoneNumberPoolCountries != null && this._phoneNumberPoolCountries.Count > 0;
}
/// <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;
}
}
}
| 139 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 PutVoiceConnectorProxy operation.
/// </summary>
public partial class PutVoiceConnectorProxyResponse : 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 PutVoiceConnectorStreamingConfiguration operation.
/// Updates a Voice Connector's streaming configuration settings.
/// </summary>
public partial class PutVoiceConnectorStreamingConfigurationRequest : AmazonChimeSDKVoiceRequest
{
private StreamingConfiguration _streamingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property StreamingConfiguration.
/// <para>
/// The streaming settings being updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
/// <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;
}
}
}
| 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 PutVoiceConnectorStreamingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorStreamingConfigurationResponse : AmazonWebServiceResponse
{
private StreamingConfiguration _streamingConfiguration;
/// <summary>
/// Gets and sets the property StreamingConfiguration.
/// <para>
/// The updated streaming settings.
/// </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 PutVoiceConnectorTerminationCredentials operation.
/// Updates a Voice Connector's termination credentials.
/// </summary>
public partial class PutVoiceConnectorTerminationCredentialsRequest : AmazonChimeSDKVoiceRequest
{
private List<Credential> _credentials = new List<Credential>();
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Credentials.
/// <para>
/// The termination credentials being updated.
/// </para>
/// </summary>
public List<Credential> Credentials
{
get { return this._credentials; }
set { this._credentials = value; }
}
// Check to see if Credentials property is set
internal bool IsSetCredentials()
{
return this._credentials != null && this._credentials.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;
}
}
}
| 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 PutVoiceConnectorTerminationCredentials operation.
/// </summary>
public partial class PutVoiceConnectorTerminationCredentialsResponse : 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 PutVoiceConnectorTermination operation.
/// Updates a Voice Connector's termination settings.
/// </summary>
public partial class PutVoiceConnectorTerminationRequest : AmazonChimeSDKVoiceRequest
{
private Termination _termination;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Termination.
/// <para>
/// The termination settings to be updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
/// <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;
}
}
}
| 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 PutVoiceConnectorTermination operation.
/// </summary>
public partial class PutVoiceConnectorTerminationResponse : AmazonWebServiceResponse
{
private Termination _termination;
/// <summary>
/// Gets and sets the property Termination.
/// <para>
/// The updated termination settings.
/// </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>
/// The request exceeds the resource limit.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ResourceLimitExceededException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new ResourceLimitExceededException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ResourceLimitExceededException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ResourceLimitExceededException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ResourceLimitExceededException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ResourceLimitExceededException
/// </summary>
/// <param name="innerException"></param>
public ResourceLimitExceededException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ResourceLimitExceededException
/// </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 ResourceLimitExceededException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ResourceLimitExceededException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ResourceLimitExceededException(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 ResourceLimitExceededException 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 ResourceLimitExceededException(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>
/// Container for the parameters to the RestorePhoneNumber operation.
/// Restores a deleted phone number.
/// </summary>
public partial class RestorePhoneNumberRequest : AmazonChimeSDKVoiceRequest
{
private string _phoneNumberId;
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The ID of the phone number being restored.
/// </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;
}
}
}
| 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 RestorePhoneNumber operation.
/// </summary>
public partial class RestorePhoneNumberResponse : AmazonWebServiceResponse
{
private PhoneNumber _phoneNumber;
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The restored phone number.
/// </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 SearchAvailablePhoneNumbers operation.
/// Searches the provisioned phone numbers in an organization.
/// </summary>
public partial class SearchAvailablePhoneNumbersRequest : AmazonChimeSDKVoiceRequest
{
private string _areaCode;
private string _city;
private string _country;
private int? _maxResults;
private string _nextToken;
private PhoneNumberType _phoneNumberType;
private string _state;
private string _tollFreePrefix;
/// <summary>
/// Gets and sets the property AreaCode.
/// <para>
/// Confines a search to just the phone numbers associated with the specified area code.
/// </para>
/// </summary>
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 City.
/// <para>
/// Confines a search to just the phone numbers associated with the specified city.
/// </para>
/// </summary>
public string City
{
get { return this._city; }
set { this._city = value; }
}
// Check to see if City property is set
internal bool IsSetCity()
{
return this._city != null;
}
/// <summary>
/// Gets and sets the property Country.
/// <para>
/// Confines a search to just the phone numbers associated with the specified country.
/// </para>
/// </summary>
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;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=500)]
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 PhoneNumberType.
/// <para>
/// Confines a search to just the phone numbers associated with the specified phone number
/// type, either <b>local</b> or <b>toll-free</b>.
/// </para>
/// </summary>
public PhoneNumberType PhoneNumberType
{
get { return this._phoneNumberType; }
set { this._phoneNumberType = value; }
}
// Check to see if PhoneNumberType property is set
internal bool IsSetPhoneNumberType()
{
return this._phoneNumberType != null;
}
/// <summary>
/// Gets and sets the property State.
/// <para>
/// Confines a search to just the phone numbers associated with the specified state.
/// </para>
/// </summary>
public string State
{
get { return this._state; }
set { this._state = value; }
}
// Check to see if State property is set
internal bool IsSetState()
{
return this._state != null;
}
/// <summary>
/// Gets and sets the property TollFreePrefix.
/// <para>
/// Confines a search to just the phone numbers associated with the specified toll-free
/// prefix.
/// </para>
/// </summary>
[AWSProperty(Min=3, Max=3)]
public string TollFreePrefix
{
get { return this._tollFreePrefix; }
set { this._tollFreePrefix = value; }
}
// Check to see if TollFreePrefix property is set
internal bool IsSetTollFreePrefix()
{
return this._tollFreePrefix != null;
}
}
}
| 195 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 SearchAvailablePhoneNumbers operation.
/// </summary>
public partial class SearchAvailablePhoneNumbersResponse : AmazonWebServiceResponse
{
private List<string> _e164PhoneNumbers = new List<string>();
private string _nextToken;
/// <summary>
/// Gets and sets the property E164PhoneNumbers.
/// <para>
/// Confines a search to just the phone numbers in the E.164 format.
/// </para>
/// </summary>
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 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;
}
}
}
| 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>
/// A structure that contains the configuration settings for server-side encryption.
///
/// <note>
/// <para>
/// We only support symmetric keys. Do not use asymmetric or HMAC keys, or KMS aliases.
/// </para>
/// </note>
/// </summary>
public partial class ServerSideEncryptionConfiguration
{
private string _kmsKeyArn;
/// <summary>
/// Gets and sets the property KmsKeyArn.
/// <para>
/// The ARN of the KMS key used to encrypt the enrollment data in a voice profile domain.
/// Asymmetric customer managed keys are not supported.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=1024)]
public string KmsKeyArn
{
get { return this._kmsKeyArn; }
set { this._kmsKeyArn = value; }
}
// Check to see if KmsKeyArn property is set
internal bool IsSetKmsKeyArn()
{
return this._kmsKeyArn != null;
}
}
}
| 65 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 service encountered an unexpected error.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ServiceFailureException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new ServiceFailureException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ServiceFailureException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ServiceFailureException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ServiceFailureException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ServiceFailureException
/// </summary>
/// <param name="innerException"></param>
public ServiceFailureException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ServiceFailureException
/// </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 ServiceFailureException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ServiceFailureException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ServiceFailureException(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 ServiceFailureException 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 ServiceFailureException(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 service is currently unavailable.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ServiceUnavailableException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new ServiceUnavailableException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ServiceUnavailableException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ServiceUnavailableException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ServiceUnavailableException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ServiceUnavailableException
/// </summary>
/// <param name="innerException"></param>
public ServiceUnavailableException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ServiceUnavailableException
/// </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 ServiceUnavailableException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ServiceUnavailableException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ServiceUnavailableException(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 ServiceUnavailableException 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 ServiceUnavailableException(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 details of the SIP media application, including name and endpoints. An AWS account
/// can have multiple SIP media applications.
/// </summary>
public partial class SipMediaApplication
{
private string _awsRegion;
private DateTime? _createdTimestamp;
private List<SipMediaApplicationEndpoint> _endpoints = new List<SipMediaApplicationEndpoint>();
private string _name;
private string _sipMediaApplicationArn;
private string _sipMediaApplicationId;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property AwsRegion.
/// <para>
/// The AWS Region in which the SIP media application is created.
/// </para>
/// </summary>
public string AwsRegion
{
get { return this._awsRegion; }
set { this._awsRegion = value; }
}
// Check to see if AwsRegion property is set
internal bool IsSetAwsRegion()
{
return this._awsRegion != null;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The SIP media application creation timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property Endpoints.
/// <para>
/// List of endpoints for a SIP media application. Currently, only one endpoint per SIP
/// media application is permitted.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1)]
public List<SipMediaApplicationEndpoint> Endpoints
{
get { return this._endpoints; }
set { this._endpoints = value; }
}
// Check to see if Endpoints property is set
internal bool IsSetEndpoints()
{
return this._endpoints != null && this._endpoints.Count > 0;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The SIP media application's name.
/// </para>
/// </summary>
[AWSProperty(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 SipMediaApplicationArn.
/// <para>
/// The ARN of the SIP media application.
/// </para>
/// </summary>
public string SipMediaApplicationArn
{
get { return this._sipMediaApplicationArn; }
set { this._sipMediaApplicationArn = value; }
}
// Check to see if SipMediaApplicationArn property is set
internal bool IsSetSipMediaApplicationArn()
{
return this._sipMediaApplicationArn != null;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationId.
/// <para>
/// A SIP media application's 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;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The time at which the SIP media application was updated.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
}
}
| 175 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 Alexa Skill configuration of a SIP media application.
/// </summary>
public partial class SipMediaApplicationAlexaSkillConfiguration
{
private List<string> _alexaSkillIds = new List<string>();
private AlexaSkillStatus _alexaSkillStatus;
/// <summary>
/// Gets and sets the property AlexaSkillIds.
/// <para>
/// The ID of the Alexa Skill configuration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=1)]
public List<string> AlexaSkillIds
{
get { return this._alexaSkillIds; }
set { this._alexaSkillIds = value; }
}
// Check to see if AlexaSkillIds property is set
internal bool IsSetAlexaSkillIds()
{
return this._alexaSkillIds != null && this._alexaSkillIds.Count > 0;
}
/// <summary>
/// Gets and sets the property AlexaSkillStatus.
/// <para>
/// The status of the Alexa Skill configuration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AlexaSkillStatus AlexaSkillStatus
{
get { return this._alexaSkillStatus; }
set { this._alexaSkillStatus = value; }
}
// Check to see if AlexaSkillStatus property is set
internal bool IsSetAlexaSkillStatus()
{
return this._alexaSkillStatus != 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>
/// A <code>Call</code> instance for a SIP media application.
/// </summary>
public partial class SipMediaApplicationCall
{
private string _transactionId;
/// <summary>
/// Gets and sets the property TransactionId.
/// <para>
/// The call's transaction ID.
/// </para>
/// </summary>
public string TransactionId
{
get { return this._transactionId; }
set { this._transactionId = value; }
}
// Check to see if TransactionId property is set
internal bool IsSetTransactionId()
{
return this._transactionId != 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 endpoint assigned to a SIP media application.
/// </summary>
public partial class SipMediaApplicationEndpoint
{
private string _lambdaArn;
/// <summary>
/// Gets and sets the property LambdaArn.
/// <para>
/// Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function
/// must be created in the same AWS Region as the SIP media application.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Max=10000)]
public string LambdaArn
{
get { return this._lambdaArn; }
set { this._lambdaArn = value; }
}
// Check to see if LambdaArn property is set
internal bool IsSetLambdaArn()
{
return this._lambdaArn != 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>
/// The logging configuration of a SIP media application.
/// </summary>
public partial class SipMediaApplicationLoggingConfiguration
{
private bool? _enableSipMediaApplicationMessageLogs;
/// <summary>
/// Gets and sets the property EnableSipMediaApplicationMessageLogs.
/// <para>
/// Enables message logging for the specified SIP media application.
/// </para>
/// </summary>
public bool EnableSipMediaApplicationMessageLogs
{
get { return this._enableSipMediaApplicationMessageLogs.GetValueOrDefault(); }
set { this._enableSipMediaApplicationMessageLogs = value; }
}
// Check to see if EnableSipMediaApplicationMessageLogs property is set
internal bool IsSetEnableSipMediaApplicationMessageLogs()
{
return this._enableSipMediaApplicationMessageLogs.HasValue;
}
}
}
| 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 details of a SIP rule, including name, triggers, and target applications. An AWS
/// account can have multiple SIP rules.
/// </summary>
public partial class SipRule
{
private DateTime? _createdTimestamp;
private bool? _disabled;
private string _name;
private string _sipRuleId;
private List<SipRuleTargetApplication> _targetApplications = new List<SipRuleTargetApplication>();
private SipRuleTriggerType _triggerType;
private string _triggerValue;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The time at which the SIP rule was created, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// Indicates whether the SIP rule is enabled or disabled. You must disable a rule before
/// you can delete it.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// A SIP rule's name.
/// </para>
/// </summary>
[AWSProperty(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 SipRuleId.
/// <para>
/// A SIP rule's ID.
/// </para>
/// </summary>
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;
}
/// <summary>
/// Gets and sets the property TargetApplications.
/// <para>
/// The target SIP media application and other details, such as priority and AWS Region,
/// to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=25)]
public List<SipRuleTargetApplication> TargetApplications
{
get { return this._targetApplications; }
set { this._targetApplications = value; }
}
// Check to see if TargetApplications property is set
internal bool IsSetTargetApplications()
{
return this._targetApplications != null && this._targetApplications.Count > 0;
}
/// <summary>
/// Gets and sets the property TriggerType.
/// <para>
/// The type of trigger set for a SIP rule, either a phone number or a URI request host
/// name.
/// </para>
/// </summary>
public SipRuleTriggerType TriggerType
{
get { return this._triggerType; }
set { this._triggerType = value; }
}
// Check to see if TriggerType property is set
internal bool IsSetTriggerType()
{
return this._triggerType != null;
}
/// <summary>
/// Gets and sets the property TriggerValue.
/// <para>
/// The value set for a SIP rule's trigger type. Either a phone number or a URI hostname.
/// </para>
/// </summary>
public string TriggerValue
{
get { return this._triggerValue; }
set { this._triggerValue = value; }
}
// Check to see if TriggerValue property is set
internal bool IsSetTriggerValue()
{
return this._triggerValue != null;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The time at which the SIP rule was updated, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
}
}
| 196 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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>
/// A target SIP media application and other details, such as priority and AWS Region,
/// to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.
/// </summary>
public partial class SipRuleTargetApplication
{
private string _awsRegion;
private int? _priority;
private string _sipMediaApplicationId;
/// <summary>
/// Gets and sets the property AwsRegion.
/// <para>
/// The AWS Region of a rule's target SIP media application.
/// </para>
/// </summary>
public string AwsRegion
{
get { return this._awsRegion; }
set { this._awsRegion = value; }
}
// Check to see if AwsRegion property is set
internal bool IsSetAwsRegion()
{
return this._awsRegion != null;
}
/// <summary>
/// Gets and sets the property Priority.
/// <para>
/// The priority setting of a rule's target SIP media application.
/// </para>
/// </summary>
[AWSProperty(Min=1)]
public int Priority
{
get { return this._priority.GetValueOrDefault(); }
set { this._priority = value; }
}
// Check to see if Priority property is set
internal bool IsSetPriority()
{
return this._priority.HasValue;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationId.
/// <para>
/// The ID of a rule's target SIP media application.
/// </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;
}
}
}
| 97 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 details of a speaker search task.
/// </summary>
public partial class SpeakerSearchDetails
{
private List<SpeakerSearchResult> _results = new List<SpeakerSearchResult>();
private string _voiceprintGenerationStatus;
/// <summary>
/// Gets and sets the property Results.
/// <para>
/// The result value in the speaker search details.
/// </para>
/// </summary>
public List<SpeakerSearchResult> Results
{
get { return this._results; }
set { this._results = value; }
}
// Check to see if Results property is set
internal bool IsSetResults()
{
return this._results != null && this._results.Count > 0;
}
/// <summary>
/// Gets and sets the property VoiceprintGenerationStatus.
/// <para>
/// The status of a voice print generation operation, <code>VoiceprintGenerationSuccess</code>
/// or <code>VoiceprintGenerationFailure</code>..
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=256)]
public string VoiceprintGenerationStatus
{
get { return this._voiceprintGenerationStatus; }
set { this._voiceprintGenerationStatus = value; }
}
// Check to see if VoiceprintGenerationStatus property is set
internal bool IsSetVoiceprintGenerationStatus()
{
return this._voiceprintGenerationStatus != 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>
/// The result of a speaker search analysis.
/// </summary>
public partial class SpeakerSearchResult
{
private float? _confidenceScore;
private string _voiceProfileId;
/// <summary>
/// Gets and sets the property ConfidenceScore.
/// <para>
/// The confidence score in the speaker search analysis.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=1)]
public float ConfidenceScore
{
get { return this._confidenceScore.GetValueOrDefault(); }
set { this._confidenceScore = value; }
}
// Check to see if ConfidenceScore property is set
internal bool IsSetConfidenceScore()
{
return this._confidenceScore.HasValue;
}
/// <summary>
/// Gets and sets the property VoiceProfileId.
/// <para>
/// The voice profile ID.
/// </para>
/// </summary>
[AWSProperty(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;
}
}
}
| 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>
/// A representation of an asynchronous request to perform speaker search analysis on
/// a Voice Connector call.
/// </summary>
public partial class SpeakerSearchTask
{
private CallDetails _callDetails;
private DateTime? _createdTimestamp;
private SpeakerSearchDetails _speakerSearchDetails;
private string _speakerSearchTaskId;
private string _speakerSearchTaskStatus;
private DateTime? _startedTimestamp;
private string _statusMessage;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property CallDetails.
/// <para>
/// The call details of a speaker search task.
/// </para>
/// </summary>
public CallDetails CallDetails
{
get { return this._callDetails; }
set { this._callDetails = value; }
}
// Check to see if CallDetails property is set
internal bool IsSetCallDetails()
{
return this._callDetails != null;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The time at which a speaker search task was created.
/// </para>
/// </summary>
public DateTime CreatedTimestamp
{
get { return this._createdTimestamp.GetValueOrDefault(); }
set { this._createdTimestamp = value; }
}
// Check to see if CreatedTimestamp property is set
internal bool IsSetCreatedTimestamp()
{
return this._createdTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property SpeakerSearchDetails.
/// <para>
/// The details of a speaker search task.
/// </para>
/// </summary>
public SpeakerSearchDetails SpeakerSearchDetails
{
get { return this._speakerSearchDetails; }
set { this._speakerSearchDetails = value; }
}
// Check to see if SpeakerSearchDetails property is set
internal bool IsSetSpeakerSearchDetails()
{
return this._speakerSearchDetails != null;
}
/// <summary>
/// Gets and sets the property SpeakerSearchTaskId.
/// <para>
/// The speaker search task ID.
/// </para>
/// </summary>
[AWSProperty(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 SpeakerSearchTaskStatus.
/// <para>
/// The status of the speaker search task, <code>IN_QUEUE</code>, <code>IN_PROGRESS</code>,
/// <code>PARTIAL_SUCCESS</code>, <code>SUCCEEDED</code>, <code>FAILED</code>, or <code>STOPPED</code>.
/// </para>
/// </summary>
public string SpeakerSearchTaskStatus
{
get { return this._speakerSearchTaskStatus; }
set { this._speakerSearchTaskStatus = value; }
}
// Check to see if SpeakerSearchTaskStatus property is set
internal bool IsSetSpeakerSearchTaskStatus()
{
return this._speakerSearchTaskStatus != null;
}
/// <summary>
/// Gets and sets the property StartedTimestamp.
/// <para>
/// The time at which the speaker search task began.
/// </para>
/// </summary>
public DateTime StartedTimestamp
{
get { return this._startedTimestamp.GetValueOrDefault(); }
set { this._startedTimestamp = value; }
}
// Check to see if StartedTimestamp property is set
internal bool IsSetStartedTimestamp()
{
return this._startedTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property StatusMessage.
/// <para>
/// A detailed message about the status of a speaker search.
/// </para>
/// </summary>
public string StatusMessage
{
get { return this._statusMessage; }
set { this._statusMessage = value; }
}
// Check to see if StatusMessage property is set
internal bool IsSetStatusMessage()
{
return this._statusMessage != null;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The time at which a speaker search task was updated.
/// </para>
/// </summary>
public DateTime UpdatedTimestamp
{
get { return this._updatedTimestamp.GetValueOrDefault(); }
set { this._updatedTimestamp = value; }
}
// Check to see if UpdatedTimestamp property is set
internal bool IsSetUpdatedTimestamp()
{
return this._updatedTimestamp.HasValue;
}
}
}
| 193 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 StartSpeakerSearchTask operation.
/// Starts a speaker search task.
///
/// <important>
/// <para>
/// Before starting any speaker search tasks, 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>
/// </summary>
public partial class StartSpeakerSearchTaskRequest : AmazonChimeSDKVoiceRequest
{
private CallLegType _callLeg;
private string _clientRequestToken;
private string _transactionId;
private string _voiceConnectorId;
private string _voiceProfileDomainId;
/// <summary>
/// Gets and sets the property CallLeg.
/// <para>
/// Specifies which call leg to stream for speaker search.
/// </para>
/// </summary>
public CallLegType CallLeg
{
get { return this._callLeg; }
set { this._callLeg = value; }
}
// Check to see if CallLeg property is set
internal bool IsSetCallLeg()
{
return this._callLeg != null;
}
/// <summary>
/// Gets and sets the property ClientRequestToken.
/// <para>
/// The unique identifier for the client request. Use a different token for different
/// speaker search tasks.
/// </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 TransactionId.
/// <para>
/// The transaction ID of the call being analyzed.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string TransactionId
{
get { return this._transactionId; }
set { this._transactionId = value; }
}
// Check to see if TransactionId property is set
internal bool IsSetTransactionId()
{
return this._transactionId != 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;
}
/// <summary>
/// Gets and sets the property VoiceProfileDomainId.
/// <para>
/// The ID of the voice profile domain that will store the voice profile.
/// </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;
}
}
}
| 147 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 StartSpeakerSearchTask operation.
/// </summary>
public partial class StartSpeakerSearchTaskResponse : 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 StartVoiceToneAnalysisTask operation.
/// Starts a voice tone analysis task. For more information about voice tone analysis,
/// 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>.
///
/// <important>
/// <para>
/// Before starting any voice tone analysis tasks, 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>
/// </summary>
public partial class StartVoiceToneAnalysisTaskRequest : AmazonChimeSDKVoiceRequest
{
private string _clientRequestToken;
private LanguageCode _languageCode;
private string _transactionId;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property ClientRequestToken.
/// <para>
/// The unique identifier for the client request. Use a different token for different
/// voice tone analysis tasks.
/// </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 LanguageCode.
/// <para>
/// The language code.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public LanguageCode LanguageCode
{
get { return this._languageCode; }
set { this._languageCode = value; }
}
// Check to see if LanguageCode property is set
internal bool IsSetLanguageCode()
{
return this._languageCode != null;
}
/// <summary>
/// Gets and sets the property TransactionId.
/// <para>
/// The transaction ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string TransactionId
{
get { return this._transactionId; }
set { this._transactionId = value; }
}
// Check to see if TransactionId property is set
internal bool IsSetTransactionId()
{
return this._transactionId != 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;
}
}
}
| 130 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 StartVoiceToneAnalysisTask operation.
/// </summary>
public partial class StartVoiceToneAnalysisTaskResponse : 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>
/// Container for the parameters to the StopSpeakerSearchTask operation.
/// Stops a speaker search task.
/// </summary>
public partial class StopSpeakerSearchTaskRequest : AmazonChimeSDKVoiceRequest
{
private string _speakerSearchTaskId;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property SpeakerSearchTaskId.
/// <para>
/// The speaker search task ID.
/// </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 StopSpeakerSearchTask operation.
/// </summary>
public partial class StopSpeakerSearchTaskResponse : 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 StopVoiceToneAnalysisTask operation.
/// Stops a voice tone analysis task.
/// </summary>
public partial class StopVoiceToneAnalysisTaskRequest : AmazonChimeSDKVoiceRequest
{
private string _voiceConnectorId;
private string _voiceToneAnalysisTaskId;
/// <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 analysis 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;
}
}
}
| 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 StopVoiceToneAnalysisTask operation.
/// </summary>
public partial class StopVoiceToneAnalysisTaskResponse : 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>
/// The streaming configuration associated with an Amazon Chime SDK Voice Connector. Specifies
/// whether media streaming is enabled for sending to Amazon Kinesis, and shows the retention
/// period for the Amazon Kinesis data, in hours.
/// </summary>
public partial class StreamingConfiguration
{
private int? _dataRetentionInHours;
private bool? _disabled;
private MediaInsightsConfiguration _mediaInsightsConfiguration;
private List<StreamingNotificationTarget> _streamingNotificationTargets = new List<StreamingNotificationTarget>();
/// <summary>
/// Gets and sets the property DataRetentionInHours.
/// <para>
/// The amount of time, in hours, to the Kinesis data.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0)]
public int DataRetentionInHours
{
get { return this._dataRetentionInHours.GetValueOrDefault(); }
set { this._dataRetentionInHours = value; }
}
// Check to see if DataRetentionInHours property is set
internal bool IsSetDataRetentionInHours()
{
return this._dataRetentionInHours.HasValue;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// When true, streaming to Kinesis is off.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property MediaInsightsConfiguration.
/// <para>
/// The call analytics configuration.
/// </para>
/// </summary>
public MediaInsightsConfiguration MediaInsightsConfiguration
{
get { return this._mediaInsightsConfiguration; }
set { this._mediaInsightsConfiguration = value; }
}
// Check to see if MediaInsightsConfiguration property is set
internal bool IsSetMediaInsightsConfiguration()
{
return this._mediaInsightsConfiguration != null;
}
/// <summary>
/// Gets and sets the property StreamingNotificationTargets.
/// <para>
/// The streaming notification targets.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=3)]
public List<StreamingNotificationTarget> StreamingNotificationTargets
{
get { return this._streamingNotificationTargets; }
set { this._streamingNotificationTargets = value; }
}
// Check to see if StreamingNotificationTargets property is set
internal bool IsSetStreamingNotificationTargets()
{
return this._streamingNotificationTargets != null && this._streamingNotificationTargets.Count > 0;
}
}
}
| 119 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 target recipient for a streaming configuration notification.
/// </summary>
public partial class StreamingNotificationTarget
{
private NotificationTarget _notificationTarget;
/// <summary>
/// Gets and sets the property NotificationTarget.
/// <para>
/// The streaming notification target.
/// </para>
/// </summary>
public NotificationTarget NotificationTarget
{
get { return this._notificationTarget; }
set { this._notificationTarget = value; }
}
// Check to see if NotificationTarget property is set
internal bool IsSetNotificationTarget()
{
return this._notificationTarget != 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>
/// Describes a tag applied to a resource.
/// </summary>
public partial class Tag
{
private string _key;
private string _value;
/// <summary>
/// Gets and sets the property Key.
/// <para>
/// The tag's key.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=128)]
public string Key
{
get { return this._key; }
set { this._key = value; }
}
// Check to see if Key property is set
internal bool IsSetKey()
{
return this._key != null;
}
/// <summary>
/// Gets and sets the property Value.
/// <para>
/// The tag's value.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=0, Max=256)]
public string Value
{
get { return this._value; }
set { this._value = value; }
}
// Check to see if Value property is set
internal bool IsSetValue()
{
return this._value != 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 TagResource operation.
/// Adds a tag to the specified resource.
/// </summary>
public partial class TagResourceRequest : AmazonChimeSDKVoiceRequest
{
private string _resourceARN;
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property ResourceARN.
/// <para>
/// The ARN of the resource being tagged.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=1024)]
public string ResourceARN
{
get { return this._resourceARN; }
set { this._resourceARN = value; }
}
// Check to see if ResourceARN property is set
internal bool IsSetResourceARN()
{
return this._resourceARN != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// A list of the tags being added to the resource.
/// </para>
/// </summary>
[AWSProperty(Required=true, 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;
}
}
}
| 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 TagResource operation.
/// </summary>
public partial class TagResourceResponse : 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>
/// Termination settings enable SIP hosts to make outbound calls using an Amazon Chime
/// SDK Voice Connector.
/// </summary>
public partial class Termination
{
private List<string> _callingRegions = new List<string>();
private List<string> _cidrAllowedList = new List<string>();
private int? _cpsLimit;
private string _defaultPhoneNumber;
private bool? _disabled;
/// <summary>
/// Gets and sets the property CallingRegions.
/// <para>
/// The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
/// </para>
/// </summary>
public List<string> CallingRegions
{
get { return this._callingRegions; }
set { this._callingRegions = value; }
}
// Check to see if CallingRegions property is set
internal bool IsSetCallingRegions()
{
return this._callingRegions != null && this._callingRegions.Count > 0;
}
/// <summary>
/// Gets and sets the property CidrAllowedList.
/// <para>
/// The IP addresses allowed to make calls, in CIDR format.
/// </para>
/// </summary>
public List<string> CidrAllowedList
{
get { return this._cidrAllowedList; }
set { this._cidrAllowedList = value; }
}
// Check to see if CidrAllowedList property is set
internal bool IsSetCidrAllowedList()
{
return this._cidrAllowedList != null && this._cidrAllowedList.Count > 0;
}
/// <summary>
/// Gets and sets the property CpsLimit.
/// <para>
/// The limit on calls per second. Max value based on account service quota. Default value
/// of 1.
/// </para>
/// </summary>
[AWSProperty(Min=1)]
public int CpsLimit
{
get { return this._cpsLimit.GetValueOrDefault(); }
set { this._cpsLimit = value; }
}
// Check to see if CpsLimit property is set
internal bool IsSetCpsLimit()
{
return this._cpsLimit.HasValue;
}
/// <summary>
/// Gets and sets the property DefaultPhoneNumber.
/// <para>
/// The default outbound calling number.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string DefaultPhoneNumber
{
get { return this._defaultPhoneNumber; }
set { this._defaultPhoneNumber = value; }
}
// Check to see if DefaultPhoneNumber property is set
internal bool IsSetDefaultPhoneNumber()
{
return this._defaultPhoneNumber != null;
}
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// When termination is disabled, outbound calls cannot be made.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
}
}
| 137 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 termination health details, including the source IP address and timestamp of the
/// last successful <code>SIP OPTIONS</code> message from your SIP infrastructure.
/// </summary>
public partial class TerminationHealth
{
private string _source;
private DateTime? _timestamp;
/// <summary>
/// Gets and sets the property Source.
/// <para>
/// The source IP address.
/// </para>
/// </summary>
public string Source
{
get { return this._source; }
set { this._source = value; }
}
// Check to see if Source property is set
internal bool IsSetSource()
{
return this._source != null;
}
/// <summary>
/// Gets and sets the property Timestamp.
/// <para>
/// The timestamp, in ISO 8601 format.
/// </para>
/// </summary>
public DateTime Timestamp
{
get { return this._timestamp.GetValueOrDefault(); }
set { this._timestamp = value; }
}
// Check to see if Timestamp property is set
internal bool IsSetTimestamp()
{
return this._timestamp.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>
/// The number of customer requests exceeds the request rate limit.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ThrottledClientException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new ThrottledClientException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ThrottledClientException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ThrottledClientException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ThrottledClientException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ThrottledClientException
/// </summary>
/// <param name="innerException"></param>
public ThrottledClientException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ThrottledClientException
/// </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 ThrottledClientException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ThrottledClientException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ThrottledClientException(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 ThrottledClientException 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 ThrottledClientException(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 client isn't authorized to request a resource.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class UnauthorizedClientException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new UnauthorizedClientException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public UnauthorizedClientException(string message)
: base(message) {}
/// <summary>
/// Construct instance of UnauthorizedClientException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public UnauthorizedClientException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of UnauthorizedClientException
/// </summary>
/// <param name="innerException"></param>
public UnauthorizedClientException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of UnauthorizedClientException
/// </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 UnauthorizedClientException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of UnauthorizedClientException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public UnauthorizedClientException(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 UnauthorizedClientException 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 UnauthorizedClientException(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>
/// A well-formed request couldn't be followed due to semantic errors.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class UnprocessableEntityException : AmazonChimeSDKVoiceException
{
/// <summary>
/// Constructs a new UnprocessableEntityException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public UnprocessableEntityException(string message)
: base(message) {}
/// <summary>
/// Construct instance of UnprocessableEntityException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public UnprocessableEntityException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of UnprocessableEntityException
/// </summary>
/// <param name="innerException"></param>
public UnprocessableEntityException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of UnprocessableEntityException
/// </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 UnprocessableEntityException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of UnprocessableEntityException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public UnprocessableEntityException(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 UnprocessableEntityException 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 UnprocessableEntityException(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>
/// Container for the parameters to the UntagResource operation.
/// Removes tags from a resource.
/// </summary>
public partial class UntagResourceRequest : AmazonChimeSDKVoiceRequest
{
private string _resourceARN;
private List<string> _tagKeys = new List<string>();
/// <summary>
/// Gets and sets the property ResourceARN.
/// <para>
/// The ARN of the resource having its tags removed.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=1024)]
public string ResourceARN
{
get { return this._resourceARN; }
set { this._resourceARN = value; }
}
// Check to see if ResourceARN property is set
internal bool IsSetResourceARN()
{
return this._resourceARN != null;
}
/// <summary>
/// Gets and sets the property TagKeys.
/// <para>
/// The keys of the tags being removed from the resource.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=50)]
public List<string> TagKeys
{
get { return this._tagKeys; }
set { this._tagKeys = value; }
}
// Check to see if TagKeys property is set
internal bool IsSetTagKeys()
{
return this._tagKeys != null && this._tagKeys.Count > 0;
}
}
}
| 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 UntagResource operation.
/// </summary>
public partial class UntagResourceResponse : 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 UpdateGlobalSettings operation.
/// Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
/// </summary>
public partial class UpdateGlobalSettingsRequest : AmazonChimeSDKVoiceRequest
{
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;
}
}
}
| 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>
/// This is the response object from the UpdateGlobalSettings operation.
/// </summary>
public partial class UpdateGlobalSettingsResponse : 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 UpdatePhoneNumber operation.
/// Updates phone number details, such as product type or calling name, for the specified
/// phone number ID. You can update one phone number detail at a time. For example, you
/// can update either the product type or the calling name in one action.
///
///
/// <para>
/// For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media Application
/// Dial-In product type.
/// </para>
///
/// <para>
/// Updates to outbound calling names can take 72 hours to complete. Pending updates to
/// outbound calling names must be complete before you can request another update.
/// </para>
/// </summary>
public partial class UpdatePhoneNumberRequest : AmazonChimeSDKVoiceRequest
{
private string _callingName;
private string _phoneNumberId;
private PhoneNumberProductType _productType;
/// <summary>
/// Gets and sets the property CallingName.
/// <para>
/// The outbound calling name associated with the phone number.
/// </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 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;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The product type.
/// </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;
}
}
}
| 111 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 phone number ID, product type, or calling name fields to update, used with the
/// <a>BatchUpdatePhoneNumber</a> and <a>UpdatePhoneNumber</a> actions.
/// </summary>
public partial class UpdatePhoneNumberRequestItem
{
private string _callingName;
private string _phoneNumberId;
private PhoneNumberProductType _productType;
/// <summary>
/// Gets and sets the property CallingName.
/// <para>
/// The outbound calling name to update.
/// </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 PhoneNumberId.
/// <para>
/// The phone number ID to update.
/// </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;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The product type to update.
/// </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;
}
}
}
| 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 UpdatePhoneNumber operation.
/// </summary>
public partial class UpdatePhoneNumberResponse : AmazonWebServiceResponse
{
private PhoneNumber _phoneNumber;
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The updated 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 UpdatePhoneNumberSettings operation.
/// Updates the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name. You can update the default outbound calling name once
/// every seven days. Outbound calling names can take up to 72 hours to update.
/// </summary>
public partial class UpdatePhoneNumberSettingsRequest : AmazonChimeSDKVoiceRequest
{
private string _callingName;
/// <summary>
/// Gets and sets the property CallingName.
/// <para>
/// The default outbound calling name for the account.
/// </para>
/// </summary>
[AWSProperty(Required=true, 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;
}
}
}
| 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 UpdatePhoneNumberSettings operation.
/// </summary>
public partial class UpdatePhoneNumberSettingsResponse : 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 UpdateProxySession operation.
/// Updates the specified proxy session details, such as voice or SMS capabilities.
/// </summary>
public partial class UpdateProxySessionRequest : AmazonChimeSDKVoiceRequest
{
private List<string> _capabilities = new List<string>();
private int? _expiryMinutes;
private string _proxySessionId;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Capabilities.
/// <para>
/// The proxy session capabilities.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> Capabilities
{
get { return this._capabilities; }
set { this._capabilities = value; }
}
// Check to see if Capabilities property is set
internal bool IsSetCapabilities()
{
return this._capabilities != null && this._capabilities.Count > 0;
}
/// <summary>
/// Gets and sets the property ExpiryMinutes.
/// <para>
/// The number of minutes allowed for the proxy session.
/// </para>
/// </summary>
[AWSProperty(Min=1)]
public int ExpiryMinutes
{
get { return this._expiryMinutes.GetValueOrDefault(); }
set { this._expiryMinutes = value; }
}
// Check to see if ExpiryMinutes property is set
internal bool IsSetExpiryMinutes()
{
return this._expiryMinutes.HasValue;
}
/// <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;
}
}
}
| 119 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 UpdateProxySession operation.
/// </summary>
public partial class UpdateProxySessionResponse : AmazonWebServiceResponse
{
private ProxySession _proxySession;
/// <summary>
/// Gets and sets the property ProxySession.
/// <para>
/// The updated 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 UpdateSipMediaApplicationCall operation.
/// Invokes the AWS Lambda function associated with the SIP media application and transaction
/// ID in an update request. The Lambda function can then return a new set of actions.
/// </summary>
public partial class UpdateSipMediaApplicationCallRequest : AmazonChimeSDKVoiceRequest
{
private Dictionary<string, string> _arguments = new Dictionary<string, string>();
private string _sipMediaApplicationId;
private string _transactionId;
/// <summary>
/// Gets and sets the property Arguments.
/// <para>
/// Arguments made available to the Lambda function as part of the <code>CALL_UPDATE_REQUESTED</code>
/// event. Can contain 0-20 key-value pairs.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=20)]
public Dictionary<string, string> Arguments
{
get { return this._arguments; }
set { this._arguments = value; }
}
// Check to see if Arguments property is set
internal bool IsSetArguments()
{
return this._arguments != null && this._arguments.Count > 0;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationId.
/// <para>
/// The ID of the SIP media application handling the call.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string SipMediaApplicationId
{
get { return this._sipMediaApplicationId; }
set { this._sipMediaApplicationId = value; }
}
// Check to see if SipMediaApplicationId property is set
internal bool IsSetSipMediaApplicationId()
{
return this._sipMediaApplicationId != null;
}
/// <summary>
/// Gets and sets the property TransactionId.
/// <para>
/// The ID of the call transaction.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string TransactionId
{
get { return this._transactionId; }
set { this._transactionId = value; }
}
// Check to see if TransactionId property is set
internal bool IsSetTransactionId()
{
return this._transactionId != null;
}
}
}
| 101 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the 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 UpdateSipMediaApplicationCall operation.
/// </summary>
public partial class UpdateSipMediaApplicationCallResponse : AmazonWebServiceResponse
{
private SipMediaApplicationCall _sipMediaApplicationCall;
/// <summary>
/// Gets and sets the property SipMediaApplicationCall.
/// <para>
/// A <code>Call</code> instance for a SIP media application.
/// </para>
/// </summary>
public SipMediaApplicationCall SipMediaApplicationCall
{
get { return this._sipMediaApplicationCall; }
set { this._sipMediaApplicationCall = value; }
}
// Check to see if SipMediaApplicationCall property is set
internal bool IsSetSipMediaApplicationCall()
{
return this._sipMediaApplicationCall != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 UpdateSipMediaApplication operation.
/// Updates the details of the specified SIP media application.
/// </summary>
public partial class UpdateSipMediaApplicationRequest : AmazonChimeSDKVoiceRequest
{
private List<SipMediaApplicationEndpoint> _endpoints = new List<SipMediaApplicationEndpoint>();
private string _name;
private string _sipMediaApplicationId;
/// <summary>
/// Gets and sets the property Endpoints.
/// <para>
/// The new set of endpoints for the specified SIP media application.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1)]
public List<SipMediaApplicationEndpoint> Endpoints
{
get { return this._endpoints; }
set { this._endpoints = value; }
}
// Check to see if Endpoints property is set
internal bool IsSetEndpoints()
{
return this._endpoints != null && this._endpoints.Count > 0;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The new name for the specified SIP media application.
/// </para>
/// </summary>
[AWSProperty(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 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;
}
}
}
| 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>
/// This is the response object from the UpdateSipMediaApplication operation.
/// </summary>
public partial class UpdateSipMediaApplicationResponse : AmazonWebServiceResponse
{
private SipMediaApplication _sipMediaApplication;
/// <summary>
/// Gets and sets the property SipMediaApplication.
/// <para>
/// The updated SIP media application’s details.
/// </para>
/// </summary>
public SipMediaApplication SipMediaApplication
{
get { return this._sipMediaApplication; }
set { this._sipMediaApplication = value; }
}
// Check to see if SipMediaApplication property is set
internal bool IsSetSipMediaApplication()
{
return this._sipMediaApplication != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-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 UpdateSipRule operation.
/// Updates the details of the specified SIP rule.
/// </summary>
public partial class UpdateSipRuleRequest : AmazonChimeSDKVoiceRequest
{
private bool? _disabled;
private string _name;
private string _sipRuleId;
private List<SipRuleTargetApplication> _targetApplications = new List<SipRuleTargetApplication>();
/// <summary>
/// Gets and sets the property Disabled.
/// <para>
/// The new value that indicates whether the rule is disabled.
/// </para>
/// </summary>
public bool Disabled
{
get { return this._disabled.GetValueOrDefault(); }
set { this._disabled = value; }
}
// Check to see if Disabled property is set
internal bool IsSetDisabled()
{
return this._disabled.HasValue;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The new name for the specified SIP rule.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
/// <summary>
/// Gets and sets the property 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;
}
/// <summary>
/// Gets and sets the property TargetApplications.
/// <para>
/// The new list of target applications.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=25)]
public List<SipRuleTargetApplication> TargetApplications
{
get { return this._targetApplications; }
set { this._targetApplications = value; }
}
// Check to see if TargetApplications property is set
internal bool IsSetTargetApplications()
{
return this._targetApplications != null && this._targetApplications.Count > 0;
}
}
}
| 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 UpdateSipRule operation.
/// </summary>
public partial class UpdateSipRuleResponse : AmazonWebServiceResponse
{
private SipRule _sipRule;
/// <summary>
/// Gets and sets the property SipRule.
/// <para>
/// The updated 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.