repo_name
stringlengths 1
52
| repo_creator
stringclasses 6
values | programming_language
stringclasses 4
values | code
stringlengths 0
9.68M
| num_lines
int64 1
234k
|
---|---|---|---|---|
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListChannels operation.
/// </summary>
public partial class ListChannelsResponse : AmazonWebServiceResponse
{
private List<ChannelSummary> _channels = new List<ChannelSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property Channels.
/// <para>
/// The information about each channel.
/// </para>
/// </summary>
public List<ChannelSummary> Channels
{
get { return this._channels; }
set { this._channels = value; }
}
// Check to see if Channels property is set
internal bool IsSetChannels()
{
return this._channels != null && this._channels.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token returned from previous API requests until the number of channels is reached.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=0, Max=2048)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListMediaCapturePipelines operation.
/// Returns a list of media capture pipelines.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_media-pipelines-chime_ListMediaCapturePipelines.html">ListMediaCapturePipelines</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListMediaCapturePipelinesRequest : AmazonChimeRequest
{
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. Valid Range: 1 - 99.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token 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;
}
}
}
| 92 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListMediaCapturePipelines operation.
/// </summary>
public partial class ListMediaCapturePipelinesResponse : AmazonWebServiceResponse
{
private List<MediaCapturePipeline> _mediaCapturePipelines = new List<MediaCapturePipeline>();
private string _nextToken;
/// <summary>
/// Gets and sets the property MediaCapturePipelines.
/// <para>
/// The media capture pipeline objects in the list.
/// </para>
/// </summary>
public List<MediaCapturePipeline> MediaCapturePipelines
{
get { return this._mediaCapturePipelines; }
set { this._mediaCapturePipelines = value; }
}
// Check to see if MediaCapturePipelines property is set
internal bool IsSetMediaCapturePipelines()
{
return this._mediaCapturePipelines != null && this._mediaCapturePipelines.Count > 0;
}
/// <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;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListMeetings operation.
/// Lists up to 100 active Amazon Chime SDK meetings.
///
/// <important>
/// <para>
/// ListMeetings is not supported in the Amazon Chime SDK Meetings Namespace. Update your
/// application to remove calls to this API.
/// </para>
/// </important>
/// <para>
/// For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meetings-sdk.html">Using
/// the Amazon Chime SDK</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </summary>
public partial class ListMeetingsRequest : AmazonChimeRequest
{
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=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 89 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListMeetings operation.
/// </summary>
public partial class ListMeetingsResponse : AmazonWebServiceResponse
{
private List<Meeting> _meetings = new List<Meeting>();
private string _nextToken;
/// <summary>
/// Gets and sets the property Meetings.
/// <para>
/// The Amazon Chime SDK meeting information.
/// </para>
/// </summary>
public List<Meeting> Meetings
{
get { return this._meetings; }
set { this._meetings = value; }
}
// Check to see if Meetings property is set
internal bool IsSetMeetings()
{
return this._meetings != null && this._meetings.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListMeetingTags operation.
/// Lists the tags applied to an Amazon Chime SDK meeting resource.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListTagsForResource.html">ListTagsForResource</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListMeetingTagsRequest : AmazonChimeRequest
{
private string _meetingId;
/// <summary>
/// Gets and sets the property MeetingId.
/// <para>
/// The Amazon Chime SDK meeting ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string MeetingId
{
get { return this._meetingId; }
set { this._meetingId = value; }
}
// Check to see if MeetingId property is set
internal bool IsSetMeetingId()
{
return this._meetingId != null;
}
}
}
| 73 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListMeetingTags operation.
/// </summary>
public partial class ListMeetingTagsResponse : AmazonWebServiceResponse
{
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// A list of tag key-value pairs.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListPhoneNumberOrders operation.
/// Lists the phone number orders for the administrator's Amazon Chime account.
/// </summary>
public partial class ListPhoneNumberOrdersRequest : AmazonChimeRequest
{
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=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 78 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListPhoneNumberOrders operation.
/// </summary>
public partial class ListPhoneNumberOrdersResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<PhoneNumberOrder> _phoneNumberOrders = new List<PhoneNumberOrder>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property PhoneNumberOrders.
/// <para>
/// The phone number order details.
/// </para>
/// </summary>
public List<PhoneNumberOrder> PhoneNumberOrders
{
get { return this._phoneNumberOrders; }
set { this._phoneNumberOrders = value; }
}
// Check to see if PhoneNumberOrders property is set
internal bool IsSetPhoneNumberOrders()
{
return this._phoneNumberOrders != null && this._phoneNumberOrders.Count > 0;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListPhoneNumbers operation.
/// Lists the phone numbers for the specified Amazon Chime account, Amazon Chime user,
/// Amazon Chime Voice Connector, or Amazon Chime Voice Connector group.
/// </summary>
public partial class ListPhoneNumbersRequest : AmazonChimeRequest
{
private PhoneNumberAssociationName _filterName;
private string _filterValue;
private int? _maxResults;
private string _nextToken;
private PhoneNumberProductType _productType;
private PhoneNumberStatus _status;
/// <summary>
/// Gets and sets the property FilterName.
/// <para>
/// The filter to use to limit the number of results.
/// </para>
/// </summary>
public PhoneNumberAssociationName FilterName
{
get { return this._filterName; }
set { this._filterName = value; }
}
// Check to see if FilterName property is set
internal bool IsSetFilterName()
{
return this._filterName != null;
}
/// <summary>
/// Gets and sets the property FilterValue.
/// <para>
/// The value to use for the filter.
/// </para>
/// </summary>
public string FilterValue
{
get { return this._filterValue; }
set { this._filterValue = value; }
}
// Check to see if FilterValue property is set
internal bool IsSetFilterValue()
{
return this._filterValue != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property ProductType.
/// <para>
/// The phone number 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 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;
}
}
}
| 155 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListPhoneNumbers operation.
/// </summary>
public partial class ListPhoneNumbersResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<PhoneNumber> _phoneNumbers = new List<PhoneNumber>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property PhoneNumbers.
/// <para>
/// The phone number details.
/// </para>
/// </summary>
public List<PhoneNumber> PhoneNumbers
{
get { return this._phoneNumbers; }
set { this._phoneNumbers = value; }
}
// Check to see if PhoneNumbers property is set
internal bool IsSetPhoneNumbers()
{
return this._phoneNumbers != null && this._phoneNumbers.Count > 0;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListProxySessions operation.
/// Lists the proxy sessions for the specified Amazon Chime Voice Connector.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListProxySessions.html">ListProxySessions</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListProxySessionsRequest : AmazonChimeRequest
{
private int? _maxResults;
private string _nextToken;
private ProxySessionStatus _status;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The proxy session status.
/// </para>
/// </summary>
public ProxySessionStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The Amazon Chime voice connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=128)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 132 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListProxySessions operation.
/// </summary>
public partial class ListProxySessionsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<ProxySession> _proxySessions = new List<ProxySession>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property ProxySessions.
/// <para>
/// The proxy session details.
/// </para>
/// </summary>
public List<ProxySession> ProxySessions
{
get { return this._proxySessions; }
set { this._proxySessions = value; }
}
// Check to see if ProxySessions property is set
internal bool IsSetProxySessions()
{
return this._proxySessions != null && this._proxySessions.Count > 0;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListRoomMemberships operation.
/// Lists the membership details for the specified room in an Amazon Chime Enterprise
/// account, such as the members' IDs, email addresses, and names.
/// </summary>
public partial class ListRoomMembershipsRequest : AmazonChimeRequest
{
private string _accountId;
private int? _maxResults;
private string _nextToken;
private string _roomId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property RoomId.
/// <para>
/// The room ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string RoomId
{
get { return this._roomId; }
set { this._roomId = value; }
}
// Check to see if RoomId property is set
internal bool IsSetRoomId()
{
return this._roomId != null;
}
}
}
| 119 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListRoomMemberships operation.
/// </summary>
public partial class ListRoomMembershipsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<RoomMembership> _roomMemberships = new List<RoomMembership>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property RoomMemberships.
/// <para>
/// The room membership details.
/// </para>
/// </summary>
public List<RoomMembership> RoomMemberships
{
get { return this._roomMemberships; }
set { this._roomMemberships = value; }
}
// Check to see if RoomMemberships property is set
internal bool IsSetRoomMemberships()
{
return this._roomMemberships != null && this._roomMemberships.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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListRooms operation.
/// Lists the room details for the specified Amazon Chime Enterprise account. Optionally,
/// filter the results by a member ID (user ID or bot ID) to see a list of rooms that
/// the member belongs to.
/// </summary>
public partial class ListRoomsRequest : AmazonChimeRequest
{
private string _accountId;
private int? _maxResults;
private string _memberId;
private string _nextToken;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property MemberId.
/// <para>
/// The member ID (user ID or bot ID).
/// </para>
/// </summary>
public string MemberId
{
get { return this._memberId; }
set { this._memberId = value; }
}
// Check to see if MemberId property is set
internal bool IsSetMemberId()
{
return this._memberId != null;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 119 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListRooms operation.
/// </summary>
public partial class ListRoomsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<Room> _rooms = new List<Room>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property Rooms.
/// <para>
/// The room details.
/// </para>
/// </summary>
public List<Room> Rooms
{
get { return this._rooms; }
set { this._rooms = value; }
}
// Check to see if Rooms property is set
internal bool IsSetRooms()
{
return this._rooms != null && this._rooms.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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListSipMediaApplications operation.
/// Lists the SIP media applications under the administrator's AWS account.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListSipMediaApplications.html">ListSipMediaApplications</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListSipMediaApplicationsRequest : AmazonChimeRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call. Defaults to 100.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 93 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListSipMediaApplications operation.
/// </summary>
public partial class ListSipMediaApplicationsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SipMediaApplication> _sipMediaApplications = new List<SipMediaApplication>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipMediaApplications.
/// <para>
/// List of SIP media applications and application details.
/// </para>
/// </summary>
public List<SipMediaApplication> SipMediaApplications
{
get { return this._sipMediaApplications; }
set { this._sipMediaApplications = value; }
}
// Check to see if SipMediaApplications property is set
internal bool IsSetSipMediaApplications()
{
return this._sipMediaApplications != null && this._sipMediaApplications.Count > 0;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListSipRules operation.
/// Lists the SIP rules under the administrator's AWS account.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListSipRules.html">ListSipRules</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListSipRulesRequest : AmazonChimeRequest
{
private int? _maxResults;
private string _nextToken;
private string _sipMediaApplicationId;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call. Defaults to 100.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipMediaApplicationId.
/// <para>
/// The SIP media application ID.
/// </para>
/// </summary>
public string SipMediaApplicationId
{
get { return this._sipMediaApplicationId; }
set { this._sipMediaApplicationId = value; }
}
// Check to see if SipMediaApplicationId property is set
internal bool IsSetSipMediaApplicationId()
{
return this._sipMediaApplicationId != null;
}
}
}
| 112 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListSipRules operation.
/// </summary>
public partial class ListSipRulesResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SipRule> _sipRules = new List<SipRule>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
[AWSProperty(Max=65535)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SipRules.
/// <para>
/// List of SIP rules and rule details.
/// </para>
/// </summary>
public List<SipRule> SipRules
{
get { return this._sipRules; }
set { this._sipRules = value; }
}
// Check to see if SipRules property is set
internal bool IsSetSipRules()
{
return this._sipRules != null && this._sipRules.Count > 0;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListSupportedPhoneNumberCountries operation.
/// Lists supported phone number countries.
/// </summary>
public partial class ListSupportedPhoneNumberCountriesRequest : AmazonChimeRequest
{
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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListTagsForResource operation.
/// Lists the tags applied to an Amazon Chime SDK meeting and messaging resources.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the applicable latest version in the Amazon Chime SDK.
/// </para>
/// <ul> <li>
/// <para>
/// For meetings: <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_ListTagsForResource.html">ListTagsForResource</a>.
/// </para>
/// </li> <li>
/// <para>
/// For messaging: <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListTagsForResource.html">ListTagsForResource</a>.
/// </para>
/// </li> </ul>
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListTagsForResourceRequest : AmazonChimeRequest
{
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;
}
}
}
| 80 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListTagsForResource operation.
/// </summary>
public partial class ListTagsForResourceResponse : AmazonWebServiceResponse
{
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// A list of tag-key value pairs.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListUsers operation.
/// Lists the users that belong to the specified Amazon Chime account. You can specify
/// an email address to list only the user that the email address belongs to.
/// </summary>
public partial class ListUsersRequest : AmazonChimeRequest
{
private string _accountId;
private int? _maxResults;
private string _nextToken;
private string _userEmail;
private UserType _userType;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return in a single call. Defaults to 100.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=200)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property UserEmail.
/// <para>
/// Optional. The user email address used to filter results. Maximum 1.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string UserEmail
{
get { return this._userEmail; }
set { this._userEmail = value; }
}
// Check to see if UserEmail property is set
internal bool IsSetUserEmail()
{
return this._userEmail != null;
}
/// <summary>
/// Gets and sets the property UserType.
/// <para>
/// The user type.
/// </para>
/// </summary>
public UserType UserType
{
get { return this._userType; }
set { this._userType = value; }
}
// Check to see if UserType property is set
internal bool IsSetUserType()
{
return this._userType != null;
}
}
}
| 138 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ListUsers operation.
/// </summary>
public partial class ListUsersResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<User> _users = new List<User>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property Users.
/// <para>
/// List of users and user details.
/// </para>
/// </summary>
public List<User> Users
{
get { return this._users; }
set { this._users = value; }
}
// Check to see if Users property is set
internal bool IsSetUsers()
{
return this._users != null && this._users.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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListVoiceConnectorGroups operation.
/// Lists the Amazon Chime Voice Connector groups for the administrator's AWS account.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectorGroups.html">ListVoiceConnectorGroups</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListVoiceConnectorGroupsRequest : AmazonChimeRequest
{
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=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 92 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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 to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property VoiceConnectorGroups.
/// <para>
/// The details of the Amazon Chime 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListVoiceConnectors operation.
/// Lists the Amazon Chime Voice Connectors for the administrator's AWS account.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectors.html">ListVoiceConnectors</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListVoiceConnectorsRequest : AmazonChimeRequest
{
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=99)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
}
| 92 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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 to use to retrieve the next page of results.
/// </para>
/// </summary>
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property VoiceConnectors.
/// <para>
/// The details of the Amazon Chime 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ListVoiceConnectorTerminationCredentials operation.
/// Lists the SIP credentials for the specified Amazon Chime Voice Connector.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_ListVoiceConnectorTerminationCredentials.html">ListVoiceConnectorTerminationCredentials</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class ListVoiceConnectorTerminationCredentialsRequest : AmazonChimeRequest
{
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property VoiceConnectorId.
/// <para>
/// The Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 73 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The logging configuration associated with an Amazon Chime Voice Connector. Specifies
/// whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
/// </summary>
public partial class LoggingConfiguration
{
private bool? _enableMediaMetricLogs;
private bool? _enableSIPLogs;
/// <summary>
/// Gets and sets the property EnableMediaMetricLogs.
/// <para>
/// Boolean that enables logging of detailed media metrics for Voice Connectors to Amazon
/// CloudWatch logs.
/// </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 SIP message logs to Amazon CloudWatch logs.
/// </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;
}
}
}
| 78 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the LogoutUser operation.
/// Logs out the specified user from all of the devices they are currently logged into.
/// </summary>
public partial class LogoutUserRequest : AmazonChimeRequest
{
private string _accountId;
private string _userId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property UserId.
/// <para>
/// The user ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string UserId
{
get { return this._userId; }
set { this._userId = value; }
}
// Check to see if UserId property is set
internal bool IsSetUserId()
{
return this._userId != null;
}
}
}
| 79 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the LogoutUser operation.
/// </summary>
public partial class LogoutUserResponse : AmazonWebServiceResponse
{
}
}
| 38 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// A media capture pipeline object consisting of an ID, source type, source ARN, a sink
/// type, a sink ARN, and a configuration object.
/// </summary>
public partial class MediaCapturePipeline
{
private ChimeSdkMeetingConfiguration _chimeSdkMeetingConfiguration;
private DateTime? _createdTimestamp;
private string _mediaPipelineId;
private string _sinkArn;
private MediaPipelineSinkType _sinkType;
private string _sourceArn;
private MediaPipelineSourceType _sourceType;
private MediaPipelineStatus _status;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property ChimeSdkMeetingConfiguration.
/// <para>
/// The configuration for a specified media capture pipeline. <code>SourceType</code>
/// must be <code>ChimeSdkMeeting</code>.
/// </para>
/// </summary>
public ChimeSdkMeetingConfiguration ChimeSdkMeetingConfiguration
{
get { return this._chimeSdkMeetingConfiguration; }
set { this._chimeSdkMeetingConfiguration = value; }
}
// Check to see if ChimeSdkMeetingConfiguration property is set
internal bool IsSetChimeSdkMeetingConfiguration()
{
return this._chimeSdkMeetingConfiguration != null;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The time at which the capture pipeline 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 MediaPipelineId.
/// <para>
/// The ID of a media capture pipeline.
/// </para>
/// </summary>
public string MediaPipelineId
{
get { return this._mediaPipelineId; }
set { this._mediaPipelineId = value; }
}
// Check to see if MediaPipelineId property is set
internal bool IsSetMediaPipelineId()
{
return this._mediaPipelineId != null;
}
/// <summary>
/// Gets and sets the property SinkArn.
/// <para>
/// ARN of the destination to which the media artifacts are saved.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=1, Max=1024)]
public string SinkArn
{
get { return this._sinkArn; }
set { this._sinkArn = value; }
}
// Check to see if SinkArn property is set
internal bool IsSetSinkArn()
{
return this._sinkArn != null;
}
/// <summary>
/// Gets and sets the property SinkType.
/// <para>
/// Destination type to which the media artifacts are saved. You must use an S3 Bucket.
/// </para>
/// </summary>
public MediaPipelineSinkType SinkType
{
get { return this._sinkType; }
set { this._sinkType = value; }
}
// Check to see if SinkType property is set
internal bool IsSetSinkType()
{
return this._sinkType != null;
}
/// <summary>
/// Gets and sets the property SourceArn.
/// <para>
/// ARN of the source from which the media artifacts will be saved.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=1, Max=1024)]
public string SourceArn
{
get { return this._sourceArn; }
set { this._sourceArn = value; }
}
// Check to see if SourceArn property is set
internal bool IsSetSourceArn()
{
return this._sourceArn != null;
}
/// <summary>
/// Gets and sets the property SourceType.
/// <para>
/// Source type from which media artifacts are saved. You must use <code>ChimeMeeting</code>.
/// </para>
/// </summary>
public MediaPipelineSourceType SourceType
{
get { return this._sourceType; }
set { this._sourceType = value; }
}
// Check to see if SourceType property is set
internal bool IsSetSourceType()
{
return this._sourceType != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of the media capture pipeline.
/// </para>
/// </summary>
public MediaPipelineStatus 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 time at which the capture pipeline 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;
}
}
}
| 213 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// A set of endpoints used by clients to connect to the media service group for an Amazon
/// Chime SDK meeting.
/// </summary>
public partial class MediaPlacement
{
private string _audioFallbackUrl;
private string _audioHostUrl;
private string _eventIngestionUrl;
private string _screenDataUrl;
private string _screenSharingUrl;
private string _screenViewingUrl;
private string _signalingUrl;
private string _turnControlUrl;
/// <summary>
/// Gets and sets the property AudioFallbackUrl.
/// <para>
/// The audio fallback URL.
/// </para>
/// </summary>
[AWSProperty(Max=4096)]
public string AudioFallbackUrl
{
get { return this._audioFallbackUrl; }
set { this._audioFallbackUrl = value; }
}
// Check to see if AudioFallbackUrl property is set
internal bool IsSetAudioFallbackUrl()
{
return this._audioFallbackUrl != null;
}
/// <summary>
/// Gets and sets the property AudioHostUrl.
/// <para>
/// The audio host URL.
/// </para>
/// </summary>
[AWSProperty(Max=4096)]
public string AudioHostUrl
{
get { return this._audioHostUrl; }
set { this._audioHostUrl = value; }
}
// Check to see if AudioHostUrl property is set
internal bool IsSetAudioHostUrl()
{
return this._audioHostUrl != null;
}
/// <summary>
/// Gets and sets the property EventIngestionUrl.
/// <para>
/// The event ingestion URL to which you send client meeting events.
/// </para>
/// </summary>
[AWSProperty(Max=4096)]
public string EventIngestionUrl
{
get { return this._eventIngestionUrl; }
set { this._eventIngestionUrl = value; }
}
// Check to see if EventIngestionUrl property is set
internal bool IsSetEventIngestionUrl()
{
return this._eventIngestionUrl != null;
}
/// <summary>
/// Gets and sets the property ScreenDataUrl.
/// <para>
/// The screen data URL.
/// </para>
/// <important>
/// <para>
/// <b>This parameter is is no longer supported and no longer used by the Amazon Chime
/// SDK.</b>
/// </para>
/// </important>
/// </summary>
[AWSProperty(Max=4096)]
public string ScreenDataUrl
{
get { return this._screenDataUrl; }
set { this._screenDataUrl = value; }
}
// Check to see if ScreenDataUrl property is set
internal bool IsSetScreenDataUrl()
{
return this._screenDataUrl != null;
}
/// <summary>
/// Gets and sets the property ScreenSharingUrl.
/// <para>
/// The screen sharing URL.
/// </para>
/// <important>
/// <para>
/// <b>This parameter is is no longer supported and no longer used by the Amazon Chime
/// SDK.</b>.
/// </para>
/// </important>
/// </summary>
[AWSProperty(Max=4096)]
public string ScreenSharingUrl
{
get { return this._screenSharingUrl; }
set { this._screenSharingUrl = value; }
}
// Check to see if ScreenSharingUrl property is set
internal bool IsSetScreenSharingUrl()
{
return this._screenSharingUrl != null;
}
/// <summary>
/// Gets and sets the property ScreenViewingUrl.
/// <para>
/// The screen viewing URL.
/// </para>
/// <important>
/// <para>
/// <b>This parameter is is no longer supported and no longer used by the Amazon Chime
/// SDK.</b>
/// </para>
/// </important>
/// </summary>
[AWSProperty(Max=4096)]
public string ScreenViewingUrl
{
get { return this._screenViewingUrl; }
set { this._screenViewingUrl = value; }
}
// Check to see if ScreenViewingUrl property is set
internal bool IsSetScreenViewingUrl()
{
return this._screenViewingUrl != null;
}
/// <summary>
/// Gets and sets the property SignalingUrl.
/// <para>
/// The signaling URL.
/// </para>
/// </summary>
[AWSProperty(Max=4096)]
public string SignalingUrl
{
get { return this._signalingUrl; }
set { this._signalingUrl = value; }
}
// Check to see if SignalingUrl property is set
internal bool IsSetSignalingUrl()
{
return this._signalingUrl != null;
}
/// <summary>
/// Gets and sets the property TurnControlUrl.
/// <para>
/// The turn control URL.
/// </para>
/// <important>
/// <para>
/// <b>This parameter is is no longer supported and no longer used by the Amazon Chime
/// SDK.</b>
/// </para>
/// </important>
/// </summary>
[AWSProperty(Max=4096)]
public string TurnControlUrl
{
get { return this._turnControlUrl; }
set { this._turnControlUrl = value; }
}
// Check to see if TurnControlUrl property is set
internal bool IsSetTurnControlUrl()
{
return this._turnControlUrl != null;
}
}
}
| 223 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// A meeting created using the Amazon Chime SDK.
/// </summary>
public partial class Meeting
{
private string _externalMeetingId;
private MediaPlacement _mediaPlacement;
private string _mediaRegion;
private string _meetingId;
/// <summary>
/// Gets and sets the property ExternalMeetingId.
/// <para>
/// The external meeting ID.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=2, Max=64)]
public string ExternalMeetingId
{
get { return this._externalMeetingId; }
set { this._externalMeetingId = value; }
}
// Check to see if ExternalMeetingId property is set
internal bool IsSetExternalMeetingId()
{
return this._externalMeetingId != null;
}
/// <summary>
/// Gets and sets the property MediaPlacement.
/// <para>
/// The media placement for the meeting.
/// </para>
/// </summary>
public MediaPlacement MediaPlacement
{
get { return this._mediaPlacement; }
set { this._mediaPlacement = value; }
}
// Check to see if MediaPlacement property is set
internal bool IsSetMediaPlacement()
{
return this._mediaPlacement != null;
}
/// <summary>
/// Gets and sets the property MediaRegion.
/// <para>
/// The Region in which you create the meeting. Available values: <code>af-south-1</code>,
/// <code>ap-northeast-1</code>, <code>ap-northeast-2</code>, <code>ap-south-1</code>,
/// <code>ap-southeast-1</code>, <code>ap-southeast-2</code>, <code>ca-central-1</code>,
/// <code>eu-central-1</code>, <code>eu-north-1</code>, <code>eu-south-1</code>, <code>eu-west-1</code>,
/// <code>eu-west-2</code>, <code>eu-west-3</code>, <code>sa-east-1</code>, <code>us-east-1</code>,
/// <code>us-east-2</code>, <code>us-west-1</code>, <code>us-west-2</code>.
/// </para>
/// </summary>
public string MediaRegion
{
get { return this._mediaRegion; }
set { this._mediaRegion = value; }
}
// Check to see if MediaRegion property is set
internal bool IsSetMediaRegion()
{
return this._mediaRegion != null;
}
/// <summary>
/// Gets and sets the property MeetingId.
/// <para>
/// The Amazon Chime SDK meeting ID.
/// </para>
/// </summary>
public string MeetingId
{
get { return this._meetingId; }
set { this._meetingId = value; }
}
// Check to see if MeetingId property is set
internal bool IsSetMeetingId()
{
return this._meetingId != null;
}
}
}
| 120 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The resource target configurations for receiving Amazon Chime SDK meeting and attendee
/// event notifications. The Amazon Chime SDK supports resource targets located in the
/// US East (N. Virginia) AWS Region (<code>us-east-1</code>).
/// </summary>
public partial class MeetingNotificationConfiguration
{
private string _snsTopicArn;
private string _sqsQueueArn;
/// <summary>
/// Gets and sets the property SnsTopicArn.
/// <para>
/// The SNS topic ARN.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=1, Max=1024)]
public string SnsTopicArn
{
get { return this._snsTopicArn; }
set { this._snsTopicArn = value; }
}
// Check to see if SnsTopicArn property is set
internal bool IsSetSnsTopicArn()
{
return this._snsTopicArn != null;
}
/// <summary>
/// Gets and sets the property SqsQueueArn.
/// <para>
/// The SQS queue ARN.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=1, Max=1024)]
public string SqsQueueArn
{
get { return this._sqsQueueArn; }
set { this._sqsQueueArn = value; }
}
// Check to see if SqsQueueArn property is set
internal bool IsSetSqsQueueArn()
{
return this._sqsQueueArn != null;
}
}
}
| 80 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The member details, such as email address, name, member ID, and member type.
/// </summary>
public partial class Member
{
private string _accountId;
private string _email;
private string _fullName;
private string _memberId;
private MemberType _memberType;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property Email.
/// <para>
/// The member email address.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string Email
{
get { return this._email; }
set { this._email = value; }
}
// Check to see if Email property is set
internal bool IsSetEmail()
{
return this._email != null;
}
/// <summary>
/// Gets and sets the property FullName.
/// <para>
/// The member name.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string FullName
{
get { return this._fullName; }
set { this._fullName = value; }
}
// Check to see if FullName property is set
internal bool IsSetFullName()
{
return this._fullName != null;
}
/// <summary>
/// Gets and sets the property MemberId.
/// <para>
/// The member ID (user ID or bot ID).
/// </para>
/// </summary>
public string MemberId
{
get { return this._memberId; }
set { this._memberId = value; }
}
// Check to see if MemberId property is set
internal bool IsSetMemberId()
{
return this._memberId != null;
}
/// <summary>
/// Gets and sets the property MemberType.
/// <para>
/// The member type.
/// </para>
/// </summary>
public MemberType MemberType
{
get { return this._memberType; }
set { this._memberType = value; }
}
// Check to see if MemberType property is set
internal bool IsSetMemberType()
{
return this._memberType != null;
}
}
}
| 135 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The list of errors returned when a member action results in an error.
/// </summary>
public partial class MemberError
{
private ErrorCode _errorCode;
private string _errorMessage;
private string _memberId;
/// <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 MemberId.
/// <para>
/// The member ID.
/// </para>
/// </summary>
public string MemberId
{
get { return this._memberId; }
set { this._memberId = value; }
}
// Check to see if MemberId property is set
internal bool IsSetMemberId()
{
return this._memberId != null;
}
}
}
| 95 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Membership details, such as member ID and member role.
/// </summary>
public partial class MembershipItem
{
private string _memberId;
private RoomMembershipRole _role;
/// <summary>
/// Gets and sets the property MemberId.
/// <para>
/// The member ID.
/// </para>
/// </summary>
public string MemberId
{
get { return this._memberId; }
set { this._memberId = value; }
}
// Check to see if MemberId property is set
internal bool IsSetMemberId()
{
return this._memberId != null;
}
/// <summary>
/// Gets and sets the property Role.
/// <para>
/// The member role.
/// </para>
/// </summary>
public RoomMembershipRole Role
{
get { return this._role; }
set { this._role = value; }
}
// Check to see if Role property is set
internal bool IsSetRole()
{
return this._role != null;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The websocket endpoint used to connect to Amazon Chime SDK messaging.
/// </summary>
public partial class MessagingSessionEndpoint
{
private string _url;
/// <summary>
/// Gets and sets the property Url.
/// <para>
/// The endpoint to which you establish a websocket connection.
/// </para>
/// </summary>
[AWSProperty(Max=4096)]
public string Url
{
get { return this._url; }
set { this._url = value; }
}
// Check to see if Url property is set
internal bool IsSetUrl()
{
return this._url != null;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// One or more of the resources in the request does not exist in the system.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class NotFoundException : AmazonChimeException
{
private ErrorCode _code;
/// <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)
{
this.Code = (ErrorCode)info.GetValue("Code", typeof(ErrorCode));
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("Code", this.Code);
}
#endif
/// <summary>
/// Gets and sets the property Code.
/// </summary>
public ErrorCode Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
}
}
| 142 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Origination settings enable your SIP hosts to receive inbound calls using your Amazon
/// Chime 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 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Origination routes define call distribution properties for your SIP hosts to receive
/// inbound calls using your Amazon Chime Voice Connector. Limit: Ten origination routes
/// for each Amazon Chime 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 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 associated with the host. If hosts are equal in priority, calls are redistributed
/// among them based on their relative weight.
/// </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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The phone number and proxy phone number for a participant in an Amazon Chime 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// A phone number used for Amazon Chime Business Calling or an Amazon Chime 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 _phoneNumberId;
private PhoneNumberProductType _productType;
private PhoneNumberStatus _status;
private PhoneNumberType _type;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property Associations.
/// <para>
/// The phone number 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 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 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 PhoneNumberId.
/// <para>
/// The phone number ID.
/// </para>
/// </summary>
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 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 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 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;
}
}
}
| 287 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The phone number associations, such as Amazon Chime account ID, Amazon Chime user
/// ID, Amazon Chime Voice Connector ID, or Amazon Chime 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 account ID, user ID, Amazon Chime Voice
/// Connector ID, or Amazon Chime 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The phone number capabilities for Amazon Chime Business Calling 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 outbound 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The phone number 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// If the phone number action fails for one or more of the phone numbers in the request,
/// a list of the phone numbers is returned, along with error codes and error messages.
/// </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>
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;
}
}
}
| 96 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The details of a phone number order created for Amazon Chime.
/// </summary>
public partial class PhoneNumberOrder
{
private DateTime? _createdTimestamp;
private List<OrderedPhoneNumber> _orderedPhoneNumbers = new List<OrderedPhoneNumber>();
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 PhoneNumberOrderId.
/// <para>
/// The phone number order ID.
/// </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;
}
}
}
| 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The proxy configuration for an Amazon Chime 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 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The proxy session for an Amazon Chime 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 name of the proxy session.
/// </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 status of the proxy session.
/// </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 Amazon Chime 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutAppInstanceRetentionSettings operation.
/// Sets the amount of time in days that a given <code>AppInstance</code> retains data.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_identity-chime_PutAppInstanceRetentionSettings.html">PutAppInstanceRetentionSettings</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutAppInstanceRetentionSettingsRequest : AmazonChimeRequest
{
private string _appInstanceArn;
private AppInstanceRetentionSettings _appInstanceRetentionSettings;
/// <summary>
/// Gets and sets the property AppInstanceArn.
/// <para>
/// The ARN of the <code>AppInstance</code>.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=5, Max=1600)]
public string AppInstanceArn
{
get { return this._appInstanceArn; }
set { this._appInstanceArn = value; }
}
// Check to see if AppInstanceArn property is set
internal bool IsSetAppInstanceArn()
{
return this._appInstanceArn != null;
}
/// <summary>
/// Gets and sets the property AppInstanceRetentionSettings.
/// <para>
/// The time in days to retain data. Data type: number.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AppInstanceRetentionSettings AppInstanceRetentionSettings
{
get { return this._appInstanceRetentionSettings; }
set { this._appInstanceRetentionSettings = value; }
}
// Check to see if AppInstanceRetentionSettings property is set
internal bool IsSetAppInstanceRetentionSettings()
{
return this._appInstanceRetentionSettings != null;
}
}
}
| 93 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutAppInstanceRetentionSettings operation.
/// </summary>
public partial class PutAppInstanceRetentionSettingsResponse : AmazonWebServiceResponse
{
private AppInstanceRetentionSettings _appInstanceRetentionSettings;
private DateTime? _initiateDeletionTimestamp;
/// <summary>
/// Gets and sets the property AppInstanceRetentionSettings.
/// <para>
/// The time in days to retain data. Data type: number.
/// </para>
/// </summary>
public AppInstanceRetentionSettings AppInstanceRetentionSettings
{
get { return this._appInstanceRetentionSettings; }
set { this._appInstanceRetentionSettings = value; }
}
// Check to see if AppInstanceRetentionSettings property is set
internal bool IsSetAppInstanceRetentionSettings()
{
return this._appInstanceRetentionSettings != null;
}
/// <summary>
/// Gets and sets the property InitiateDeletionTimestamp.
/// <para>
/// The time at which the API deletes data.
/// </para>
/// </summary>
public DateTime InitiateDeletionTimestamp
{
get { return this._initiateDeletionTimestamp.GetValueOrDefault(); }
set { this._initiateDeletionTimestamp = value; }
}
// Check to see if InitiateDeletionTimestamp property is set
internal bool IsSetInitiateDeletionTimestamp()
{
return this._initiateDeletionTimestamp.HasValue;
}
}
}
| 76 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutAppInstanceStreamingConfigurations operation.
/// The data streaming configurations of an <code>AppInstance</code>.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_PutMessagingStreamingConfigurations.html">PutMessagingStreamingConfigurations</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutAppInstanceStreamingConfigurationsRequest : AmazonChimeRequest
{
private string _appInstanceArn;
private List<AppInstanceStreamingConfiguration> _appInstanceStreamingConfigurations = new List<AppInstanceStreamingConfiguration>();
/// <summary>
/// Gets and sets the property AppInstanceArn.
/// <para>
/// The ARN of the <code>AppInstance</code>.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=5, Max=1600)]
public string AppInstanceArn
{
get { return this._appInstanceArn; }
set { this._appInstanceArn = value; }
}
// Check to see if AppInstanceArn property is set
internal bool IsSetAppInstanceArn()
{
return this._appInstanceArn != null;
}
/// <summary>
/// Gets and sets the property AppInstanceStreamingConfigurations.
/// <para>
/// The streaming configurations set for an <code>AppInstance</code>.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=2)]
public List<AppInstanceStreamingConfiguration> AppInstanceStreamingConfigurations
{
get { return this._appInstanceStreamingConfigurations; }
set { this._appInstanceStreamingConfigurations = value; }
}
// Check to see if AppInstanceStreamingConfigurations property is set
internal bool IsSetAppInstanceStreamingConfigurations()
{
return this._appInstanceStreamingConfigurations != null && this._appInstanceStreamingConfigurations.Count > 0;
}
}
}
| 93 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutAppInstanceStreamingConfigurations operation.
/// </summary>
public partial class PutAppInstanceStreamingConfigurationsResponse : AmazonWebServiceResponse
{
private List<AppInstanceStreamingConfiguration> _appInstanceStreamingConfigurations = new List<AppInstanceStreamingConfiguration>();
/// <summary>
/// Gets and sets the property AppInstanceStreamingConfigurations.
/// <para>
/// The streaming configurations of an <code>AppInstance</code>.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=2)]
public List<AppInstanceStreamingConfiguration> AppInstanceStreamingConfigurations
{
get { return this._appInstanceStreamingConfigurations; }
set { this._appInstanceStreamingConfigurations = value; }
}
// Check to see if AppInstanceStreamingConfigurations property is set
internal bool IsSetAppInstanceStreamingConfigurations()
{
return this._appInstanceStreamingConfigurations != null && this._appInstanceStreamingConfigurations.Count > 0;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutEventsConfiguration operation.
/// Creates an events configuration that allows a bot to receive outgoing events sent
/// by Amazon Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more
/// information, see <a>Bot</a>.
/// </summary>
public partial class PutEventsConfigurationRequest : AmazonChimeRequest
{
private string _accountId;
private string _botId;
private string _lambdaFunctionArn;
private string _outboundEventsHTTPSEndpoint;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property BotId.
/// <para>
/// The bot ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string BotId
{
get { return this._botId; }
set { this._botId = value; }
}
// Check to see if BotId property is set
internal bool IsSetBotId()
{
return this._botId != null;
}
/// <summary>
/// Gets and sets the property LambdaFunctionArn.
/// <para>
/// Lambda function ARN that allows the bot to receive outgoing events.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string LambdaFunctionArn
{
get { return this._lambdaFunctionArn; }
set { this._lambdaFunctionArn = value; }
}
// Check to see if LambdaFunctionArn property is set
internal bool IsSetLambdaFunctionArn()
{
return this._lambdaFunctionArn != null;
}
/// <summary>
/// Gets and sets the property OutboundEventsHTTPSEndpoint.
/// <para>
/// HTTPS endpoint that allows the bot to receive outgoing events.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string OutboundEventsHTTPSEndpoint
{
get { return this._outboundEventsHTTPSEndpoint; }
set { this._outboundEventsHTTPSEndpoint = value; }
}
// Check to see if OutboundEventsHTTPSEndpoint property is set
internal bool IsSetOutboundEventsHTTPSEndpoint()
{
return this._outboundEventsHTTPSEndpoint != null;
}
}
}
| 121 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutEventsConfiguration operation.
/// </summary>
public partial class PutEventsConfigurationResponse : AmazonWebServiceResponse
{
private EventsConfiguration _eventsConfiguration;
/// <summary>
/// Gets and sets the property EventsConfiguration.
/// <para>
/// The configuration that allows a bot to receive outgoing events. Can be an HTTPS endpoint
/// or an AWS Lambda function ARN.
/// </para>
/// </summary>
public EventsConfiguration EventsConfiguration
{
get { return this._eventsConfiguration; }
set { this._eventsConfiguration = value; }
}
// Check to see if EventsConfiguration property is set
internal bool IsSetEventsConfiguration()
{
return this._eventsConfiguration != null;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutRetentionSettings operation.
/// Puts retention settings for the specified Amazon Chime Enterprise account. We recommend
/// using AWS CloudTrail to monitor usage of this API for your account. For more information,
/// see <a href="https://docs.aws.amazon.com/chime/latest/ag/cloudtrail.html">Logging
/// Amazon Chime API Calls with AWS CloudTrail</a> in the <i>Amazon Chime Administration
/// Guide</i>.
///
///
/// <para>
/// To turn off existing retention settings, remove the number of days from the corresponding
/// <b>RetentionDays</b> field in the <b>RetentionSettings</b> object. For more information
/// about retention settings, see <a href="https://docs.aws.amazon.com/chime/latest/ag/chat-retention.html">Managing
/// Chat Retention Policies</a> in the <i>Amazon Chime Administration Guide</i>.
/// </para>
/// </summary>
public partial class PutRetentionSettingsRequest : AmazonChimeRequest
{
private string _accountId;
private RetentionSettings _retentionSettings;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property RetentionSettings.
/// <para>
/// The retention settings.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public RetentionSettings RetentionSettings
{
get { return this._retentionSettings; }
set { this._retentionSettings = value; }
}
// Check to see if RetentionSettings property is set
internal bool IsSetRetentionSettings()
{
return this._retentionSettings != null;
}
}
}
| 91 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutRetentionSettings operation.
/// </summary>
public partial class PutRetentionSettingsResponse : AmazonWebServiceResponse
{
private DateTime? _initiateDeletionTimestamp;
private RetentionSettings _retentionSettings;
/// <summary>
/// Gets and sets the property InitiateDeletionTimestamp.
/// <para>
/// The timestamp representing the time at which the specified items are permanently deleted,
/// in ISO 8601 format.
/// </para>
/// </summary>
public DateTime InitiateDeletionTimestamp
{
get { return this._initiateDeletionTimestamp.GetValueOrDefault(); }
set { this._initiateDeletionTimestamp = value; }
}
// Check to see if InitiateDeletionTimestamp property is set
internal bool IsSetInitiateDeletionTimestamp()
{
return this._initiateDeletionTimestamp.HasValue;
}
/// <summary>
/// Gets and sets the property RetentionSettings.
/// <para>
/// The retention settings.
/// </para>
/// </summary>
public RetentionSettings RetentionSettings
{
get { return this._retentionSettings; }
set { this._retentionSettings = value; }
}
// Check to see if RetentionSettings property is set
internal bool IsSetRetentionSettings()
{
return this._retentionSettings != null;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutSipMediaApplicationLoggingConfiguration operation.
/// Updates the logging configuration for the specified SIP media application.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutSipMediaApplicationLoggingConfiguration.html">PutSipMediaApplicationLoggingConfiguration</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutSipMediaApplicationLoggingConfigurationRequest : AmazonChimeRequest
{
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 actual logging configuration.
/// </para>
/// </summary>
public SipMediaApplicationLoggingConfiguration SipMediaApplicationLoggingConfiguration
{
get { return this._sipMediaApplicationLoggingConfiguration; }
set { this._sipMediaApplicationLoggingConfiguration = value; }
}
// Check to see if SipMediaApplicationLoggingConfiguration property is set
internal bool IsSetSipMediaApplicationLoggingConfiguration()
{
return this._sipMediaApplicationLoggingConfiguration != null;
}
}
}
| 92 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutSipMediaApplicationLoggingConfiguration operation.
/// </summary>
public partial class PutSipMediaApplicationLoggingConfigurationResponse : AmazonWebServiceResponse
{
private SipMediaApplicationLoggingConfiguration _sipMediaApplicationLoggingConfiguration;
/// <summary>
/// Gets and sets the property SipMediaApplicationLoggingConfiguration.
/// <para>
/// The logging configuration of the 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorEmergencyCallingConfiguration operation.
/// Puts emergency calling configuration details to the specified Amazon Chime Voice Connector,
/// such as emergency phone numbers and calling countries. Origination and termination
/// settings must be enabled for the Amazon Chime Voice Connector before emergency calling
/// can be configured.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorEmergencyCallingConfiguration.html">PutVoiceConnectorEmergencyCallingConfiguration</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorEmergencyCallingConfigurationRequest : AmazonChimeRequest
{
private EmergencyCallingConfiguration _emergencyCallingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property EmergencyCallingConfiguration.
/// <para>
/// The emergency calling configuration details.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 96 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutVoiceConnectorEmergencyCallingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorEmergencyCallingConfigurationResponse : AmazonWebServiceResponse
{
private EmergencyCallingConfiguration _emergencyCallingConfiguration;
/// <summary>
/// Gets and sets the property EmergencyCallingConfiguration.
/// <para>
/// The emergency calling configuration details.
/// </para>
/// </summary>
public EmergencyCallingConfiguration EmergencyCallingConfiguration
{
get { return this._emergencyCallingConfiguration; }
set { this._emergencyCallingConfiguration = value; }
}
// Check to see if EmergencyCallingConfiguration property is set
internal bool IsSetEmergencyCallingConfiguration()
{
return this._emergencyCallingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorLoggingConfiguration operation.
/// Adds a logging configuration for the specified Amazon Chime Voice Connector. The logging
/// configuration specifies whether SIP message logs are enabled for sending to Amazon
/// CloudWatch Logs.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorLoggingConfiguration.html">PutVoiceConnectorLoggingConfiguration</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorLoggingConfigurationRequest : AmazonChimeRequest
{
private LoggingConfiguration _loggingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property LoggingConfiguration.
/// <para>
/// The logging configuration details to add.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 95 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutVoiceConnectorLoggingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorLoggingConfigurationResponse : AmazonWebServiceResponse
{
private LoggingConfiguration _loggingConfiguration;
/// <summary>
/// Gets and sets the property LoggingConfiguration.
/// <para>
/// The updated logging configuration details.
/// </para>
/// </summary>
public LoggingConfiguration LoggingConfiguration
{
get { return this._loggingConfiguration; }
set { this._loggingConfiguration = value; }
}
// Check to see if LoggingConfiguration property is set
internal bool IsSetLoggingConfiguration()
{
return this._loggingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorOrigination operation.
/// Adds origination settings for the specified Amazon Chime Voice Connector.
///
/// <note>
/// <para>
/// If emergency calling is configured for the Amazon Chime Voice Connector, it must be
/// deleted prior to turning off origination settings.
/// </para>
/// </note> <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorOrigination.html">PutVoiceConnectorOrigination</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorOriginationRequest : AmazonChimeRequest
{
private Origination _origination;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Origination.
/// <para>
/// The origination setting details to add.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 98 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutVoiceConnectorOrigination operation.
/// </summary>
public partial class PutVoiceConnectorOriginationResponse : AmazonWebServiceResponse
{
private Origination _origination;
/// <summary>
/// Gets and sets the property Origination.
/// <para>
/// The updated origination setting details.
/// </para>
/// </summary>
public Origination Origination
{
get { return this._origination; }
set { this._origination = value; }
}
// Check to see if Origination property is set
internal bool IsSetOrigination()
{
return this._origination != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorProxy operation.
/// Puts the specified proxy configuration to the specified Amazon Chime Voice Connector.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorProxy.html">PutVoiceConnectorProxy</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorProxyRequest : AmazonChimeRequest
{
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 sessions.
/// </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 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 Amazon Chime voice connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=128)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorStreamingConfiguration operation.
/// Adds a streaming configuration for the specified Amazon Chime Voice Connector. The
/// streaming configuration specifies whether media streaming is enabled for sending to
/// Kinesis. It also sets the retention period, in hours, for the Amazon Kinesis data.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorStreamingConfiguration.html">PutVoiceConnectorStreamingConfiguration</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorStreamingConfigurationRequest : AmazonChimeRequest
{
private StreamingConfiguration _streamingConfiguration;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property StreamingConfiguration.
/// <para>
/// The streaming configuration details to add.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 95 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutVoiceConnectorStreamingConfiguration operation.
/// </summary>
public partial class PutVoiceConnectorStreamingConfigurationResponse : AmazonWebServiceResponse
{
private StreamingConfiguration _streamingConfiguration;
/// <summary>
/// Gets and sets the property StreamingConfiguration.
/// <para>
/// The updated streaming configuration details.
/// </para>
/// </summary>
public StreamingConfiguration StreamingConfiguration
{
get { return this._streamingConfiguration; }
set { this._streamingConfiguration = value; }
}
// Check to see if StreamingConfiguration property is set
internal bool IsSetStreamingConfiguration()
{
return this._streamingConfiguration != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorTerminationCredentials operation.
/// Adds termination SIP credentials for the specified Amazon Chime Voice Connector.
///
/// <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorTerminationCredentials.html">PutVoiceConnectorTerminationCredentials</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorTerminationCredentialsRequest : AmazonChimeRequest
{
private List<Credential> _credentials = new List<Credential>();
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Credentials.
/// <para>
/// The termination SIP credentials.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 92 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the PutVoiceConnectorTermination operation.
/// Adds termination settings for the specified Amazon Chime Voice Connector.
///
/// <note>
/// <para>
/// If emergency calling is configured for the Amazon Chime Voice Connector, it must be
/// deleted prior to turning off termination settings.
/// </para>
/// </note> <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_voice-chime_PutVoiceConnectorTermination.html">PutVoiceConnectorTermination</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class PutVoiceConnectorTerminationRequest : AmazonChimeRequest
{
private Termination _termination;
private string _voiceConnectorId;
/// <summary>
/// Gets and sets the property Termination.
/// <para>
/// The termination setting details to add.
/// </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 Amazon Chime Voice Connector ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string VoiceConnectorId
{
get { return this._voiceConnectorId; }
set { this._voiceConnectorId = value; }
}
// Check to see if VoiceConnectorId property is set
internal bool IsSetVoiceConnectorId()
{
return this._voiceConnectorId != null;
}
}
}
| 98 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the PutVoiceConnectorTermination operation.
/// </summary>
public partial class PutVoiceConnectorTerminationResponse : AmazonWebServiceResponse
{
private Termination _termination;
/// <summary>
/// Gets and sets the property Termination.
/// <para>
/// The updated termination setting details.
/// </para>
/// </summary>
public Termination Termination
{
get { return this._termination; }
set { this._termination = value; }
}
// Check to see if Termination property is set
internal bool IsSetTermination()
{
return this._termination != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the RedactChannelMessage operation.
/// Redacts message content, but not metadata. The message exists in the back end, but
/// the action returns null content, and the state shows as redacted.
///
/// <note>
/// <para>
/// The <code>x-amz-chime-bearer</code> request header is mandatory. Use the <code>AppInstanceUserArn</code>
/// of the user that makes the API call as the value in the header.
/// </para>
/// </note> <important>
/// <para>
/// <b>This API is is no longer supported and will not be updated.</b> We recommend using
/// the latest version, <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_RedactChannelMessage.html">RedactChannelMessage</a>,
/// in the Amazon Chime SDK.
/// </para>
///
/// <para>
/// Using the latest version requires migrating to a dedicated namespace. For more information,
/// refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-from-chm-namespace.html">Migrating
/// from the Amazon Chime namespace</a> in the <i>Amazon Chime SDK Developer Guide</i>.
/// </para>
/// </important>
/// </summary>
public partial class RedactChannelMessageRequest : AmazonChimeRequest
{
private string _channelArn;
private string _chimeBearer;
private string _messageId;
/// <summary>
/// Gets and sets the property ChannelArn.
/// <para>
/// The ARN of the channel containing the messages that you want to redact.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=5, Max=1600)]
public string ChannelArn
{
get { return this._channelArn; }
set { this._channelArn = value; }
}
// Check to see if ChannelArn property is set
internal bool IsSetChannelArn()
{
return this._channelArn != null;
}
/// <summary>
/// Gets and sets the property ChimeBearer.
/// <para>
/// The <code>AppInstanceUserArn</code> of the user that makes the API call.
/// </para>
/// </summary>
[AWSProperty(Min=5, Max=1600)]
public string ChimeBearer
{
get { return this._chimeBearer; }
set { this._chimeBearer = value; }
}
// Check to see if ChimeBearer property is set
internal bool IsSetChimeBearer()
{
return this._chimeBearer != null;
}
/// <summary>
/// Gets and sets the property MessageId.
/// <para>
/// The ID of the message being redacted.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=128)]
public string MessageId
{
get { return this._messageId; }
set { this._messageId = value; }
}
// Check to see if MessageId property is set
internal bool IsSetMessageId()
{
return this._messageId != null;
}
}
}
| 119 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the RedactChannelMessage operation.
/// </summary>
public partial class RedactChannelMessageResponse : AmazonWebServiceResponse
{
private string _channelArn;
private string _messageId;
/// <summary>
/// Gets and sets the property ChannelArn.
/// <para>
/// The ARN of the channel containing the messages that you want to redact.
/// </para>
/// </summary>
[AWSProperty(Min=5, Max=1600)]
public string ChannelArn
{
get { return this._channelArn; }
set { this._channelArn = value; }
}
// Check to see if ChannelArn property is set
internal bool IsSetChannelArn()
{
return this._channelArn != null;
}
/// <summary>
/// Gets and sets the property MessageId.
/// <para>
/// The ID of the message being redacted.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=128)]
public string MessageId
{
get { return this._messageId; }
set { this._messageId = value; }
}
// Check to see if MessageId property is set
internal bool IsSetMessageId()
{
return this._messageId != null;
}
}
}
| 78 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the RedactConversationMessage operation.
/// Redacts the specified message from the specified Amazon Chime conversation.
/// </summary>
public partial class RedactConversationMessageRequest : AmazonChimeRequest
{
private string _accountId;
private string _conversationId;
private string _messageId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property ConversationId.
/// <para>
/// The conversation ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ConversationId
{
get { return this._conversationId; }
set { this._conversationId = value; }
}
// Check to see if ConversationId property is set
internal bool IsSetConversationId()
{
return this._conversationId != null;
}
/// <summary>
/// Gets and sets the property MessageId.
/// <para>
/// The message ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string MessageId
{
get { return this._messageId; }
set { this._messageId = value; }
}
// Check to see if MessageId property is set
internal bool IsSetMessageId()
{
return this._messageId != null;
}
}
}
| 99 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the RedactConversationMessage operation.
/// </summary>
public partial class RedactConversationMessageResponse : AmazonWebServiceResponse
{
}
}
| 38 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the RedactRoomMessage operation.
/// Redacts the specified message from the specified Amazon Chime channel.
/// </summary>
public partial class RedactRoomMessageRequest : AmazonChimeRequest
{
private string _accountId;
private string _messageId;
private string _roomId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property MessageId.
/// <para>
/// The message ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string MessageId
{
get { return this._messageId; }
set { this._messageId = value; }
}
// Check to see if MessageId property is set
internal bool IsSetMessageId()
{
return this._messageId != null;
}
/// <summary>
/// Gets and sets the property RoomId.
/// <para>
/// The room ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string RoomId
{
get { return this._roomId; }
set { this._roomId = value; }
}
// Check to see if RoomId property is set
internal bool IsSetRoomId()
{
return this._roomId != null;
}
}
}
| 99 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the RedactRoomMessage operation.
/// </summary>
public partial class RedactRoomMessageResponse : AmazonWebServiceResponse
{
}
}
| 38 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the RegenerateSecurityToken operation.
/// Regenerates the security token for a bot.
/// </summary>
public partial class RegenerateSecurityTokenRequest : AmazonChimeRequest
{
private string _accountId;
private string _botId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property BotId.
/// <para>
/// The bot ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string BotId
{
get { return this._botId; }
set { this._botId = value; }
}
// Check to see if BotId property is set
internal bool IsSetBotId()
{
return this._botId != null;
}
}
}
| 79 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the RegenerateSecurityToken operation.
/// </summary>
public partial class RegenerateSecurityTokenResponse : AmazonWebServiceResponse
{
private Bot _bot;
/// <summary>
/// Gets and sets the property Bot.
/// <para>
/// A resource that allows Enterprise account administrators to configure an interface
/// that receives events from Amazon Chime.
/// </para>
/// </summary>
public Bot Bot
{
get { return this._bot; }
set { this._bot = value; }
}
// Check to see if Bot property is set
internal bool IsSetBot()
{
return this._bot != null;
}
}
}
| 58 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the ResetPersonalPIN operation.
/// Resets the personal meeting PIN for the specified user on an Amazon Chime account.
/// Returns the <a>User</a> object with the updated personal meeting PIN.
/// </summary>
public partial class ResetPersonalPINRequest : AmazonChimeRequest
{
private string _accountId;
private string _userId;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property UserId.
/// <para>
/// The user ID.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string UserId
{
get { return this._userId; }
set { this._userId = value; }
}
// Check to see if UserId property is set
internal bool IsSetUserId()
{
return this._userId != null;
}
}
}
| 80 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the ResetPersonalPIN operation.
/// </summary>
public partial class ResetPersonalPINResponse : AmazonWebServiceResponse
{
private User _user;
/// <summary>
/// Gets and sets the property User.
/// <para>
/// The user details and new personal meeting PIN.
/// </para>
/// </summary>
public User User
{
get { return this._user; }
set { this._user = value; }
}
// Check to see if User property is set
internal bool IsSetUser()
{
return this._user != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The request exceeds the resource limit.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ResourceLimitExceededException : AmazonChimeException
{
private ErrorCode _code;
/// <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)
{
this.Code = (ErrorCode)info.GetValue("Code", typeof(ErrorCode));
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("Code", this.Code);
}
#endif
/// <summary>
/// Gets and sets the property Code.
/// </summary>
public ErrorCode Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
}
}
| 142 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the RestorePhoneNumber operation.
/// Moves a phone number from the <b>Deletion queue</b> back into the phone number <b>Inventory</b>.
/// </summary>
public partial class RestorePhoneNumberRequest : AmazonChimeRequest
{
private string _phoneNumberId;
/// <summary>
/// Gets and sets the property PhoneNumberId.
/// <para>
/// The phone number.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string PhoneNumberId
{
get { return this._phoneNumberId; }
set { this._phoneNumberId = value; }
}
// Check to see if PhoneNumberId property is set
internal bool IsSetPhoneNumberId()
{
return this._phoneNumberId != null;
}
}
}
| 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the RestorePhoneNumber operation.
/// </summary>
public partial class RestorePhoneNumberResponse : AmazonWebServiceResponse
{
private PhoneNumber _phoneNumber;
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The phone number details.
/// </para>
/// </summary>
public PhoneNumber PhoneNumber
{
get { return this._phoneNumber; }
set { this._phoneNumber = value; }
}
// Check to see if PhoneNumber property is set
internal bool IsSetPhoneNumber()
{
return this._phoneNumber != null;
}
}
}
| 57 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The retention settings for an Amazon Chime Enterprise account that determine how long
/// to retain items such as chat-room messages and chat-conversation messages.
/// </summary>
public partial class RetentionSettings
{
private ConversationRetentionSettings _conversationRetentionSettings;
private RoomRetentionSettings _roomRetentionSettings;
/// <summary>
/// Gets and sets the property ConversationRetentionSettings.
/// <para>
/// The chat conversation retention settings.
/// </para>
/// </summary>
public ConversationRetentionSettings ConversationRetentionSettings
{
get { return this._conversationRetentionSettings; }
set { this._conversationRetentionSettings = value; }
}
// Check to see if ConversationRetentionSettings property is set
internal bool IsSetConversationRetentionSettings()
{
return this._conversationRetentionSettings != null;
}
/// <summary>
/// Gets and sets the property RoomRetentionSettings.
/// <para>
/// The chat room retention settings.
/// </para>
/// </summary>
public RoomRetentionSettings RoomRetentionSettings
{
get { return this._roomRetentionSettings; }
set { this._roomRetentionSettings = value; }
}
// Check to see if RoomRetentionSettings property is set
internal bool IsSetRoomRetentionSettings()
{
return this._roomRetentionSettings != null;
}
}
}
| 77 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The Amazon Chime chat room details.
/// </summary>
public partial class Room
{
private string _accountId;
private string _createdBy;
private DateTime? _createdTimestamp;
private string _name;
private string _roomId;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The Amazon Chime account ID.
/// </para>
/// </summary>
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property CreatedBy.
/// <para>
/// The identifier of the room creator.
/// </para>
/// </summary>
public string CreatedBy
{
get { return this._createdBy; }
set { this._createdBy = value; }
}
// Check to see if CreatedBy property is set
internal bool IsSetCreatedBy()
{
return this._createdBy != null;
}
/// <summary>
/// Gets and sets the property CreatedTimestamp.
/// <para>
/// The room 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 Name.
/// <para>
/// The room name.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
/// <summary>
/// Gets and sets the property RoomId.
/// <para>
/// The room ID.
/// </para>
/// </summary>
public string RoomId
{
get { return this._roomId; }
set { this._roomId = value; }
}
// Check to see if RoomId property is set
internal bool IsSetRoomId()
{
return this._roomId != null;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The room update 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;
}
}
}
| 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The room membership details.
/// </summary>
public partial class RoomMembership
{
private string _invitedBy;
private Member _member;
private RoomMembershipRole _role;
private string _roomId;
private DateTime? _updatedTimestamp;
/// <summary>
/// Gets and sets the property InvitedBy.
/// <para>
/// The identifier of the user that invited the room member.
/// </para>
/// </summary>
public string InvitedBy
{
get { return this._invitedBy; }
set { this._invitedBy = value; }
}
// Check to see if InvitedBy property is set
internal bool IsSetInvitedBy()
{
return this._invitedBy != null;
}
/// <summary>
/// Gets and sets the property Member.
/// <para>
/// The member details, such as email address, name, member ID, and member type.
/// </para>
/// </summary>
public Member Member
{
get { return this._member; }
set { this._member = value; }
}
// Check to see if Member property is set
internal bool IsSetMember()
{
return this._member != null;
}
/// <summary>
/// Gets and sets the property Role.
/// <para>
/// The membership role.
/// </para>
/// </summary>
public RoomMembershipRole Role
{
get { return this._role; }
set { this._role = value; }
}
// Check to see if Role property is set
internal bool IsSetRole()
{
return this._role != null;
}
/// <summary>
/// Gets and sets the property RoomId.
/// <para>
/// The room ID.
/// </para>
/// </summary>
public string RoomId
{
get { return this._roomId; }
set { this._roomId = value; }
}
// Check to see if RoomId property is set
internal bool IsSetRoomId()
{
return this._roomId != null;
}
/// <summary>
/// Gets and sets the property UpdatedTimestamp.
/// <para>
/// The room membership update 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;
}
}
}
| 133 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// The retention settings that determine how long to retain chat-room messages for an
/// Amazon Chime Enterprise account.
/// </summary>
public partial class RoomRetentionSettings
{
private int? _retentionDays;
/// <summary>
/// Gets and sets the property RetentionDays.
/// <para>
/// The number of days for which to retain chat-room messages.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=5475)]
public int RetentionDays
{
get { return this._retentionDays.GetValueOrDefault(); }
set { this._retentionDays = value; }
}
// Check to see if RetentionDays property is set
internal bool IsSetRetentionDays()
{
return this._retentionDays.HasValue;
}
}
}
| 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-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// Container for the parameters to the SearchAvailablePhoneNumbers operation.
/// Searches for phone numbers that can be ordered. For US numbers, provide at least one
/// of the following search filters: <code>AreaCode</code>, <code>City</code>, <code>State</code>,
/// or <code>TollFreePrefix</code>. If you provide <code>City</code>, you must also provide
/// <code>State</code>. Numbers outside the US only support the <code>PhoneNumberType</code>
/// filter, which you must use.
/// </summary>
public partial class SearchAvailablePhoneNumbersRequest : AmazonChimeRequest
{
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>
/// The area code used to filter results. Only applies to the US.
/// </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>
/// The city used to filter results. Only applies to the US.
/// </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>
/// The country used to filter results. Defaults to the US 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 MaxResults.
/// <para>
/// The maximum number of results to return in a single call.
/// </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 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 PhoneNumberType.
/// <para>
/// The phone number type used to filter results. Required for non-US numbers.
/// </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>
/// The state used to filter results. Required only if you provide <code>City</code>.
/// Only applies to the US.
/// </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>
/// The toll-free prefix that you use to filter results. Only applies to the US.
/// </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;
}
}
}
| 198 |
aws-sdk-net
|
aws
|
C#
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Chime.Model
{
/// <summary>
/// This is the response object from the 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>
/// List of phone numbers, in 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 retrieve the next page of search 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.